Home
last modified time | relevance | path

Searched refs:ULE (Results 1 – 11 of 11) sorted by relevance

/external/clang/test/SemaTemplate/
Dtemplate-id-printing.cpp56 namespace ULE { namespace
64 ULE::foo<T>; in test()
66 ULE::template foo<T>; in test()
/external/clang/lib/Sema/
DSemaOverload.cpp9408 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, in AddOverloadedCallCandidates() argument
9431 if (ULE->requiresADL()) { in AddOverloadedCallCandidates()
9432 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates()
9433 E = ULE->decls_end(); I != E; ++I) { in AddOverloadedCallCandidates()
9445 if (ULE->hasExplicitTemplateArgs()) { in AddOverloadedCallCandidates()
9446 ULE->copyTemplateArgumentsInto(TABuffer); in AddOverloadedCallCandidates()
9450 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates()
9451 E = ULE->decls_end(); I != E; ++I) in AddOverloadedCallCandidates()
9456 if (ULE->requiresADL()) in AddOverloadedCallCandidates()
9457 AddArgumentDependentLookupCandidates(ULE->getName(), /*Operator*/ false, in AddOverloadedCallCandidates()
[all …]
DSemaLookup.cpp2113 UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg); in FindAssociatedClassesAndNamespaces() local
2114 if (!ULE) continue; in FindAssociatedClassesAndNamespaces()
2116 for (UnresolvedSetIterator I = ULE->decls_begin(), E = ULE->decls_end(); in FindAssociatedClassesAndNamespaces()
DSemaExpr.cpp1506 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>( in DiagnoseEmptyLookup() local
1525 if (ULE->hasExplicitTemplateArgs()) in DiagnoseEmptyLookup()
1526 ULE->copyTemplateArgumentsInto(TList); in DiagnoseEmptyLookup()
1529 SS.Adopt(ULE->getQualifierLoc()); in DiagnoseEmptyLookup()
1534 ULE->getTemplateKeywordLoc(), 0, in DiagnoseEmptyLookup()
1536 ULE->hasExplicitTemplateArgs() ? &TList : 0); in DiagnoseEmptyLookup()
2281 UnresolvedLookupExpr *ULE in BuildDeclarationNameExpr() local
2288 return Owned(ULE); in BuildDeclarationNameExpr()
3862 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl); in ActOnCallExpr() local
3863 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs.data(), in ActOnCallExpr()
[all …]
DTreeTransform.h9171 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Callee)) { in RebuildCXXOperatorCallExpr() local
9172 assert(ULE->requiresADL()); in RebuildCXXOperatorCallExpr()
9176 Functions.append(ULE->decls_begin(), ULE->decls_end()); in RebuildCXXOperatorCallExpr()
DSemaTemplate.cpp2296 UnresolvedLookupExpr *ULE in BuildTemplateIdExpr() local
2304 return Owned(ULE); in BuildTemplateIdExpr()
DSemaCodeComplete.cpp3804 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) in CodeCompleteCall() local
3805 AddOverloadedCallCandidates(ULE, Args, CandidateSet, in CodeCompleteCall()
/external/v8/src/mips/
Dconstants-mips.h521 ULE = 7 // Unordered or Less Than or Equal. enumerator
Dmacro-assembler-mips.cc1134 c(ULE, D, cmp1, cmp2); in BranchF()
/external/clang/lib/AST/
DItaniumMangle.cpp2564 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression() local
2565 mangleUnresolvedName(ULE->getQualifier(), 0, ULE->getName(), Arity); in mangleExpression()
2570 if (ULE->hasExplicitTemplateArgs()) in mangleExpression()
2571 mangleTemplateArgs(ULE->getExplicitTemplateArgs()); in mangleExpression()
/external/clang/include/clang/Sema/
DSema.h1922 void AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE,
1952 UnresolvedLookupExpr *ULE,
1959 bool buildOverloadedCallSet(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE,