Home | History | Annotate | Download | only in Analysis

Lines Matching defs:LC

168   for (const auto &LC : parent->captures()) {
169 if (!LC.capturesVariable())
172 VarDecl *VD = LC.getCapturedVar();
411 const LocationContext *LC = this;
412 while (LC) {
413 if (const auto *SFC = dyn_cast<StackFrameContext>(LC))
415 LC = LC->getParent();
424 bool LocationContext::isParentOf(const LocationContext *LC) const {
426 const LocationContext *Parent = LC->getParent();
430 LC = Parent;
431 } while (LC);
648 LocationContext *LC = &*I;
650 delete LC;