Home | History | Annotate | Download | only in Analysis

Lines Matching refs:LC

296   const LocationContext *LC = this;
297 while (LC) {
298 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC))
300 LC = LC->getParent();
307 const LocationContext *LC = this;
308 while (LC) {
309 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LC)) {
313 LC = LC->getParent();
318 bool LocationContext::isParentOf(const LocationContext *LC) const {
320 const LocationContext *Parent = LC->getParent();
324 LC = Parent;
325 } while (LC);
456 LocationContext *LC = &*I;
458 delete LC;