The only way I found how to find all ClearCase projects that use a particular component is the following:
Get a list of all the projects' Integration streams:
cleartool lsproj -fmt %[istream]Xp -invob <pvob>
For each Integration stream found, get a list of foundation baselines:
cleartool lsstream -fmt %[found_bls]CXp <stream>
For each foundation baseline found, check if the component appears in the output:
cleartool descr baseline:<baseline> | find "component: <component>"
This works perfectly but really looks like a roundabout way to do it. Anyone know of a more efficient way?