Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExpr.cpp490 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()
513 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
579 bool HasFoundDecl, in CreateEmpty() argument
586 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, in CreateEmpty()
1771 bool HasQualifier, bool HasFoundDecl, in CreateEmpty() argument
1776 bool HasQualOrFound = HasQualifier || HasFoundDecl; in CreateEmpty()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp594 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()
1022 bool HasFoundDecl = Record.readInt(); in VisitMemberExpr() local
1031 E->MemberExprBits.HasQualifierOrFoundDecl = HasQualifier || HasFoundDecl; in VisitMemberExpr()
1037 if (HasQualifier || HasFoundDecl) { in VisitMemberExpr()
1039 if (HasFoundDecl) { in VisitMemberExpr()
H A DASTWriterStmt.cpp889 bool HasFoundDecl = in VisitMemberExpr() local
899 Record.push_back(HasFoundDecl); in VisitMemberExpr()
913 if (HasFoundDecl) { in VisitMemberExpr()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExpr.h1264 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1302 bool HasFoundDecl,
3243 bool HasFoundDecl,
H A DStmt.h379 unsigned HasFoundDecl : 1; variable