Searched refs:HasFoundDecl (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp592 E->DeclRefExprBits.HasFoundDecl = Record.readInt();
1010 bool HasFoundDecl = Record.readInt(); local
1019 E->MemberExprBits.HasQualifierOrFoundDecl = HasQualifier || HasFoundDecl;
1025 if (HasQualifier || HasFoundDecl) {
1027 if (HasFoundDecl) {
2897 /*HasFoundDecl=*/Record[ASTStmtReader::NumExprFields + 1],
H A DASTWriterStmt.cpp874 bool HasFoundDecl = local
884 Record.push_back(HasFoundDecl);
898 if (HasFoundDecl) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp385 DeclRefExprBits.HasFoundDecl = false;
408 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0;
474 bool HasFoundDecl,
481 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo,
1624 bool HasQualifier, bool HasFoundDecl,
1629 bool HasQualOrFound = HasQualifier || HasFoundDecl;
472 CreateEmpty(const ASTContext &Context, bool HasQualifier, bool HasFoundDecl, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs) argument
1623 CreateEmpty(const ASTContext &Context, bool HasQualifier, bool HasFoundDecl, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1180 /// DeclRefExprBits.HasFoundDecl:
1220 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; }
1258 bool HasFoundDecl,
3134 bool HasFoundDecl,
H A DStmt.h374 unsigned HasFoundDecl : 1;

Completed in 142 milliseconds