Home | History | Annotate | Download | only in AST

Lines Matching defs:PathLength

30     unsigned PathLength;
47 LV() { PathLength = (unsigned)-1; }
51 if (Length == PathLength)
55 PathLength = Length;
60 bool hasPath() const { return PathLength != (unsigned)-1; }
61 bool hasPathPtr() const { return hasPath() && PathLength > InlinePathSpace; }
72 unsigned PathLength;
85 MemberPointerData() { PathLength = 0; }
89 if (Length == PathLength)
93 PathLength = Length;
98 bool hasPathPtr() const { return PathLength > InlinePathSpace; }
576 return ArrayRef<LValuePathEntry>(LVal.getPath(), LVal.PathLength);
626 return ArrayRef<const CXXRecordDecl*>(MPD.getPath(), MPD.PathLength);