HomeSort by relevance Sort by last modified time
    Searched refs:DeclRefExprBits (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/AST/
Expr.h 747 /// DeclRefExprBits.HasQualifier:
750 /// DeclRefExprBits.HasFoundDecl:
754 /// DeclRefExprBits.HasTemplateKWAndArgsInfo:
757 /// DeclRefExprBits.RefersToEnclosingLocal
784 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; }
    [all...]
Stmt.h 286 DeclRefExprBitfields DeclRefExprBits;
    [all...]
  /external/clang/lib/AST/
Expr.cpp 273 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0;
276 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
279 DeclRefExprBits.HasTemplateKWAndArgsInfo
281 DeclRefExprBits.RefersToEnclosingLocal = RefersToEnclosingLocal;
295 DeclRefExprBits.HadMultipleCandidates = 0;
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 341 E->DeclRefExprBits.HasQualifier = Record[Idx++];
342 E->DeclRefExprBits.HasFoundDecl = Record[Idx++];
343 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record[Idx++];
344 E->DeclRefExprBits.HadMultipleCandidates = Record[Idx++];
345 E->DeclRefExprBits.RefersToEnclosingLocal = Record[Idx++];
    [all...]

Completed in 36 milliseconds