Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp426 DeclRefExprBits.HasQualifier = false; in DeclRefExpr()
428 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()
429 DeclRefExprBits.HadMultipleCandidates = false; in DeclRefExpr()
433 DeclRefExprBits.NonOdrUseReason = NOUR; in DeclRefExpr()
434 DeclRefExprBits.IsImmediateEscalating = false; in DeclRefExpr()
435 DeclRefExprBits.Loc = L; in DeclRefExpr()
448 DeclRefExprBits.Loc = NameInfo.getLoc(); in DeclRefExpr()
453 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
456 DeclRefExprBits.HasTemplateKWAndArgsInfo in DeclRefExpr()
461 DeclRefExprBits.NonOdrUseReason = NOUR; in DeclRefExpr()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp604 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = in VisitDeclRefExpr()
606 E->DeclRefExprBits.NonOdrUseReason = in VisitDeclRefExpr()
609 E->DeclRefExprBits.HasFoundDecl = CurrentUnpackingBits->getNextBit(); in VisitDeclRefExpr()
610 E->DeclRefExprBits.HasQualifier = CurrentUnpackingBits->getNextBit(); in VisitDeclRefExpr()
611 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = in VisitDeclRefExpr()
613 E->DeclRefExprBits.CapturedByCopyInLambdaWithExplicitObjectParameter = false; in VisitDeclRefExpr()
2990 BitsUnpacker DeclRefExprBits(Record[ASTStmtReader::NumExprFields]); in ReadStmtFromStream() local
2991 DeclRefExprBits.advance(5); in ReadStmtFromStream()
2992 bool HasFoundDecl = DeclRefExprBits.getNextBit(); in ReadStmtFromStream()
2993 bool HasQualifier = DeclRefExprBits.getNextBit(); in ReadStmtFromStream()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1274 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1324 SourceLocation getLocation() const { return DeclRefExprBits.Loc; } in getLocation()
1325 void setLocation(SourceLocation L) { DeclRefExprBits.Loc = L; } in setLocation()
1331 bool hasQualifier() const { return DeclRefExprBits.HasQualifier; } in hasQualifier()
1364 return DeclRefExprBits.HasTemplateKWAndArgsInfo; in hasTemplateKWAndArgsInfo()
1430 return DeclRefExprBits.HadMultipleCandidates; in hadMultipleCandidates()
1436 DeclRefExprBits.HadMultipleCandidates = V;
1441 return static_cast<NonOdrUseReason>(DeclRefExprBits.NonOdrUseReason); in isNonOdrUse()
1447 return DeclRefExprBits.RefersToEnclosingVariableOrCapture; in refersToEnclosingVariableOrCapture()
1451 return DeclRefExprBits.IsImmediateEscalating; in isImmediateEscalating()
[all …]
H A DStmt.h1218 DeclRefExprBitfields DeclRefExprBits; in alignas() member