Home
last modified time | relevance | path

Searched refs:ULE (Results 1 – 25 of 31) 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.cpp14254 void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE, in AddOverloadedCallCandidates() argument
14277 if (ULE->requiresADL()) { in AddOverloadedCallCandidates()
14278 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates()
14279 E = ULE->decls_end(); I != E; ++I) { in AddOverloadedCallCandidates()
14291 if (ULE->hasExplicitTemplateArgs()) { in AddOverloadedCallCandidates()
14292 ULE->copyTemplateArgumentsInto(TABuffer); in AddOverloadedCallCandidates()
14296 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(), in AddOverloadedCallCandidates()
14297 E = ULE->decls_end(); I != E; ++I) in AddOverloadedCallCandidates()
14302 if (ULE->requiresADL()) in AddOverloadedCallCandidates()
14303 AddArgumentDependentLookupCandidates(ULE->getName(), ULE->getExprLoc(), in AddOverloadedCallCandidates()
[all …]
H A DSemaTemplateVariadic.cpp1432 UnresolvedLookupExpr *ULE = nullptr; in ActOnCXXFoldExpr() local
1444 ULE = cast<UnresolvedLookupExpr>(Callee.get()); in ActOnCXXFoldExpr()
1448 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, in ActOnCXXFoldExpr()
H A DSemaDeclAttr.cpp1783 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(DeallocE)) { in handleRestrictAttr() local
1784 DeallocFD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); in handleRestrictAttr()
1785 DeallocNI = ULE->getNameInfo(); in handleRestrictAttr()
1789 if (ULE->getType() == S.Context.OverloadTy) in handleRestrictAttr()
1790 S.NoteAllOverloadCandidates(ULE); in handleRestrictAttr()
3672 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in handleCleanupAttr() local
3673 if (ULE->hasExplicitTemplateArgs()) in handleCleanupAttr()
3675 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); in handleCleanupAttr()
3676 NI = ULE->getNameInfo(); in handleCleanupAttr()
3680 if (ULE->getType() == S.Context.OverloadTy) in handleCleanupAttr()
[all …]
H A DSemaExpr.cpp3242 UnresolvedLookupExpr *ULE = UnresolvedLookupExpr::Create( in BuildDeclarationNameExpr() local
3247 return ULE; in BuildDeclarationNameExpr()
6522 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn); in ActOnCallExpr() local
6523 ULE && ULE->hasExplicitTemplateArgs() && in ActOnCallExpr()
6524 ULE->decls_begin() == ULE->decls_end()) { in ActOnCallExpr()
6526 << ULE->getName(); in ActOnCallExpr()
6658 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl)) in BuildCallExpr() local
6660 Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig, in BuildCallExpr()
15902 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in isQualifiedMemberAccess() local
15903 if (!ULE->getQualifier()) in isQualifiedMemberAccess()
[all …]
H A DSema.cpp2810 if (const auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { in IsCPUDispatchCPUSpecificMultiVersion() local
2811 if (ULE->getNumDecls() == 0) in IsCPUDispatchCPUSpecificMultiVersion()
2814 const NamedDecl *ND = *ULE->decls_begin(); in IsCPUDispatchCPUSpecificMultiVersion()
H A DTreeTransform.h4050 ExprResult RebuildCXXFoldExpr(UnresolvedLookupExpr *ULE, in RebuildCXXFoldExpr() argument
4056 return getSema().BuildCXXFoldExpr(ULE, LParenLoc, LHS, Operator, in RebuildCXXFoldExpr()
11042 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPReductionClause() local
11044 for (auto *D : ULE->decls()) { in TransformOMPReductionClause()
11089 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPTaskReductionClause() local
11091 for (auto *D : ULE->decls()) { in TransformOMPTaskReductionClause()
11135 auto *ULE = cast<UnresolvedLookupExpr>(E); in TransformOMPInReductionClause() local
11137 for (auto *D : ULE->decls()) { in TransformOMPInReductionClause()
11317 auto *ULE = cast<UnresolvedLookupExpr>(E); in transformOMPMappableExprListClause() local
11319 for (auto *D : ULE->decls()) { in transformOMPMappableExprListClause()
[all …]
/freebsd/sys/arm64/conf/
H A Dstd.arm647 options SCHED_ULE # ULE scheduler
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp1468 const UnresolvedLookupExpr *ULE) { in VisitUnresolvedLookupExpr() argument
1469 JOS.attribute("usesADL", ULE->requiresADL()); in VisitUnresolvedLookupExpr()
1470 JOS.attribute("name", ULE->getName().getAsString()); in VisitUnresolvedLookupExpr()
1472 JOS.attributeArray("lookups", [this, ULE] { in VisitUnresolvedLookupExpr()
1473 for (const NamedDecl *D : ULE->decls()) in VisitUnresolvedLookupExpr()
H A DItaniumMangle.cpp5300 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); in mangleExpression() local
5301 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), in mangleExpression()
5302 ULE->getTemplateArgs(), ULE->getNumTemplateArgs(), in mangleExpression()
/freebsd/sys/amd64/conf/
H A DMINIMAL36 options SCHED_ULE # ULE scheduler
H A DFIRECRACKER25 options SCHED_ULE # ULE scheduler
H A DGENERIC26 options SCHED_ULE # ULE scheduler
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h4215 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingResults() local
4216 return ULE->getTrailingObjects<DeclAccessPair>(); in getTrailingResults()
4224 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingASTTemplateKWAndArgsInfo() local
4225 return ULE->getTrailingObjects<ASTTemplateKWAndArgsInfo>(); in getTrailingASTTemplateKWAndArgsInfo()
4231 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getTrailingTemplateArgumentLoc() local
4232 return ULE->getTrailingObjects<TemplateArgumentLoc>(); in getTrailingTemplateArgumentLoc()
4238 if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(this)) in getNamingClass() local
4239 return ULE->getNamingClass(); in getNamingClass()
H A DJSONNodeDumper.h304 void VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *ULE);
/freebsd/sys/i386/conf/
H A DMINIMAL44 options SCHED_ULE # ULE scheduler
H A DGENERIC30 options SCHED_ULE # ULE scheduler
/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 DGENERIC64LE36 options SCHED_ULE # ULE scheduler
H A DGENERIC6437 options SCHED_ULE # ULE scheduler
/freebsd/
H A DRELNOTES108 It is now possible to compile both the 4BSD and ULE schedulers into the

12