/external/cronet/buildtools/third_party/libc++/trunk/test/tools/clang_tidy_checks/ |
D | qualify_declval.cpp | 12 AST_MATCHER(clang::UnresolvedLookupExpr, requiresADL) { return Node.requiresADL(); } in AST_MATCHER() argument 13 AST_MATCHER(clang::UnresolvedLookupExpr, isDeclval) { return Node.getName().getAsString() == "declv… in AST_MATCHER() argument
|
D | robust_against_adl.cpp | 17 AST_MATCHER(clang::UnresolvedLookupExpr, requiresADL) { return Node.requiresADL(); } in AST_MATCHER() argument 21 AST_MATCHER(clang::UnresolvedLookupExpr, isCustomizationPoint) { in AST_MATCHER() argument
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 212 UnresolvedLookupExpr * 213 UnresolvedLookupExpr::Create(const ASTContext &C, in Create() 229 void *Mem = C.Allocate(Size, llvm::alignOf<UnresolvedLookupExpr>()); in Create() 230 return new (Mem) UnresolvedLookupExpr(C, NamingClass, QualifierLoc, in Create() 236 UnresolvedLookupExpr * 237 UnresolvedLookupExpr::CreateEmpty(const ASTContext &C, in CreateEmpty() 244 void *Mem = C.Allocate(Size, llvm::alignOf<UnresolvedLookupExpr>()); in CreateEmpty() 245 UnresolvedLookupExpr *E = new (Mem) UnresolvedLookupExpr(EmptyShell()); in CreateEmpty() 335 if (isa<UnresolvedLookupExpr>(this)) in getNamingClass() 336 return cast<UnresolvedLookupExpr>(this)->getNamingClass(); in getNamingClass()
|
D | ItaniumMangle.cpp | 3021 isa<UnresolvedLookupExpr>(E) || in mangleType() 3139 const UnresolvedLookupExpr *lookup = dyn_cast<UnresolvedLookupExpr>(fn); in isParenthesizedADLCallee() 3447 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression()
|
D | ASTDumper.cpp | 539 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node); 1934 void ASTDumper::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node) { in VisitUnresolvedLookupExpr() 1941 UnresolvedLookupExpr::decls_iterator in VisitUnresolvedLookupExpr()
|
D | StmtProfile.cpp | 1403 StmtProfiler::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *S) { in VisitUnresolvedLookupExpr()
|
D | StmtPrinter.cpp | 1227 void StmtPrinter::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) { in VisitUnresolvedLookupExpr()
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 2671 class UnresolvedLookupExpr final 2674 UnresolvedLookupExpr, ASTTemplateKWAndArgsInfo, TemplateArgumentLoc> { 2695 UnresolvedLookupExpr(const ASTContext &C, in UnresolvedLookupExpr() function 2709 UnresolvedLookupExpr(EmptyShell Empty) in UnresolvedLookupExpr() function 2719 static UnresolvedLookupExpr *Create(const ASTContext &C, in Create() 2726 return new(C) UnresolvedLookupExpr(C, NamingClass, QualifierLoc, in Create() 2731 static UnresolvedLookupExpr *Create(const ASTContext &C, 2741 static UnresolvedLookupExpr *CreateEmpty(const ASTContext &C, 3505 if (isa<UnresolvedLookupExpr>(this)) in getTrailingASTTemplateKWAndArgsInfo() 3506 return cast<UnresolvedLookupExpr>(this) in getTrailingASTTemplateKWAndArgsInfo() [all …]
|
D | RecursiveASTVisitor.h | 2361 DEF_TRAVERSE_STMT(UnresolvedLookupExpr, {
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 136 def UnresolvedLookupExpr : DStmt<OverloadExpr>;
|
/external/clang/lib/Sema/ |
D | SemaOverload.cpp | 10993 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, in AddOverloadedCallCandidates() 11017 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 11035 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 11212 UnresolvedLookupExpr *ULE, in BuildRecoveryCallExpr() 11281 UnresolvedLookupExpr *ULE, in buildOverloadedCallSet() 11347 UnresolvedLookupExpr *ULE, in FinishOverloadedCallExpr() 11448 UnresolvedLookupExpr *ULE, in BuildOverloadedCallExpr() 11532 UnresolvedLookupExpr *Fn in CreateOverloadedUnaryOp() 11533 = UnresolvedLookupExpr::Create(Context, NamingClass, in CreateOverloadedUnaryOp() 11715 UnresolvedLookupExpr *Fn in CreateOverloadedBinOp() [all …]
|
D | SemaAccess.cpp | 1531 Sema::AccessResult Sema::CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E, in CheckUnresolvedLookupAccess()
|
D | TreeTransform.h | 7893 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPReductionClause() 7901 UnresolvedLookupExpr::Create( in TransformOMPReductionClause() 9661 UnresolvedLookupExpr *Old) { in TransformUnresolvedLookupExpr() 9666 for (UnresolvedLookupExpr::decls_iterator I = Old->decls_begin(), in TransformUnresolvedLookupExpr() 11807 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Callee)) { in RebuildCXXOperatorCallExpr()
|
D | SemaLookup.cpp | 2764 UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg); in FindAssociatedClassesAndNamespaces()
|
D | SemaExpr.cpp | 2822 UnresolvedLookupExpr *ULE in BuildDeclarationNameExpr() 2823 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), in BuildDeclarationNameExpr() 5188 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) in ActOnCallExpr() 11504 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in isQualifiedMemberAccess()
|
D | SemaOpenMP.cpp | 8921 cast_or_null<UnresolvedLookupExpr>(UnresolvedReduction)) { in buildDeclareReductionRef() 8946 return UnresolvedLookupExpr::Create( in buildDeclareReductionRef() 9121 isa<UnresolvedLookupExpr>(DeclareReductionRef.get()))) in ActOnOpenMPReductionClause() 9236 isa<UnresolvedLookupExpr>(DeclareReductionRef.get()))) { in ActOnOpenMPReductionClause()
|
D | SemaTemplate.cpp | 2965 UnresolvedLookupExpr *ULE in BuildTemplateIdExpr() 2966 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), in BuildTemplateIdExpr()
|
D | SemaDeclAttr.cpp | 2711 } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in handleCleanupAttr()
|
D | SemaCodeComplete.cpp | 4039 if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) in CodeCompleteCall()
|
D | SemaDeclCXX.cpp | 2567 if (isa<UnresolvedLookupExpr>(Callee)) in VisitCXXOperatorCallExpr()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersNodeTest.cpp | 178 TEST(Matcher, UnresolvedLookupExpr) { in TEST() argument
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 178 class UnresolvedLookupExpr; variable 2597 void AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, 2618 UnresolvedLookupExpr *ULE, 2626 bool buildOverloadedCallSet(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, 5565 AccessResult CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E,
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1179 UnresolvedLookupExpr> unresolvedLookupExpr;
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1541 void ASTStmtReader::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E) { in VisitUnresolvedLookupExpr() 3617 S = UnresolvedLookupExpr::CreateEmpty(Context, in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1547 void ASTStmtWriter::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E) { in VisitUnresolvedLookupExpr()
|