Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DExpr.h892 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
932 DeclRefExprBits.HasQualifier = 0; in Expr()
933 DeclRefExprBits.HasTemplateKWAndArgsInfo = 0; in Expr()
934 DeclRefExprBits.HasFoundDecl = 0; in Expr()
935 DeclRefExprBits.HadMultipleCandidates = 0; in Expr()
936 DeclRefExprBits.RefersToEnclosingLocal = refersToEnclosingLocal; in Expr()
982 bool hasQualifier() const { return DeclRefExprBits.HasQualifier; } in hasQualifier()
1018 return DeclRefExprBits.HasTemplateKWAndArgsInfo; in hasTemplateKWAndArgsInfo()
1120 return DeclRefExprBits.HadMultipleCandidates; in hadMultipleCandidates()
1126 DeclRefExprBits.HadMultipleCandidates = V;
[all …]
DStmt.h299 DeclRefExprBitfields DeclRefExprBits; member
/external/clang/lib/Serialization/
DASTReaderStmt.cpp433 E->DeclRefExprBits.HasQualifier = Record[Idx++]; in VisitDeclRefExpr()
434 E->DeclRefExprBits.HasFoundDecl = Record[Idx++]; in VisitDeclRefExpr()
435 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record[Idx++]; in VisitDeclRefExpr()
436 E->DeclRefExprBits.HadMultipleCandidates = Record[Idx++]; in VisitDeclRefExpr()
437 E->DeclRefExprBits.RefersToEnclosingLocal = Record[Idx++]; in VisitDeclRefExpr()
/external/clang/lib/AST/
DExpr.cpp375 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0; in DeclRefExpr()
378 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
381 DeclRefExprBits.HasTemplateKWAndArgsInfo in DeclRefExpr()
383 DeclRefExprBits.RefersToEnclosingLocal = RefersToEnclosingLocal; in DeclRefExpr()
397 DeclRefExprBits.HadMultipleCandidates = 0; in DeclRefExpr()