HomeSort by: relevance | last modified time | path
    Searched defs:LValuePathEntry (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
APValue.h 208 class LValuePathEntry {
214 LValuePathEntry() : Value() {}
215 LValuePathEntry(BaseOrMemberType BaseOrMember);
216 static LValuePathEntry ArrayIndex(uint64_t Index) {
217 LValuePathEntry Result;
230 friend bool operator==(LValuePathEntry A, LValuePathEntry B) {
233 friend bool operator!=(LValuePathEntry A, LValuePathEntry B) {
236 friend llvm::hash_code hash_value(LValuePathEntry A)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
APValue.cpp 147 APValue::LValuePathEntry::LValuePathEntry(BaseOrMemberType BaseOrMember) {
153 void APValue::LValuePathEntry::Profile(llvm::FoldingSetNodeID &ID) const {
158 ArrayRef<LValuePathEntry> Path, QualType ElemTy)
223 (DataSize - sizeof(LVBase)) / sizeof(LValuePathEntry);
229 LValuePathEntry Path[InlinePathSpace];
230 LValuePathEntry *PathPtr;
243 PathPtr = new LValuePathEntry[Length];
249 LValuePathEntry *getPath() { return hasPathPtr() ? PathPtr : Path; }
250 const LValuePathEntry *getPath() const
    [all...]

Completed in 104 milliseconds