HomeSort by relevance Sort by last modified time
    Searched refs:P3 (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/clang/test/Modules/Inputs/
category_left_sub.h 5 @protocol P3
10 @interface Foo(LeftP3) <P3>
category_top.h 22 @protocol P3, P4;
redecl-merge-right.h 51 @protocol P4, P3;
52 @protocol P3;
53 @protocol P3;
54 @protocol P3;
redecl-merge-left.h 46 @protocol P3, P4;
48 @protocol P3;
  /external/chromium/base/
bind.h 59 template <typename Sig, typename P1, typename P2, typename P3>
60 internal::InvokerStorageHolder<internal::InvokerStorage3<Sig,P1, P2, P3> >
61 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3) {
63 new internal::InvokerStorage3<Sig, P1, P2, P3>(
64 f, p1, p2, p3));
67 template <typename Sig, typename P1, typename P2, typename P3, typename P4>
68 internal::InvokerStorageHolder<internal::InvokerStorage4<Sig,P1, P2, P3, P4> >
69 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
piecewise.pass.cpp 28 typedef std::pair<P1, P2> P3;
29 P3 p3(std::piecewise_construct, std::tuple<int, int*>(3, nullptr),
31 assert(p3.first == P1(3, nullptr));
32 assert(p3.second == P2(nullptr, 4));
  /external/chromium_org/third_party/libjingle/source/talk/base/
refcount.h 60 template<typename P1, typename P2, typename P3>
61 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {
64 template<typename P1, typename P2, typename P3, typename P4>
65 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4)
66 : T(p1, p2, p3, p4), ref_count_(0) {
69 template<typename P1, typename P2, typename P3, typename P4, typename P5>
70 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5
    [all...]
bind.h 201 class P3>
207 P3 p3)
211 p3_(p3) {}
219 P3 p3_;
222 #define FP_T(x) R (ObjectT::*x)(P1, P2, P3)
227 class P3>
228 MethodFunctor3<ObjectT, FP_T(NONAME), R, P1, P2, P3>
232 typename detail::identity<P3>::type p3) {
294 typename detail::identity<P3>::type p3, member in namespace:talk_base
312 typename detail::identity<P3>::type p3, member in namespace:talk_base
364 typename detail::identity<P3>::type p3, member in namespace:talk_base
384 typename detail::identity<P3>::type p3, member in namespace:talk_base
    [all...]
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 54 template<typename P1, typename P2, typename P3>
55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {}
57 template<typename P1, typename P2, typename P3, typename P4>
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {}
60 template<typename P1, typename P2, typename P3, typename P4, typename P5>
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5
    [all...]
  /external/chromium_org/ppapi/shared_impl/
thread_aware_callback.h 84 template <class P1, class P2, class P3>
85 void RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3) {
86 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3));
89 template <class P1, class P2, class P3, class P4>
92 const P3& p3,
94 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
97 template <class P1, class P2, class P3, class P4, class P5>
100 const P3& p3
    [all...]
proxy_lock.h 107 template <class ReturnType, class P1, class P2, class P3>
108 ReturnType CallWhileUnlocked(ReturnType (*function)(P1, P2, P3),
111 const P3& p3) {
113 return function(p1, p2, p3);
115 template <class ReturnType, class P1, class P2, class P3, class P4>
116 ReturnType CallWhileUnlocked(ReturnType (*function)(P1, P2, P3, P4),
119 const P3& p3,
122 return function(p1, p2, p3, p4)
    [all...]
  /external/libgsm/inc/
unproto.h 16 #undef P3
proto.h 28 #undef P3
42 # define P3(x, a, b, c) (a, b, c)
56 # define P3(x, a, b, c) x a; b; c;
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 104 template<typename R, typename P1, typename P2, typename P3>
105 class FunctionWrapper<R (*)(P1, P2, P3)> {
109 explicit FunctionWrapper(R (*function)(P1, P2, P3))
114 R operator()(P1 p1, P2 p2, P3 p3)
116 return m_function(p1, p2, p3);
120 R (*m_function)(P1, P2, P3);
123 template<typename R, typename P1, typename P2, typename P3, typename P4>
124 class FunctionWrapper<R (*)(P1, P2, P3, P4)> {
128 explicit FunctionWrapper(R (*function)(P1, P2, P3, P4)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CrossThreadTask.h 121 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3>
125 typedef CrossThreadTask3<P1, MP1, P2, MP2, P3, MP3> CrossThreadTask;
128 typedef typename CrossThreadTaskTraits<P3>::ParamType Param3;
153 P3 m_parameter3;
156 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4>
160 typedef CrossThreadTask4<P1, MP1, P2, MP2, P3, MP3, P4, MP4> CrossThreadTask;
163 typedef typename CrossThreadTaskTraits<P3>::ParamType Param3;
190 P3 m_parameter3;
194 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4, typename P5, typename MP5>
198 typedef CrossThreadTask5<P1, MP1, P2, MP2, P3, MP3, P4, MP4, P5, MP5> CrossThreadTask
    [all...]
  /external/chromium_org/base/
bind.h 178 template <typename Functor, typename P1, typename P2, typename P3>
185 typename internal::CallbackParamTraits<P3>::StorageType)>
187 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3) {
222 COMPILE_ASSERT(!internal::NeedsScopedRefptrButGetsRawPtr<P3>::value,
227 typename internal::CallbackParamTraits<P3>::StorageType)> BindState;
231 new BindState(internal::MakeRunnable(functor), p1, p2, p3));
234 template <typename Functor, typename P1, typename P2, typename P3, typename P4>
241 typename internal::CallbackParamTraits<P3>::StorageType,
244 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4)
    [all...]
  /external/chromium/testing/
gmock_mutant.h 435 typename P3>
437 const Tuple3<P1, P2, P3>& p,
441 template <typename R, typename Function, typename P1, typename P2, typename P3>
443 const Tuple3<P1, P2, P3>& p,
450 typename P3, typename C1>
452 const Tuple3<P1, P2, P3>& p,
456 template <typename R, typename Function, typename P1, typename P2, typename P3,
459 const Tuple3<P1, P2, P3>& p,
466 typename P3, typename C1, typename C2>
468 const Tuple3<P1, P2, P3>& p
3187 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3269 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3353 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3437 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3521 const P1& p1, const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3608 const P1& p1, const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3696 const P1& p1, const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3781 const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
3865 const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
3949 const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4036 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4125 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4217 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4311 A6), const P1& p1, const P2& p2, const P3& p3, const P4& p4, member in namespace:testing
4399 const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) { member in namespace:testing
4488 const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) { member in namespace:testing
4580 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4675 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4771 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4867 A5), const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4966 A5, A6), const P1& p1, const P2& p2, const P3& p3, const P4& p4, member in namespace:testing
    [all...]
  /external/chromium_org/testing/
gmock_mutant.h 435 typename P3>
437 const Tuple3<P1, P2, P3>& p,
441 template <typename R, typename Function, typename P1, typename P2, typename P3>
443 const Tuple3<P1, P2, P3>& p,
450 typename P3, typename C1>
452 const Tuple3<P1, P2, P3>& p,
456 template <typename R, typename Function, typename P1, typename P2, typename P3,
459 const Tuple3<P1, P2, P3>& p,
466 typename P3, typename C1, typename C2>
468 const Tuple3<P1, P2, P3>& p
3187 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3269 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3353 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3437 const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3521 const P1& p1, const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3608 const P1& p1, const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3696 const P1& p1, const P2& p2, const P3& p3, const P4& p4) { member in namespace:testing
3781 const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
3865 const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
3949 const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4036 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4125 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4217 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) { member in namespace:testing
4311 A6), const P1& p1, const P2& p2, const P3& p3, const P4& p4, member in namespace:testing
4399 const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) { member in namespace:testing
4488 const P2& p2, const P3& p3, const P4& p4, const P5& p5, const P6& p6) { member in namespace:testing
4580 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4675 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4771 const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4867 A5), const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5, member in namespace:testing
4966 A5, A6), const P1& p1, const P2& p2, const P3& p3, const P4& p4, member in namespace:testing
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
quote.hpp 61 template< typename P1, typename P2, typename P3 > class F
78 template< typename P1, typename P2, typename P3, typename P4 > class F
99 typename P1, typename P2, typename P3, typename P4
template_arity.hpp 45 template< typename P1, typename P2, typename P3 > class F
52 template< typename P1, typename P2, typename P3, typename P4 > class F
60 typename P1, typename P2, typename P3, typename P4
71 typename P1, typename P2, typename P3, typename P4
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrt.c 33 P3 = -0.758397934778766047437, /* 0xbfe844cb, 0xbee751d9 */
89 t=t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4));
e_exp.c 37 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
96 P3 = 6.61375632143793436117e-05, /* 0x3F11566A, 0xAF25DE2C */
151 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
s_exp2f.c 42 P3 = 0x1.c6b348p-5f,
133 tv = tv + u * (P1 + z * P2) + u * (z * z) * (P3 + z * P4);
  /external/libgsm/src/
gsm_option.c 14 int gsm_option P3((r, opt, val), gsm r, int opt, int * val)
  /external/fdlibm/
e_exp.c 34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
96 P3 = 6.61375632143793436117e-05, /* 0x3F11566A, 0xAF25DE2C */
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));

Completed in 7462 milliseconds

1 2 3