Home
last modified time | relevance | path

Searched refs:Ps (Results 1 – 25 of 93) sorted by relevance

1234

/external/google-fruit/include/fruit/impl/meta/
Dcomponent.h532 using Ps = PsParam;
586 using type = typename Comp::Ps;
840 template <typename... Ps>
843 CheckNoRepeatedTypes(RemoveConstFromTypes(Vector<Ps...>)),
844 PropagateError(CheckNormalizedTypes(RemoveConstFromTypes(Vector<Ps...>)),
845 PropagateError(CheckNoRequiredTypesInComponentArguments(Vector<Ps...>),
846 … ConsComp(EmptySet, VectorToSetUnchecked(RemoveConstFromTypes(Vector<Ps...>)),
847 RemoveConstTypes(Vector<Ps...>),
849 Vector<Pair<Ps, Vector<>>...>,
855 template <typename... Rs, typename... Ps>
[all …]
/external/llvm-project/clang-tools-extra/clangd/unittests/
DAnnotations.cpp22 std::vector<Position> Ps; in points() local
23 Ps.reserve(Offsets.size()); in points()
25 Ps.push_back(offsetToPosition(code(), O)); in points()
27 return Ps; in points()
/external/eigen/unsupported/Eigen/CXX11/src/util/
DCXX11Meta.h485 template<class InstType, typename ArrType, std::size_t N, bool Reverse, typename... Ps>
488 template<class InstType, typename ArrType, std::size_t N, typename... Ps>
489 struct h_instantiate_by_c_array<InstType, ArrType, N, false, Ps...>
491 static InstType run(ArrType* arr, Ps... args)
493 …return h_instantiate_by_c_array<InstType, ArrType, N - 1, false, Ps..., ArrType>::run(arr + 1, arg…
497 template<class InstType, typename ArrType, std::size_t N, typename... Ps>
498 struct h_instantiate_by_c_array<InstType, ArrType, N, true, Ps...>
500 static InstType run(ArrType* arr, Ps... args)
502 …return h_instantiate_by_c_array<InstType, ArrType, N - 1, false, ArrType, Ps...>::run(arr + 1, arr…
506 template<class InstType, typename ArrType, typename... Ps>
[all …]
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
DTypeInference.java74 List<ResolvedTypeParameterDeclaration> Ps = methodDeclaration.getTypeParameters(); in instantiationInference() local
75 List<InferenceVariable> alphas = InferenceVariable.instantiate(Ps); in instantiationInference()
77 for (int i=0;i<Ps.size();i++) { in instantiationInference()
78 theta = theta.withPair(Ps.get(0), alphas.get(0)); in instantiationInference()
83 BoundSet B0 = boundSetup(Ps, alphas); in instantiationInference()
89 for (int i=0;i<Ps.size();i++) { in instantiationInference()
90 ResolvedTypeParameterDeclaration Pi = Ps.get(i); in instantiationInference()
/external/llvm-project/llvm/unittests/FuzzMutate/
DReservoirSamplerTest.cpp49 double Ps = 1.0 / Items.size(); in TEST() local
52 Sum += Ys * Ys / Ps; in TEST()
/external/llvm-project/clang/test/SemaTemplate/
Ddeduction-guide.cpp8 template<Ts ...Ns, T *...Ps> A(X<Ps...>, Ts (*...qs)[Ns]);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonConstPropagation.cpp469 uint32_t Ps = !isTop() ? properties() in convertToProperty() local
471 if (Ps != ConstantProperties::Unknown) { in convertToProperty()
472 Properties = Ps; in convertToProperty()
484 uint32_t Ps = properties(); in print() local
485 if (Ps & ConstantProperties::Zero) in print()
487 if (Ps & ConstantProperties::NonZero) in print()
489 if (Ps & ConstantProperties::Finite) in print()
491 if (Ps & ConstantProperties::Infinity) in print()
493 if (Ps & ConstantProperties::NaN) in print()
495 if (Ps & ConstantProperties::PosOrZero) in print()
[all …]
/external/llvm-project/llvm/lib/Target/Hexagon/
DHexagonConstPropagation.cpp468 uint32_t Ps = !isTop() ? properties() in convertToProperty() local
470 if (Ps != ConstantProperties::Unknown) { in convertToProperty()
471 Properties = Ps; in convertToProperty()
483 uint32_t Ps = properties(); in print() local
484 if (Ps & ConstantProperties::Zero) in print()
486 if (Ps & ConstantProperties::NonZero) in print()
488 if (Ps & ConstantProperties::Finite) in print()
490 if (Ps & ConstantProperties::Infinity) in print()
492 if (Ps & ConstantProperties::NaN) in print()
494 if (Ps & ConstantProperties::PosOrZero) in print()
[all …]
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-loop-convert-basic.cpp265 S *Ps; in f() local
266 for (S::iterator It = Ps->begin(), E = Ps->end(); It != E; ++It) { in f()
426 S *Ps; in different_type() local
427 for (S::const_iterator It = Ps->begin(), E = Ps->end(); It != E; ++It) { in different_type()
Dmodernize-loop-convert-extra.cpp672 S *Ps; in f() local
673 for (S::iterator It = Ps->begin(); It != Ps->end(); ++It) { in f()
771 S *Ps; in different_type() local
772 for (S::const_iterator It = Ps->begin(); It != Ps->end(); ++It) { in different_type()
/external/google-fruit/include/fruit/impl/
Dcomponent_functors.defn.h140 … using Comp1 = ConsComp(typename Comp::RsSuperset, typename Comp::Ps, typename Comp::NonConstRsPs,
164 … If(IsInSet(AnnotatedI, typename Comp::Ps), ConstructError(TypeAlreadyBoundErrorTag, AnnotatedI),
689 using new_Ps = SetUncheckedUnion(typename OtherComp::Ps, typename Comp::Ps);
713 using AllPs = SetUncheckedUnion(InterfacePs, typename Comp::Ps);
714 using DuplicateTypes = SetIntersection(typename OtherComp::Ps, AllPs);
715 using CompConstPs = SetDifference(typename Comp::Ps, typename Comp::NonConstRsPs);
716 using CompRs = SetDifference(typename Comp::RsSuperset, typename Comp::Ps);
719 … using OtherCompConstPs = SetDifference(typename OtherComp::Ps, typename OtherComp::NonConstRsPs);
720 using OtherCompRs = SetDifference(typename OtherComp::RsSuperset, typename OtherComp::Ps);
723 using type = If(Not(IsDisjoint(typename OtherComp::Ps, AllPs)),
[all …]
Dnormalized_component.defn.h42 fruit::impl::meta::Type<Params>...)>::Ps)>>(memory_pool), in NormalizedComponent()
/external/clang/test/SemaCXX/
Dcoroutines.cpp30 template<typename Promise, typename... Ps>
31 struct std::coroutine_traits<coro<Promise>, Ps...> {
/external/pdfium/xfa/fxfa/parser/
Dcxfa_ps.cpp34 XFA_Element::Ps, in CXFA_Ps()
/external/clang/include/clang/StaticAnalyzer/Core/
DCheckerManager.h51 template <typename RET, typename... Ps>
52 class CheckerFn<RET(Ps...)> {
53 typedef RET (*Func)(void *, Ps...);
58 RET operator()(Ps... ps) const { in operator()
/external/llvm-project/flang/lib/Parser/
Dbasic-parsers.h300 template <typename PA, typename... Ps> class AlternativesParser {
303 constexpr AlternativesParser(PA pa, Ps... ps) : ps_{pa, ps...} {} in AlternativesParser()
309 if constexpr (sizeof...(Ps) > 0) { in Parse()
327 if constexpr (J < sizeof...(Ps)) { in ParseRest()
333 const std::tuple<PA, Ps...> ps_;
336 template <typename... Ps> inline constexpr auto first(Ps... ps) { in first()
337 return AlternativesParser<Ps...>{ps...}; in first()
/external/icu/icu4c/source/data/translit/
DAny_Publishing.txt15 $makeRight = [[:Z:][:Ps:][:Pi:]$] ;
DHan_Spacedhan.txt17 $initialPunct = [:Ps:][:Pi:];
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/
DCheckerManager.h61 template <typename RET, typename... Ps>
62 class CheckerFn<RET(Ps...)> {
63 using Func = RET (*)(void *, Ps...);
72 RET operator()(Ps... ps) const { in operator()
/external/llvm-project/clang/lib/Tooling/Transformer/
DStencil.cpp329 template <typename... Ps>
330 explicit StencilImpl(Ps &&... Args) : Data(std::forward<Ps>(Args)...) {} in StencilImpl()
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h1224 template <typename... Ps> class VariadicOperatorMatcher {
1226 VariadicOperatorMatcher(DynTypedMatcher::VariadicOperator Op, Ps &&... Params)
1227 : Op(Op), Params(std::forward<Ps>(Params)...) {}
1232 getMatchers<T>(llvm::index_sequence_for<Ps...>()))
1244 std::tuple<Ps...> Params;
1254 VariadicOperatorMatcher<Ms...> operator()(Ms &&... Ps) const {
1257 return VariadicOperatorMatcher<Ms...>(Op, std::forward<Ms>(Ps)...);
/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h1406 template <typename... Ps> class VariadicOperatorMatcher {
1408 VariadicOperatorMatcher(DynTypedMatcher::VariadicOperator Op, Ps &&... Params)
1409 : Op(Op), Params(std::forward<Ps>(Params)...) {}
1414 getMatchers<T>(std::index_sequence_for<Ps...>()))
1426 std::tuple<Ps...> Params;
1436 VariadicOperatorMatcher<Ms...> operator()(Ms &&... Ps) const {
1439 return VariadicOperatorMatcher<Ms...>(Op, std::forward<Ms>(Ps)...);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DVOP2Instructions.td970 VOP2_Pseudo Ps = !cast<VOP2_Pseudo>(opName#"_e32");
971 let AsmString = asmName # !subst(", vcc", "", Ps.AsmOperands);
979 VOP3_Pseudo Ps = !cast<VOP3_Pseudo>(opName#"_e64");
980 let AsmString = asmName # Ps.AsmOperands;
988 VOP2_SDWA_Pseudo Ps = !cast<VOP2_SDWA_Pseudo>(opName#"_sdwa");
989 let AsmString = asmName # !subst(", vcc", "", Ps.AsmOperands);
996 VOP2_SDWA_Pseudo Ps = !cast<VOP2_SDWA_Pseudo>(opName#"_sdwa");
997 let AsmString = asmName # !subst("vcc", "vcc_lo", Ps.AsmOperands);
1006 VOP2_SDWA_Pseudo Ps = !cast<VOP2_SDWA_Pseudo>(opName#"_sdwa");
1007 let AsmString = asmName # Ps.AsmOperands;
[all …]
/external/icu/icu4c/source/data/region/
Dtr.txt291 XA{"Psödo Aksanlar"}
292 XB{"Psödo Bidi"}
/external/cldr/common/testData/transforms/
Dar-t-cs.txt153 Psáry بساري

1234