Searched refs:DeclRefExprBits (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h855 /// DeclRefExprBits.HasQualifier:
858 /// DeclRefExprBits.HasFoundDecl:
862 /// DeclRefExprBits.HasTemplateKWAndArgsInfo:
865 /// DeclRefExprBits.RefersToEnclosingLocal
892 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; }
932 DeclRefExprBits.HasQualifier = 0;
933 DeclRefExprBits.HasTemplateKWAndArgsInfo = 0;
934 DeclRefExprBits.HasFoundDecl = 0;
935 DeclRefExprBits.HadMultipleCandidates = 0;
936 DeclRefExprBits
[all...]
H A DStmt.h299 DeclRefExprBitfields DeclRefExprBits; member in union:clang::Stmt::__anon2913
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp379 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
382 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
385 DeclRefExprBits.HasTemplateKWAndArgsInfo
387 DeclRefExprBits.RefersToEnclosingLocal = RefersToEnclosingLocal;
401 DeclRefExprBits.HadMultipleCandidates = 0;
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp433 E->DeclRefExprBits.HasQualifier = Record[Idx++];
434 E->DeclRefExprBits.HasFoundDecl = Record[Idx++];
435 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record[Idx++];
436 E->DeclRefExprBits.HadMultipleCandidates = Record[Idx++];
437 E->DeclRefExprBits.RefersToEnclosingLocal = Record[Idx++];

Completed in 184 milliseconds