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

/external/clang/include/clang/AST/
H A DExpr.h919 /// DeclRefExprBits.HasQualifier:
922 /// DeclRefExprBits.HasFoundDecl:
926 /// DeclRefExprBits.HasTemplateKWAndArgsInfo:
929 /// DeclRefExprBits.RefersToEnclosingVariableOrCapture
961 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; }
986 DeclRefExprBits.HasQualifier = 0;
987 DeclRefExprBits.HasTemplateKWAndArgsInfo = 0;
988 DeclRefExprBits.HasFoundDecl = 0;
989 DeclRefExprBits.HadMultipleCandidates = 0;
990 DeclRefExprBits
[all...]
H A DStmt.h263 DeclRefExprBitfields DeclRefExprBits; member in union:clang::__anon1212
/external/clang/lib/AST/
H A DExpr.cpp332 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
342 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
345 DeclRefExprBits.HasTemplateKWAndArgsInfo
347 DeclRefExprBits.RefersToEnclosingVariableOrCapture =
363 DeclRefExprBits.HadMultipleCandidates = 0;
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp456 E->DeclRefExprBits.HasQualifier = Record[Idx++];
457 E->DeclRefExprBits.HasFoundDecl = Record[Idx++];
458 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record[Idx++];
459 E->DeclRefExprBits.HadMultipleCandidates = Record[Idx++];
460 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = Record[Idx++];

Completed in 122 milliseconds