Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DExpr.cpp385 DeclRefExprBits.HasQualifier = false; in DeclRefExpr()
386 DeclRefExprBits.HasTemplateKWAndArgsInfo = false; in DeclRefExpr()
387 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()
388 DeclRefExprBits.HadMultipleCandidates = false; in DeclRefExpr()
389 DeclRefExprBits.RefersToEnclosingVariableOrCapture = in DeclRefExpr()
391 DeclRefExprBits.NonOdrUseReason = NOUR; in DeclRefExpr()
392 DeclRefExprBits.Loc = L; in DeclRefExpr()
405 DeclRefExprBits.Loc = NameInfo.getLoc(); in DeclRefExpr()
406 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0; in DeclRefExpr()
410 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
[all …]
/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/llvm-project/clang/include/clang/AST/
DExpr.h1243 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1293 SourceLocation getLocation() const { return DeclRefExprBits.Loc; } in getLocation()
1294 void setLocation(SourceLocation L) { DeclRefExprBits.Loc = L; } in setLocation()
1300 bool hasQualifier() const { return DeclRefExprBits.HasQualifier; } in hasQualifier()
1333 return DeclRefExprBits.HasTemplateKWAndArgsInfo; in hasTemplateKWAndArgsInfo()
1399 return DeclRefExprBits.HadMultipleCandidates; in hadMultipleCandidates()
1405 DeclRefExprBits.HadMultipleCandidates = V;
1410 return static_cast<NonOdrUseReason>(DeclRefExprBits.NonOdrUseReason); in isNonOdrUse()
1416 return DeclRefExprBits.RefersToEnclosingVariableOrCapture; in refersToEnclosingVariableOrCapture()
DStmt.h1024 DeclRefExprBitfields DeclRefExprBits; member
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp595 E->DeclRefExprBits.HasQualifier = Record.readInt(); in VisitDeclRefExpr()
596 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()
597 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record.readInt(); in VisitDeclRefExpr()
598 E->DeclRefExprBits.HadMultipleCandidates = Record.readInt(); in VisitDeclRefExpr()
599 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = Record.readInt(); in VisitDeclRefExpr()
600 E->DeclRefExprBits.NonOdrUseReason = Record.readInt(); in VisitDeclRefExpr()
/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()