Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
1646 bool HasQualifier, bool HasFoundDecl, in CreateEmpty() argument
1651 bool HasQualOrFound = HasQualifier || HasFoundDecl; in CreateEmpty()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp598 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()
1021 bool HasFoundDecl = Record.readInt(); in VisitMemberExpr() local
1030 E->MemberExprBits.HasQualifierOrFoundDecl = HasQualifier || HasFoundDecl; in VisitMemberExpr()
1036 if (HasQualifier || HasFoundDecl) { in VisitMemberExpr()
1038 if (HasFoundDecl) { in VisitMemberExpr()
H A DASTWriterStmt.cpp882 bool HasFoundDecl = in VisitMemberExpr() local
892 Record.push_back(HasFoundDecl); in VisitMemberExpr()
906 if (HasFoundDecl) { in VisitMemberExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExpr.h1243 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1281 bool HasFoundDecl,
3160 bool HasFoundDecl,
H A DStmt.h374 unsigned HasFoundDecl : 1; variable