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

1 2 3

  /external/clang/test/Modules/Inputs/
redecl-merge-bottom.h 5 @protocol P4;
6 @protocol P4;
7 @protocol P4;
category_right_sub.h 11 @protocol P4
16 @interface Foo(LeftP4) <P4>
category_top.h 22 @protocol P3, P4;
redecl-merge-left.h 46 @protocol P3, P4;
  /external/chromium/base/
bind.h 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) {
71 new internal::InvokerStorage4<Sig, P1, P2, P3, P4>(
72 f, p1, p2, p3, p4));
75 template <typename Sig, typename P1, typename P2, typename P3, typename P4,
77 internal::InvokerStorageHolder<internal::InvokerStorage5<Sig,P1, P2, P3, P4,
79 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4,
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
refcount.h 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)
71 : T(p1, p2, p3, p4, p5), ref_count_(0) {
bind.h 259 class P4>
266 P4 p4)
271 p4_(p4) {}
280 P4 p4_;
283 #define FP_T(x) R (ObjectT::*x)(P1, P2, P3, P4)
289 class P4>
290 MethodFunctor4<ObjectT, FP_T(NONAME), R, P1, P2, P3, P4>
295 typename detail::identity<P4>::type p4) {
365 typename detail::identity<P4>::type p4, member in namespace:talk_base
385 typename detail::identity<P4>::type p4, member in namespace:talk_base
    [all...]
  /external/libgsm/inc/
unproto.h 17 #undef P4
proto.h 29 #undef P4
43 # define P4(x, a, b, c, d) (a, b, c, d)
57 # define P4(x, a, b, c, d) x a; b; c; d;
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 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)
62 : T(p1, p2, p3, p4, p5), ref_count_(0) {}
  /external/chromium_org/ppapi/shared_impl/
thread_aware_callback.h 89 template <class P1, class P2, class P3, class P4>
93 const P4& p4) {
94 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
97 template <class P1, class P2, class P3, class P4, class P5>
101 const P4& p4,
103 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4, p5));
proxy_lock.h 146 template <class ReturnType, class P1, class P2, class P3, class P4>
147 ReturnType CallWhileUnlocked(ReturnType (*function)(P1, P2, P3, P4),
151 const P4& p4) {
153 return function(p1, p2, p3, p4);
155 template <class ReturnType, class P1, class P2, class P3, class P4, class P5>
156 ReturnType CallWhileUnlocked(ReturnType (*function)(P1, P2, P3, P4, P5),
160 const P4& p4,
163 return function(p1, p2, p3, p4, p5)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CrossThreadTask.h 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;
164 typedef typename CrossThreadTaskTraits<P4>::ParamType Param4;
191 P4 m_parameter4;
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;
202 typedef typename CrossThreadTaskTraits<P4>::ParamType Param4;
231 P4 m_parameter4;
235 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4, typename P5, typename MP5, typename P6, typename MP6>
239 typedef CrossThreadTask6<P1, MP1, P2, MP2, P3, MP3, P4, MP4, P5, MP5, P6, MP6> CrossThreadTask
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 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))
133 R operator()(P1 p1, P2 p2, P3 p3, P4 p4)
135 return m_function(p1, p2, p3, p4);
139 R (*m_function)(P1, P2, P3, P4);
142 template<typename R, typename P1, typename P2, typename P3, typename P4, typename P5>
143 class FunctionWrapper<R (*)(P1, P2, P3, P4, P5)> {
147 explicit FunctionWrapper(R (*function)(P1, P2, P3, P4, P5)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrt.c 34 P4 = 0.145996192886612446982; /* 0x3fc2b000, 0xd4e4edd7 */
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
97 P4 = -1.65339022054652515390e-06, /* 0xBEBBBD41, 0xC5D26BF1 */
151 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));
s_exp2f.c 43 P4 = 0x1.3b2c9cp-7f;
133 tv = tv + u * (P1 + z * P2) + u * (z * z) * (P3 + z * P4);
  /external/libgsm/src/
debug.c 21 void gsm_debug_words P4( (name, from, to, ptr),
41 void gsm_debug_longwords P4( (name, from, to, ptr),
  /external/chromium_org/base/
bind.h 234 template <typename Functor, typename P1, typename P2, typename P3, typename P4>
242 typename internal::CallbackParamTraits<P4>::StorageType)>
244 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4) {
282 COMPILE_ASSERT(!internal::NeedsScopedRefptrButGetsRawPtr<P4>::value,
288 typename internal::CallbackParamTraits<P4>::StorageType)> BindState;
292 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4));
295 template <typename Functor, typename P1, typename P2, typename P3, typename P4,
304 typename internal::CallbackParamTraits<P4>::StorageType,
307 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4
    [all...]
  /external/chromium/testing/
gmock_mutant.h 549 typename P3, typename P4>
551 const Tuple4<P1, P2, P3, P4>& p,
556 typename P4>
558 const Tuple4<P1, P2, P3, P4>& p,
565 typename P3, typename P4, typename C1>
567 const Tuple4<P1, P2, P3, P4>& p,
572 typename P4, typename C1>
574 const Tuple4<P1, P2, P3, P4>& p,
581 typename P3, typename P4, typename C1, typename C2>
583 const Tuple4<P1, P2, P3, P4>& p
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 549 typename P3, typename P4>
551 const Tuple4<P1, P2, P3, P4>& p,
556 typename P4>
558 const Tuple4<P1, P2, P3, P4>& p,
565 typename P3, typename P4, typename C1>
567 const Tuple4<P1, P2, P3, P4>& p,
572 typename P4, typename C1>
574 const Tuple4<P1, P2, P3, P4>& p,
581 typename P3, typename P4, typename C1, typename C2>
583 const Tuple4<P1, P2, P3, P4>& p
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/gin/
function_template.h 89 typename P3 = void, typename P4 = void>
93 const base::Callback<R(P1, P2, P3, P4)>& callback,
97 const P4& a4) {
101 template<typename P1, typename P2, typename P3, typename P4>
102 struct Invoker<void, P1, P2, P3, P4> {
105 const base::Callback<void(P1, P2, P3, P4)>& callback,
109 const P4& a4) {
304 template<typename R, typename P1, typename P2, typename P3, typename P4>
305 struct Dispatcher<R(P1, P2, P3, P4)> {
312 typedef CallbackHolder<R(P1, P2, P3, P4)> HolderT
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
template_arity.hpp 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
quote.hpp 78 template< typename P1, typename P2, typename P3, typename P4 > class F
99 typename P1, typename P2, typename P3, typename P4
  /external/fdlibm/
e_exp.c 34 * R(z) ~ 2.0 + P1*z + P2*z**2 + P3*z**3 + P4*z**4 + P5*z**5
97 P4 = -1.65339022054652515390e-06, /* 0xBEBBBD41, 0xC5D26BF1 */
146 c = x - t*(P1+t*(P2+t*(P3+t*(P4+t*P5))));

Completed in 518 milliseconds

1 2 3