| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 12958 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, in AddOverloadedCallCandidates() argument 12981 if (ULE->requiresADL()) { in AddOverloadedCallCandidates() 12982 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 12983 E = ULE->decls_end(); I != E; ++I) { in AddOverloadedCallCandidates() 12995 if (ULE->hasExplicitTemplateArgs()) { in AddOverloadedCallCandidates() 12996 ULE->copyTemplateArgumentsInto(TABuffer); in AddOverloadedCallCandidates() 13000 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates() 13001 E = ULE->decls_end(); I != E; ++I) in AddOverloadedCallCandidates() 13006 if (ULE->requiresADL()) in AddOverloadedCallCandidates() 13007 AddArgumentDependentLookupCandidates(ULE->getName(), ULE->getExprLoc(), in AddOverloadedCallCandidates() [all …]
|
| H A D | SemaTemplateVariadic.cpp | 1232 UnresolvedLookupExpr *ULE = nullptr; in ActOnCXXFoldExpr() local 1244 ULE = cast<UnresolvedLookupExpr>(Callee.get()); in ActOnCXXFoldExpr() 1248 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, in ActOnCXXFoldExpr()
|
| H A D | Sema.cpp | 2600 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in IsCPUDispatchCPUSpecificMultiVersion() local 2601 if (ULE->getNumDecls() == 0) in IsCPUDispatchCPUSpecificMultiVersion() 2604 const NamedDecl *ND = *ULE->decls_begin(); in IsCPUDispatchCPUSpecificMultiVersion()
|
| H A D | TreeTransform.h | 3856 ExprResult RebuildCXXFoldExpr(UnresolvedLookupExpr *ULE, in RebuildCXXFoldExpr() argument 3862 return getSema().BuildCXXFoldExpr(ULE, LParenLoc, LHS, Operator, in RebuildCXXFoldExpr() 10022 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPReductionClause() local 10024 for (auto *D : ULE->decls()) { in TransformOMPReductionClause() 10033 NameInfo, /*ADL=*/true, ULE->isOverloaded(), in TransformOMPReductionClause() 10070 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPTaskReductionClause() local 10072 for (auto *D : ULE->decls()) { in TransformOMPTaskReductionClause() 10080 /*ADL=*/true, ULE->isOverloaded(), Decls.begin(), Decls.end())); in TransformOMPTaskReductionClause() 10115 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPInReductionClause() local 10117 for (auto *D : ULE->decls()) { in TransformOMPInReductionClause() [all …]
|
| H A D | SemaExpr.cpp | 3250 UnresolvedLookupExpr *ULE in BuildDeclarationNameExpr() local 3257 return ULE; in BuildDeclarationNameExpr() 6857 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn)) { in ActOnCallExpr() local 6858 if (ULE->hasExplicitTemplateArgs() && in ActOnCallExpr() 6859 ULE->decls_begin() == ULE->decls_end()) { in ActOnCallExpr() 6863 << ULE->getName(); in ActOnCallExpr() 6960 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) in BuildCallExpr() local 6962 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig, in BuildCallExpr() 16037 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in isQualifiedMemberAccess() local 16038 if (!ULE->getQualifier()) in isQualifiedMemberAccess() [all …]
|
| H A D | SemaDeclAttr.cpp | 3699 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in handleCleanupAttr() local 3700 if (ULE->hasExplicitTemplateArgs()) in handleCleanupAttr() 3702 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); in handleCleanupAttr() 3703 NI = ULE->getNameInfo(); in handleCleanupAttr() 3707 if (ULE->getType() == S.Context.OverloadTy) in handleCleanupAttr() 3708 S.NoteAllOverloadCandidates(ULE); in handleCleanupAttr()
|
| H A D | SemaDecl.cpp | 1303 auto *ULE = cast<UnresolvedLookupExpr>(E); in ActOnNameClassifiedAsOverloadSet() local 1304 if ((*ULE->decls_begin())->isCXXClassMember()) { in ActOnNameClassifiedAsOverloadSet() 1306 SS.Adopt(ULE->getQualifierLoc()); in ActOnNameClassifiedAsOverloadSet() 1309 LookupResult Result(*this, ULE->getName(), ULE->getNameLoc(), in ActOnNameClassifiedAsOverloadSet() 1311 Result.setNamingClass(ULE->getNamingClass()); in ActOnNameClassifiedAsOverloadSet() 1312 for (auto I = ULE->decls_begin(), E = ULE->decls_end(); I != E; ++I) in ActOnNameClassifiedAsOverloadSet() 1321 return ULE; in ActOnNameClassifiedAsOverloadSet()
|
| H A D | SemaTemplate.cpp | 4949 UnresolvedLookupExpr *ULE in BuildTemplateIdExpr() local 4957 return ULE; in BuildTemplateIdExpr()
|
| H A D | SemaCodeComplete.cpp | 6110 if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) { in ProduceCallSignatureHelp() local 6111 AddOverloadedCallCandidates(ULE, ArgsWithoutDependentTypes, CandidateSet, in ProduceCallSignatureHelp()
|
| H A D | SemaOpenMP.cpp | 18799 } else if (auto *ULE = in buildDeclareReductionRef() local 18803 for (NamedDecl *D : ULE->decls()) { in buildDeclareReductionRef() 21573 } else if (auto *ULE = cast_or_null<UnresolvedLookupExpr>(UnresolvedMapper)) { in buildUserDefinedMapperRef() local 21576 for (NamedDecl *D : ULE->decls()) { in buildUserDefinedMapperRef()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | JSONNodeDumper.cpp | 1347 const UnresolvedLookupExpr *ULE) { in VisitUnresolvedLookupExpr() argument 1348 JOS.attribute("usesADL", ULE->requiresADL()); in VisitUnresolvedLookupExpr() 1349 JOS.attribute("name", ULE->getName().getAsString()); in VisitUnresolvedLookupExpr() 1351 JOS.attributeArray("lookups", [this, ULE] { in VisitUnresolvedLookupExpr() 1352 for (const NamedDecl *D : ULE->decls()) in VisitUnresolvedLookupExpr()
|
| H A D | ItaniumMangle.cpp | 4534 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression() local 4535 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), in mangleExpression() 4536 ULE->getTemplateArgs(), ULE->getNumTemplateArgs(), in mangleExpression()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | ExprCXX.h | 4038 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingResults() local 4039 return ULE->getTrailingObjects<DeclAccessPair>(); in getTrailingResults() 4047 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingASTTemplateKWAndArgsInfo() local 4048 return ULE->getTrailingObjects<ASTTemplateKWAndArgsInfo>(); in getTrailingASTTemplateKWAndArgsInfo() 4054 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingTemplateArgumentLoc() local 4055 return ULE->getTrailingObjects<TemplateArgumentLoc>(); in getTrailingTemplateArgumentLoc() 4061 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getNamingClass() local 4062 return ULE->getNamingClass(); in getNamingClass()
|
| H A D | JSONNodeDumper.h | 288 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *ULE);
|
| /openbsd-src/gnu/gcc/gcc/config/frv/ |
| H A D | predicates.md | 1205 case ULE: case ULT:
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 4156 void AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, 4180 UnresolvedLookupExpr *ULE, 4188 bool buildOverloadedCallSet(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE,
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/frv/ |
| H A D | frv.c | 4966 case ULE: case ULT:
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrInfo.td | 3393 // ULE is:
|