Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp407 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()
430 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
496 bool HasFoundDecl, in CreateEmpty() argument
503 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, in CreateEmpty()
1688 bool HasQualifier, bool HasFoundDecl, in CreateEmpty() argument
1693 bool HasQualOrFound = HasQualifier || HasFoundDecl; in CreateEmpty()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderStmt.cpp593 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()
1016 bool HasFoundDecl = Record.readInt(); in VisitMemberExpr() local
1025 E->MemberExprBits.HasQualifierOrFoundDecl = HasQualifier || HasFoundDecl; in VisitMemberExpr()
1031 if (HasQualifier || HasFoundDecl) { in VisitMemberExpr()
1033 if (HasFoundDecl) { in VisitMemberExpr()
H A DASTWriterStmt.cpp891 bool HasFoundDecl = in VisitMemberExpr() local
901 Record.push_back(HasFoundDecl); in VisitMemberExpr()
915 if (HasFoundDecl) { in VisitMemberExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h1253 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1291 bool HasFoundDecl,
3236 bool HasFoundDecl,
H A DStmt.h377 unsigned HasFoundDecl : 1; in alignas() local