Searched refs:DeclRefExprBits (Results 1 – 4 of 4) sorted by relevance
387 DeclRefExprBits.HasQualifier = false; in DeclRefExpr()388 DeclRefExprBits.HasTemplateKWAndArgsInfo = false; in DeclRefExpr()389 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()390 DeclRefExprBits.HadMultipleCandidates = false; in DeclRefExpr()391 DeclRefExprBits.RefersToEnclosingVariableOrCapture = in DeclRefExpr()393 DeclRefExprBits.NonOdrUseReason = NOUR; in DeclRefExpr()394 DeclRefExprBits.Loc = L; in DeclRefExpr()407 DeclRefExprBits.Loc = NameInfo.getLoc(); in DeclRefExpr()408 DeclRefExprBits.HasQualifier = QualifierLoc ? 1 : 0; in DeclRefExpr()412 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()[all …]
1243 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()
1024 DeclRefExprBitfields DeclRefExprBits; member
597 E->DeclRefExprBits.HasQualifier = Record.readInt(); in VisitDeclRefExpr()598 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()599 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record.readInt(); in VisitDeclRefExpr()600 E->DeclRefExprBits.HadMultipleCandidates = Record.readInt(); in VisitDeclRefExpr()601 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = Record.readInt(); in VisitDeclRefExpr()602 E->DeclRefExprBits.NonOdrUseReason = Record.readInt(); in VisitDeclRefExpr()