Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DExpr.cpp387 DeclRefExprBits.HasFoundDecl = false; in DeclRefExpr()
410 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
476 bool HasFoundDecl, in CreateEmpty() argument
483 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, in CreateEmpty()
1565 bool HasQualifier, bool HasFoundDecl, in CreateEmpty() argument
1570 bool HasQualOrFound = HasQualifier || HasFoundDecl; in CreateEmpty()
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp596 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); in VisitDeclRefExpr()
1019 bool HasFoundDecl = Record.readInt(); in VisitMemberExpr() local
1028 E->MemberExprBits.HasQualifierOrFoundDecl = HasQualifier || HasFoundDecl; in VisitMemberExpr()
1034 if (HasQualifier || HasFoundDecl) { in VisitMemberExpr()
1036 if (HasFoundDecl) { in VisitMemberExpr()
DASTWriterStmt.cpp881 bool HasFoundDecl = in VisitMemberExpr() local
891 Record.push_back(HasFoundDecl); in VisitMemberExpr()
905 if (HasFoundDecl) { in VisitMemberExpr()
/external/clang/lib/AST/
DExpr.cpp342 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
414 bool HasFoundDecl, in CreateEmpty() argument
421 HasQualifier ? 1 : 0, HasFoundDecl ? 1 : 0, HasTemplateKWAndArgsInfo, in CreateEmpty()
/external/clang/include/clang/AST/
DExpr.h961 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
988 DeclRefExprBits.HasFoundDecl = 0; in Expr()
1013 bool HasFoundDecl,
DStmt.h176 unsigned HasFoundDecl : 1; in LLVM_ALIGNAS() local
/external/llvm-project/clang/include/clang/AST/
DExpr.h1243 bool hasFoundDecl() const { return DeclRefExprBits.HasFoundDecl; } in hasFoundDecl()
1281 bool HasFoundDecl,
3158 bool HasFoundDecl,
DStmt.h374 unsigned HasFoundDecl : 1; variable
/external/clang/lib/Serialization/
DASTReaderStmt.cpp457 E->DeclRefExprBits.HasFoundDecl = Record[Idx++]; in VisitDeclRefExpr()