Home
last modified time | relevance | path

Searched refs:P2 (Results 1 – 9 of 9) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/
Dupb.h4169 template <class R, class P1, class P2, R F(P1, P2), class I>
4173 static R Call(P1 p1, P2 p2) { return F(p1, p2); }
4176 template <class R, class P1, class P2, class P3, R F(P1, P2, P3), class I>
4180 static R Call(P1 p1, P2 p2, P3 p3) { return F(p1, p2, p3); }
4183 template <class R, class P1, class P2, class P3, class P4, R F(P1, P2, P3, P4),
4188 static R Call(P1 p1, P2 p2, P3 p3, P4 p4) { return F(p1, p2, p3, p4); }
4191 template <class R, class P1, class P2, class P3, class P4, class P5,
4192 R F(P1, P2, P3, P4, P5), class I>
4196 static R Call(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {
4217 template <class R, class P1, class P2, R F(P1, P2), class I>
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/
Dupb.h4865 template <class R, class P1, class P2, R F(P1, P2), class I>
4869 static R Call(P1 p1, P2 p2) { return F(p1, p2); }
4872 template <class R, class P1, class P2, class P3, R F(P1, P2, P3), class I>
4876 static R Call(P1 p1, P2 p2, P3 p3) { return F(p1, p2, p3); }
4879 template <class R, class P1, class P2, class P3, class P4, R F(P1, P2, P3, P4),
4884 static R Call(P1 p1, P2 p2, P3 p3, P4 p4) { return F(p1, p2, p3, p4); }
4887 template <class R, class P1, class P2, class P3, class P4, class P5,
4888 R F(P1, P2, P3, P4, P5), class I>
4892 static R Call(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {
4913 template <class R, class P1, class P2, R F(P1, P2), class I>
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dcallback.h349 template <typename R, typename T, typename P1, typename P2, typename P3,
353 typedef R (T::*MethodType)(P1, P2, P3, P4, P5, A1, A2);
355 P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) in MethodResultCallback_5_2()
378 typename remove_reference<P2>::type p2_;
522 template <typename R, typename T, typename P1, typename P2, typename P3,
525 T* object, R (T::*function)(P1, P2, P3, P4, P5, A1, A2), in NewPermanentCallback() argument
527 typename internal::InternalConstRef<P2>::type p2, in NewPermanentCallback()
531 return new internal::MethodResultCallback_5_2<R, T, P1, P2, P3, P4, P5, A1, in NewPermanentCallback()
/frameworks/base/core/java/android/widget/
DScroller.java107 private static final float P2 = 1.0f - END_TENSION * (1.0f - INFLEXION); field in Scroller
132 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
149 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
DOverScroller.java602 private static final float P2 = 1.0f - END_TENSION * (1.0f - INFLEXION); field in OverScroller.SplineOverScroller
623 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
640 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccCarrierPrivilegeRulesTest.java538 private static final int P2 = 0x40; field in UiccCarrierPrivilegeRulesTest
581 eq(P2), anyInt(), anyString(), any(Message.class)); in testAID_RetransmitLogicalChannel()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccCarrierPrivilegeRules.java67 private static final int P2 = 0x40; field in UiccCarrierPrivilegeRules
441 mUiccProfile.iccTransmitApduLogicalChannel(mChannelId, CLA, COMMAND, P1, P2, P3, in handleMessage()
/frameworks/base/core/tests/utiltests/src/com/android/internal/util/
DStateMachineTest.java1908 class P2 extends State { class in StateMachineTest.Hsm1
1945 P2 mP2 = new P2();
/frameworks/av/media/codec2/tests/
DC2Param_test.cpp1873 const C2NumbersPortTuning *P2[] = { outp1.get(), inp1.get() }; in TEST_F() local
1874 for (const auto p : P2) { in TEST_F()