Home
last modified time | relevance | path

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

12

/freebsd/sys/arm/conf/
H A DARMADA38X20 options SCHED_ULE # ULE scheduler
H A DZEDBOARD28 options SCHED_ULE # ULE scheduler
H A DTEGRA12425 options SCHED_ULE # ULE scheduler
H A DGENERIC61 options SCHED_ULE # ULE scheduler
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp13489 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, in AddOverloadedCallCandidates() argument
13512 if (ULE->requiresADL()) { in AddOverloadedCallCandidates()
13513 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates()
13514 E = ULE->decls_end(); I != E; ++I) { in AddOverloadedCallCandidates()
13526 if (ULE->hasExplicitTemplateArgs()) { in AddOverloadedCallCandidates()
13527 ULE->copyTemplateArgumentsInto(TABuffer); in AddOverloadedCallCandidates()
13531 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates()
13532 E = ULE->decls_end(); I != E; ++I) in AddOverloadedCallCandidates()
13537 if (ULE->requiresADL()) in AddOverloadedCallCandidates()
13538 AddArgumentDependentLookupCandidates(ULE->getName(), ULE->getExprLoc(), in AddOverloadedCallCandidates()
[all …]
H A DSemaTemplateVariadic.cpp1316 UnresolvedLookupExpr *ULE = nullptr; in ActOnCXXFoldExpr() local
1328 ULE = cast<UnresolvedLookupExpr>(Callee.get()); in ActOnCXXFoldExpr()
1332 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, in ActOnCXXFoldExpr()
H A DSema.cpp2642 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in IsCPUDispatchCPUSpecificMultiVersion() local
2643 if (ULE->getNumDecls() == 0) in IsCPUDispatchCPUSpecificMultiVersion()
2646 const NamedDecl *ND = *ULE->decls_begin(); in IsCPUDispatchCPUSpecificMultiVersion()
H A DTreeTransform.h3998 ExprResult RebuildCXXFoldExpr(UnresolvedLookupExpr *ULE, in RebuildCXXFoldExpr() argument
4004 return getSema().BuildCXXFoldExpr(ULE, LParenLoc, LHS, Operator, in RebuildCXXFoldExpr()
10533 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPReductionClause() local
10535 for (auto *D : ULE->decls()) { in TransformOMPReductionClause()
10580 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPTaskReductionClause() local
10582 for (auto *D : ULE->decls()) { in TransformOMPTaskReductionClause()
10626 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPInReductionClause() local
10628 for (auto *D : ULE->decls()) { in TransformOMPInReductionClause()
10808 auto *ULE = cast<UnresolvedLookupExpr>(E); in transformOMPMappableExprListClause() local
10810 for (auto *D : ULE->decls()) { in transformOMPMappableExprListClause()
[all …]
H A DSemaExpr.cpp3188 UnresolvedLookupExpr *ULE = UnresolvedLookupExpr::Create( in BuildDeclarationNameExpr() local
3193 return ULE; in BuildDeclarationNameExpr()
6380 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn); in ActOnCallExpr() local
6381 ULE && ULE->hasExplicitTemplateArgs() && in ActOnCallExpr()
6382 ULE->decls_begin() == ULE->decls_end()) { in ActOnCallExpr()
6386 << ULE->getName(); in ActOnCallExpr()
6486 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) in BuildCallExpr() local
6488 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig, in BuildCallExpr()
15536 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in isQualifiedMemberAccess() local
15537 if (!ULE->getQualifier()) in isQualifiedMemberAccess()
[all …]
H A DSemaDeclAttr.cpp3251 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in handleCleanupAttr() local
3252 if (ULE->hasExplicitTemplateArgs()) in handleCleanupAttr()
3254 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); in handleCleanupAttr()
3255 NI = ULE->getNameInfo(); in handleCleanupAttr()
3259 if (ULE->getType() == S.Context.OverloadTy) in handleCleanupAttr()
3260 S.NoteAllOverloadCandidates(ULE); in handleCleanupAttr()
H A DSemaDecl.cpp1265 auto *ULE = cast<UnresolvedLookupExpr>(E); in ActOnNameClassifiedAsOverloadSet() local
1266 if ((*ULE->decls_begin())->isCXXClassMember()) { in ActOnNameClassifiedAsOverloadSet()
1268 SS.Adopt(ULE->getQualifierLoc()); in ActOnNameClassifiedAsOverloadSet()
1271 LookupResult Result(*this, ULE->getName(), ULE->getNameLoc(), in ActOnNameClassifiedAsOverloadSet()
1273 Result.setNamingClass(ULE->getNamingClass()); in ActOnNameClassifiedAsOverloadSet()
1274 for (auto I = ULE->decls_begin(), E = ULE->decls_end(); I != E; ++I) in ActOnNameClassifiedAsOverloadSet()
1283 return ULE; in ActOnNameClassifiedAsOverloadSet()
H A DSemaTemplate.cpp4436 UnresolvedLookupExpr *ULE = UnresolvedLookupExpr::Create( in BuildTemplateIdExpr() local
4445 if (ULE->getType() == Context.OverloadTy && R.isSingleResult() && in BuildTemplateIdExpr()
4447 ULE->setType(Context.UnresolvedTemplateTy); in BuildTemplateIdExpr()
4449 return ULE; in BuildTemplateIdExpr()
H A DSemaCodeComplete.cpp6242 if (auto ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn)) { in ProduceCallSignatureHelp() local
6243 SemaRef.AddOverloadedCallCandidates(ULE, ArgsWithoutDependentTypes, in ProduceCallSignatureHelp()
H A DSemaOpenMP.cpp17939 } else if (auto *ULE = in buildDeclareReductionRef() local
17943 for (NamedDecl *D : ULE->decls()) { in buildDeclareReductionRef()
20809 } else if (auto *ULE = cast_or_null<UnresolvedLookupExpr>(UnresolvedMapper)) { in buildUserDefinedMapperRef() local
20812 for (NamedDecl *D : ULE->decls()) { in buildUserDefinedMapperRef()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp1454 const UnresolvedLookupExpr *ULE) { in VisitUnresolvedLookupExpr() argument
1455 JOS.attribute("usesADL", ULE->requiresADL()); in VisitUnresolvedLookupExpr()
1456 JOS.attribute("name", ULE->getName().getAsString()); in VisitUnresolvedLookupExpr()
1458 JOS.attributeArray("lookups", [this, ULE] { in VisitUnresolvedLookupExpr()
1459 for (const NamedDecl *D : ULE->decls()) in VisitUnresolvedLookupExpr()
H A DItaniumMangle.cpp5022 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression() local
5023 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), in mangleExpression()
5024 ULE->getTemplateArgs(), ULE->getNumTemplateArgs(), in mangleExpression()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h4093 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingResults() local
4094 return ULE->getTrailingObjects<DeclAccessPair>(); in getTrailingResults()
4102 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingASTTemplateKWAndArgsInfo() local
4103 return ULE->getTrailingObjects<ASTTemplateKWAndArgsInfo>(); in getTrailingASTTemplateKWAndArgsInfo()
4109 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingTemplateArgumentLoc() local
4110 return ULE->getTrailingObjects<TemplateArgumentLoc>(); in getTrailingTemplateArgumentLoc()
4116 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getNamingClass() local
4117 return ULE->getNamingClass(); in getNamingClass()
H A DJSONNodeDumper.h300 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *ULE);
/freebsd/sys/riscv/conf/
H A DGENERIC26 options SCHED_ULE # ULE scheduler
/freebsd/sys/powerpc/conf/
H A DGENERIC35 options SCHED_ULE # ULE scheduler
H A DGENERIC6437 options SCHED_ULE # ULE scheduler
H A DGENERIC64LE36 options SCHED_ULE # ULE scheduler
/freebsd/sys/i386/conf/
H A DGENERIC28 options SCHED_ULE # ULE scheduler
/freebsd/sys/amd64/conf/
H A DGENERIC26 options SCHED_ULE # ULE scheduler
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10473 void AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE,
10513 Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE, SourceLocation LParenLoc,
10520 bool buildOverloadedCallSet(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE,

12