Searched refs:DeclRefExprBits (Results 1 – 4 of 4) sorted by relevance
488 DeclRefExprBits.HasQualifier = false; in DeclRefExpr()489 DeclRefExprBits.HasTemplateKWAndArgsInfo = false; in DeclRefExpr()490 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()491 DeclRefExprBits.HadMultipleCandidates = false; in DeclRefExpr()492 DeclRefExprBits.RefersToEnclosingVariableOrCapture = in DeclRefExpr()494 DeclRefExprBits.NonOdrUseReason = NOUR; in DeclRefExpr()495 DeclRefExprBits.Loc = L; in DeclRefExpr()508 DeclRefExprBits.Loc = NameInfo.getLoc(); in DeclRefExpr()509 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0; in DeclRefExpr()513 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()[all …]
1264 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()1314 SourceLocation getLocation() const { return DeclRefExprBits.Loc; } in getLocation()1315 void setLocation(SourceLocation L) { DeclRefExprBits.Loc = L; } in setLocation()1321 bool hasQualifier() const { return DeclRefExprBits.HasQualifier; } in hasQualifier()1354 return DeclRefExprBits.HasTemplateKWAndArgsInfo; in hasTemplateKWAndArgsInfo()1420 return DeclRefExprBits.HadMultipleCandidates; in hadMultipleCandidates()1426 DeclRefExprBits.HadMultipleCandidates = V;1431 return static_cast<NonOdrUseReason>(DeclRefExprBits.NonOdrUseReason); in isNonOdrUse()1437 return DeclRefExprBits.RefersToEnclosingVariableOrCapture; in refersToEnclosingVariableOrCapture()
1039 DeclRefExprBitfields DeclRefExprBits; member
593 E->DeclRefExprBits.HasQualifier = Record.readInt(); in VisitDeclRefExpr()594 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()595 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record.readInt(); in VisitDeclRefExpr()596 E->DeclRefExprBits.HadMultipleCandidates = Record.readInt(); in VisitDeclRefExpr()597 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = Record.readInt(); in VisitDeclRefExpr()598 E->DeclRefExprBits.NonOdrUseReason = Record.readInt(); in VisitDeclRefExpr()