Home
last modified time | relevance | path

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

123456789

/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/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/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/
DReservoirSamplerTest.cpp50 double Ps = 1.0 / Items.size(); in TEST() local
53 Sum += Ys * Ys / Ps; in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonConstPropagation.cpp457 uint32_t Ps = !isTop() ? properties() in convertToProperty() local
459 if (Ps != ConstantProperties::Unknown) { in convertToProperty()
460 Properties = Ps; in convertToProperty()
472 uint32_t Ps = properties(); in print() local
473 if (Ps & ConstantProperties::Zero) in print()
475 if (Ps & ConstantProperties::NonZero) in print()
477 if (Ps & ConstantProperties::Finite) in print()
479 if (Ps & ConstantProperties::Infinity) in print()
481 if (Ps & ConstantProperties::NaN) in print()
483 if (Ps & ConstantProperties::PosOrZero) in print()
[all …]
/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/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/icu/icu4c/source/data/translit/
DAny_Publishing.txt14 $makeRight = [[:Z:][:Ps:][:Pi:]$] ;
DHan_Spacedhan.txt16 $initialPunct = [:Ps:][:Pi:];
DGrek_Latn_UNGEGN.txt55 Ψ } $beforeLower ↔ Ps ;
/external/pdfium/xfa/fxfa/parser/
Dcxfa_ps.cpp32 XFA_Element::Ps, in CXFA_Ps()
/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/honggfuzz/examples/apache-httpd/corpus_http2/
De0ea5b17853fe29ed565bdc2a431af80.000012d7.honggfuzz.cov12 …V�y9n!����J��d�E��;���oY)!b|yW&m�k�٨�^�8����tZ�us�k6"�]���|^��H�q �v���??�Ps�n1)uU!&�\ ���
23 …V�y9n!����J��d�E��;���oY)!b|yW&m�k�٨�^�8����tZ�us�k6"�]���|^��H�q �v���??�Ps�n1)uU!&�\ ���
Db43a17bf17bca69685b4e1821a3e3543.0000173a.honggfuzz.cov16 …�5�~�X���Zk���7���dB���V�Μ����|��r�~Bf��I���o���-�]$�.R�*ܕ���b]���Ps���z��D ���p��v�П…
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dfa-t-cs.txt153 Psáry پساری
Dam-t-cs.txt153 Psáry ፕሳ፞ር
Dja-t-cs.txt150 Psáry プサーリ
Dar-t-cs.txt153 Psáry بساري
Dchr-t-cs.txt153 Psáry ᏈᏌᎠᎵ
/external/ImageMagick/PerlMagick/t/reference/read/
Dinput_uyvy.miff14Ps�js���{p�{F��F��^�}��}lz�Wz�,,.}�.}�-|�.|�-~�-~�-~�-~�-~�-~�-}�.}�.}�/}�1}�0}�2|�5|�4z�7z�7x…
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.td1343 : CRInst<(outs PredRegs:$Pd), (ins PredRegs:$Ps),
1344 "$Pd = " # MnOp # "($Ps)", [], "", CR_tc_2early_SLOT23> {
1346 bits<2> Ps;
1352 let Inst{17-16} = Ps;
1361 def: Pat<(i1 (not (i1 PredRegs:$Ps))),
1362 (C2_not PredRegs:$Ps)>;
1366 : CRInst<(outs PredRegs:$Pd), (ins PredRegs:$Ps, PredRegs:$Pt),
1367 "$Pd = " # MnOp # "($Ps, " # !if (IsNeg,"!","") # "$Pt)",
1370 bits<2> Ps;
1377 let Inst{17-16} = !if(Rev,Pt,Ps); // Rs and Rt are reversed for some
[all …]
DHexagonAsmPrinter.cpp320 MCOperand &Ps = Inst.getOperand(1); in HexagonProcessInstruction() local
322 MappedInst.addOperand(Ps); in HexagonProcessInstruction()
DRDFLiveness.cpp331 auto Ps = BA.Addr->members_if(DFG.IsCode<NodeAttrs::Phi>, DFG); in computePhiInfo() local
332 Phis.insert(Phis.end(), Ps.begin(), Ps.end()); in computePhiInfo()

123456789