Searched refs:HasFoundDecl (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 609 E->DeclRefExprBits.HasFoundDecl = CurrentUnpackingBits->getNextBit(); in VisitDeclRefExpr() 1046 bool HasFoundDecl = CurrentUnpackingBits->getNextBit(); in VisitMemberExpr() local 1056 E->MemberExprBits.HasFoundDecl = HasFoundDecl; in VisitMemberExpr() 1067 if (HasFoundDecl) { in VisitMemberExpr() 3049 bool HasFoundDecl = DeclRefExprBits.getNextBit(); in ReadStmtFromStream() local 3055 S = DeclRefExpr::CreateEmpty(Context, HasQualifier, HasFoundDecl, in ReadStmtFromStream() 3155 bool HasFoundDecl = ExprMemberBits.getNextBit(); in ReadStmtFromStream() local 3158 S = MemberExpr::CreateEmpty(Context, HasQualifier, HasFoundDecl, in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 976 bool HasFoundDecl = E->hasFoundDecl(); in VisitMemberExpr() local 984 CurrentPackingBits.addBit(HasFoundDecl); in VisitMemberExpr() 1001 if (HasFoundDecl) { in VisitMemberExpr()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Expr.cpp | 438 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr() 463 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr() 531 bool HasFoundDecl, in CreateEmpty() argument 538 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, in CreateEmpty() 1728 MemberExprBits.HasFoundDecl = in MemberExpr() 1761 bool HasFoundDecl = FoundDecl.getDecl() != MemberDecl || in Create() local 1767 HasQualifier, HasFoundDecl, HasTemplateKWAndArgsInfo, in Create() 1777 bool HasQualifier, bool HasFoundDecl, in CreateEmpty() argument 1785 HasQualifier, HasFoundDecl, HasTemplateKWAndArgsInfo, in CreateEmpty()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Expr.h | 1291 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl() 1329 bool HasFoundDecl, 3220 bool hasFoundDecl() const { return MemberExprBits.HasFoundDecl; } in hasFoundDecl() 3259 bool HasFoundDecl,
|
H A D | Stmt.h | 439 unsigned HasFoundDecl : 1; 592 unsigned HasFoundDecl : 1;
|