Searched defs:ULE (Results 1 - 6 of 6) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dtemplate-id-printing.cpp56 namespace ULE { namespace
63 // CHECK: ULE::foo<T>;
64 ULE::foo<T>;
65 // CHECK: ULE::template foo<T>;
66 ULE::template foo<T>;
69 } // namespace ULE
/external/clang/lib/AST/
H A DItaniumMangle.cpp2750 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); local
2751 mangleUnresolvedName(ULE->getQualifier(), 0, ULE->getName(), Arity);
2756 if (ULE->hasExplicitTemplateArgs())
2757 mangleTemplateArgs(ULE->getExplicitTemplateArgs());
/external/clang/lib/Sema/
H A DSemaLookup.cpp2245 UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg); local
2246 if (!ULE) continue;
2248 for (UnresolvedSetIterator I = ULE->decls_begin(), E = ULE->decls_end();
H A DSemaTemplate.cpp2748 UnresolvedLookupExpr *ULE local
2756 return Owned(ULE);
H A DSemaOverload.cpp9846 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, argument
9869 if (ULE->requiresADL()) {
9870 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(),
9871 E = ULE->decls_end(); I != E; ++I) {
9883 if (ULE->hasExplicitTemplateArgs()) {
9884 ULE->copyTemplateArgumentsInto(TABuffer);
9888 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(),
9889 E = ULE->decls_end(); I != E; ++I)
9894 if (ULE->requiresADL())
9895 AddArgumentDependentLookupCandidates(ULE
10051 BuildRecoveryCallExpr(Sema &SemaRef, Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, SourceLocation LParenLoc, llvm::MutableArrayRef<Expr *> Args, SourceLocation RParenLoc, bool EmptyLookup, bool AllowTypoCorrection) argument
10121 buildOverloadedCallSet(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, MultiExprArg Args, SourceLocation RParenLoc, OverloadCandidateSet *CandidateSet, ExprResult *Result) argument
10182 FinishOverloadedCallExpr(Sema &SemaRef, Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, SourceLocation LParenLoc, MultiExprArg Args, SourceLocation RParenLoc, Expr *ExecConfig, OverloadCandidateSet *CandidateSet, OverloadCandidateSet::iterator *Best, OverloadingResult OverloadResult, bool AllowTypoCorrection) argument
10258 BuildOverloadedCallExpr(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, SourceLocation LParenLoc, MultiExprArg Args, SourceLocation RParenLoc, Expr *ExecConfig, bool AllowTypoCorrection) argument
[all...]
H A DSemaExpr.cpp1704 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>( local
1724 if (ULE->hasExplicitTemplateArgs())
1725 ULE->copyTemplateArgumentsInto(TList);
1728 SS.Adopt(ULE->getQualifierLoc());
1733 ULE->getTemplateKeywordLoc(), 0,
1735 ULE->hasExplicitTemplateArgs() ? &TList : 0);
2540 UnresolvedLookupExpr *ULE local
2547 return Owned(ULE);
4395 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); local
4396 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLo
[all...]

Completed in 848 milliseconds