Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DExpr.h961 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
986 DeclRefExprBits.HasQualifier = 0; in Expr()
987 DeclRefExprBits.HasTemplateKWAndArgsInfo = 0; in Expr()
988 DeclRefExprBits.HasFoundDecl = 0; in Expr()
989 DeclRefExprBits.HadMultipleCandidates = 0; in Expr()
990 DeclRefExprBits.RefersToEnclosingVariableOrCapture = in Expr()
1032 bool hasQualifier() const { return DeclRefExprBits.HasQualifier; } in hasQualifier()
1065 return DeclRefExprBits.HasTemplateKWAndArgsInfo; in hasTemplateKWAndArgsInfo()
1130 return DeclRefExprBits.HadMultipleCandidates; in hadMultipleCandidates()
1136 DeclRefExprBits.HadMultipleCandidates = V;
[all …]
DStmt.h263 DeclRefExprBitfields DeclRefExprBits; in LLVM_ALIGNAS() member
/external/clang/lib/AST/
DExpr.cpp332 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0; in DeclRefExpr()
342 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
345 DeclRefExprBits.HasTemplateKWAndArgsInfo in DeclRefExpr()
347 DeclRefExprBits.RefersToEnclosingVariableOrCapture = in DeclRefExpr()
363 DeclRefExprBits.HadMultipleCandidates = 0; in DeclRefExpr()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp456 E->DeclRefExprBits.HasQualifier = Record[Idx++]; in VisitDeclRefExpr()
457 E->DeclRefExprBits.HasFoundDecl = Record[Idx++]; in VisitDeclRefExpr()
458 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record[Idx++]; in VisitDeclRefExpr()
459 E->DeclRefExprBits.HadMultipleCandidates = Record[Idx++]; in VisitDeclRefExpr()
460 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = Record[Idx++]; in VisitDeclRefExpr()