Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp436 DeclRefExprBits.HasQualifier = false; in DeclRefExpr()
437 DeclRefExprBits.HasTemplateKWAndArgsInfo = false; in DeclRefExpr()
438 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()
439 DeclRefExprBits.HadMultipleCandidates = false; in DeclRefExpr()
440 DeclRefExprBits.RefersToEnclosingVariableOrCapture = in DeclRefExpr()
442 DeclRefExprBits.CapturedByCopyInLambdaWithExplicitObjectParameter = false; in DeclRefExpr()
443 DeclRefExprBits.NonOdrUseReason = NOUR; in DeclRefExpr()
444 DeclRefExprBits.IsImmediateEscalating = false; in DeclRefExpr()
445 DeclRefExprBits.Loc = L; in DeclRefExpr()
458 DeclRefExprBits.Loc = NameInfo.getLoc(); in DeclRefExpr()
[all …]
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp603 E->DeclRefExprBits.HadMultipleCandidates = CurrentUnpackingBits->getNextBit(); in VisitDeclRefExpr()
604 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = in VisitDeclRefExpr()
606 E->DeclRefExprBits.NonOdrUseReason = in VisitDeclRefExpr()
608 E->DeclRefExprBits.IsImmediateEscalating = CurrentUnpackingBits->getNextBit(); 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()
3047 BitsUnpacker DeclRefExprBits(Record[ASTStmtReader::NumExprFields]); in ReadStmtFromStream() local
3048 DeclRefExprBits.advance(5); in ReadStmtFromStream()
[all …]
/src/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1291 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1341 SourceLocation getLocation() const { return DeclRefExprBits.Loc; } in getLocation()
1342 void setLocation(SourceLocation L) { DeclRefExprBits.Loc = L; } in setLocation()
1348 bool hasQualifier() const { return DeclRefExprBits.HasQualifier; } in hasQualifier()
1381 return DeclRefExprBits.HasTemplateKWAndArgsInfo; in hasTemplateKWAndArgsInfo()
1447 return DeclRefExprBits.HadMultipleCandidates; in hadMultipleCandidates()
1453 DeclRefExprBits.HadMultipleCandidates = V;
1458 return static_cast<NonOdrUseReason>(DeclRefExprBits.NonOdrUseReason); in isNonOdrUse()
1464 return DeclRefExprBits.RefersToEnclosingVariableOrCapture; in refersToEnclosingVariableOrCapture()
1468 return DeclRefExprBits.IsImmediateEscalating; in isImmediateEscalating()
[all …]
H A DStmt.h1220 DeclRefExprBitfields DeclRefExprBits;