Home
last modified time | relevance | path

Searched refs:UnresolvedLookupExpr (Results 1 – 25 of 25) sorted by relevance

/external/clang/lib/AST/
DExprCXX.cpp212 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()
DItaniumMangle.cpp3021 isa<UnresolvedLookupExpr>(E) || in mangleType()
3139 const UnresolvedLookupExpr *lookup = dyn_cast<UnresolvedLookupExpr>(fn); in isParenthesizedADLCallee()
3447 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression()
DASTDumper.cpp539 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node);
1934 void ASTDumper::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node) { in VisitUnresolvedLookupExpr()
1941 UnresolvedLookupExpr::decls_iterator in VisitUnresolvedLookupExpr()
DStmtProfile.cpp1403 StmtProfiler::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *S) { in VisitUnresolvedLookupExpr()
DStmtPrinter.cpp1227 void StmtPrinter::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) { in VisitUnresolvedLookupExpr()
/external/clang/include/clang/AST/
DExprCXX.h2671 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 …]
DRecursiveASTVisitor.h2361 DEF_TRAVERSE_STMT(UnresolvedLookupExpr, {
/external/v8/tools/clang/rewrite_to_chrome_style/
DRewriteToChromeStyle.cpp1047 struct TargetNodeTraits<clang::UnresolvedLookupExpr> {
1048 static clang::SourceLocation GetLoc(const clang::UnresolvedLookupExpr& expr) { in GetLoc()
1274 DeclRewriterBase<clang::NamedDecl, clang::UnresolvedLookupExpr>;
/external/clang/include/clang/Basic/
DStmtNodes.td136 def UnresolvedLookupExpr : DStmt<OverloadExpr>;
/external/clang/lib/Sema/
DSemaOverload.cpp10993 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 …]
DSemaAccess.cpp1531 Sema::AccessResult Sema::CheckUnresolvedLookupAccess(UnresolvedLookupExpr *E, in CheckUnresolvedLookupAccess()
DTreeTransform.h7893 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()
DSemaLookup.cpp2764 UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg); in FindAssociatedClassesAndNamespaces()
DSemaExpr.cpp2822 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()
DSemaOpenMP.cpp8921 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()
DSemaTemplate.cpp2965 UnresolvedLookupExpr *ULE in BuildTemplateIdExpr()
2966 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(), in BuildTemplateIdExpr()
DSemaDeclAttr.cpp2711 } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in handleCleanupAttr()
DSemaCodeComplete.cpp4039 if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) in CodeCompleteCall()
DSemaDeclCXX.cpp2567 if (isa<UnresolvedLookupExpr>(Callee)) in VisitCXXOperatorCallExpr()
DSemaDecl.cpp9298 if (isa<UnresolvedLookupExpr>(Callee)) in VisitCXXOperatorCallExpr()
/external/clang/unittests/ASTMatchers/
DASTMatchersNodeTest.cpp178 TEST(Matcher, UnresolvedLookupExpr) { in TEST() argument
/external/clang/include/clang/Sema/
DSema.h178 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/
DASTMatchers.h1179 UnresolvedLookupExpr> unresolvedLookupExpr;
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1541 void ASTStmtReader::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E) { in VisitUnresolvedLookupExpr()
3617 S = UnresolvedLookupExpr::CreateEmpty(Context, in ReadStmtFromStream()
DASTWriterStmt.cpp1547 void ASTStmtWriter::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E) { in VisitUnresolvedLookupExpr()