Home | History | Annotate | Download | only in Analysis

Lines Matching defs:LC

169   for (const LambdaCapture &LC : parent->captures()) {
170 if (!LC.capturesVariable())
173 VarDecl *VD = LC.getCapturedVar();
447 const LocationContext *LC = this;
448 while (LC) {
449 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
451 LC = LC->getParent();
460 bool LocationContext::isParentOf(const LocationContext *LC) const {
462 const LocationContext *Parent = LC->getParent();
466 LC = Parent;
467 } while (LC);
622 LocationContext *LC = &*I;
624 delete LC;