Home
last modified time | relevance | path

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

12

/src/sys/arm/conf/
H A DARMADA38X20 options SCHED_ULE # ULE scheduler
H A DARMADAXP29 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
/src/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 …]
/src/sys/arm64/conf/
H A Dstd.arm647 options SCHED_ULE # ULE scheduler
/src/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()
/src/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);
/src/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
/src/sys/i386/conf/
H A DMINIMAL44 options SCHED_ULE # ULE scheduler
H A DGENERIC30 options SCHED_ULE # ULE scheduler
/src/
H A DRELNOTES45 It is now possible to compile both the 4BSD and ULE schedulers into the
/src/sys/riscv/conf/
H A DGENERIC26 options SCHED_ULE # ULE scheduler
/src/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

12