Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp389 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()
412 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
478 bool HasFoundDecl, in CreateEmpty() argument
485 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, in CreateEmpty()
1712 bool HasQualifier, bool HasFoundDecl, in CreateEmpty() argument
1717 bool HasQualOrFound = HasQualifier || HasFoundDecl; in CreateEmpty()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp608 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()
1031 bool HasFoundDecl = Record.readInt(); in VisitMemberExpr() local
1040 E->MemberExprBits.HasQualifierOrFoundDecl = HasQualifier || HasFoundDecl; in VisitMemberExpr()
1046 if (HasQualifier || HasFoundDecl) { in VisitMemberExpr()
1048 if (HasFoundDecl) { in VisitMemberExpr()
H A DASTWriterStmt.cpp893 bool HasFoundDecl = in VisitMemberExpr() local
903 Record.push_back(HasFoundDecl); in VisitMemberExpr()
917 if (HasFoundDecl) { in VisitMemberExpr()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1240 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1278 bool HasFoundDecl,
3227 bool HasFoundDecl,
H A DStmt.h374 unsigned HasFoundDecl : 1; in alignas() local