Searched refs:HasFoundDecl (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 616 E->DeclRefExprBits.HasFoundDecl = CurrentUnpackingBits->getNextBit(); in VisitDeclRefExpr() 1059 bool HasFoundDecl = CurrentUnpackingBits->getNextBit(); in VisitMemberExpr() local 1069 E->MemberExprBits.HasFoundDecl = HasFoundDecl; in VisitMemberExpr() 1080 if (HasFoundDecl) { in VisitMemberExpr() 3176 bool HasFoundDecl = DeclRefExprBits.getNextBit(); in ReadStmtFromStream() local 3182 S = DeclRefExpr::CreateEmpty(Context, HasQualifier, HasFoundDecl, in ReadStmtFromStream() 3282 bool HasFoundDecl = ExprMemberBits.getNextBit(); in ReadStmtFromStream() local 3285 S = MemberExpr::CreateEmpty(Context, HasQualifier, HasFoundDecl, in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 994 bool HasFoundDecl = E->hasFoundDecl(); in VisitMemberExpr() local 1002 CurrentPackingBits.addBit(HasFoundDecl); in VisitMemberExpr() 1019 if (HasFoundDecl) { in VisitMemberExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Expr.cpp | 437 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr() 462 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr() 530 bool HasFoundDecl, in CreateEmpty() argument 537 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, in CreateEmpty() 1723 MemberExprBits.HasFoundDecl = in MemberExpr() 1756 bool HasFoundDecl = FoundDecl.getDecl() != MemberDecl || in Create() local 1762 HasQualifier, HasFoundDecl, HasTemplateKWAndArgsInfo, in Create() 1772 bool HasQualifier, bool HasFoundDecl, in CreateEmpty() argument 1780 HasQualifier, HasFoundDecl, HasTemplateKWAndArgsInfo, in CreateEmpty()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Expr.h | 1294 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl() 1332 bool HasFoundDecl, 3318 bool hasFoundDecl() const { return MemberExprBits.HasFoundDecl; } in hasFoundDecl() 3357 bool HasFoundDecl,
|
| H A D | Stmt.h | 441 unsigned HasFoundDecl : 1; 601 unsigned HasFoundDecl : 1;
|