HomeSort by relevance Sort by last modified time
    Searched refs:P4 (Results 1 - 25 of 54) 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;
redecl-merge-right.h 51 @protocol P4, P3;
  /external/chromium_org/third_party/webrtc/base/
refcount.h 47 template<typename P1, typename P2, typename P3, typename P4>
48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4)
49 : T(p1, p2, p3, p4), ref_count_(0) {
52 template<typename P1, typename P2, typename P3, typename P4, typename P5>
53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
54 : T(p1, p2, p3, p4, p5), ref_count_(0) {
bind.h 360 class P4>
367 P4 p4)
372 p4_(p4) {}
381 P4 p4_;
388 class P4>
391 Functor4(const FunctorT& functor, P1 p1, P2 p2, P3 p3, P4 p4)
396 p4_(p4) {}
404 P4 p4_
535 typename detail::identity<P4>::type p4, member in namespace:rtc
555 typename detail::identity<P4>::type p4, member in namespace:rtc
575 typename detail::identity<P4>::type p4, member in namespace:rtc
    [all...]
callback.h 197 class P4>
204 R operator()(P1 p1, P2 p2, P3 p3, P4 p4) {
207 return helper_->Run(p1, p2, p3, p4);
214 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) = 0;
218 virtual R Run(P1 p1, P2 p2, P3 p3, P4 p4) {
219 return functor_(p1, p2, p3, p4);
230 class P4,
    [all...]
  /external/chromium_org/third_party/webrtc/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/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/chromium_org/third_party/WebKit/Source/core/dom/
ExecutionContextTask.h 110 template<typename FunctionType, typename P1, typename P2, typename P3, typename P4>
113 const P1& parameter1, const P2& parameter2, const P3& parameter3, const P4& parameter4)
122 template<typename FunctionType, typename P1, typename P2, typename P3, typename P4, typename P5>
125 const P1& parameter1, const P2& parameter2, const P3& parameter3, const P4& parameter4, const P5& parameter5)
135 template<typename FunctionType, typename P1, typename P2, typename P3, typename P4, typename P5, typename P6>
138 const P1& parameter1, const P2& parameter2, const P3& parameter3, const P4& parameter4, const P5& parameter5, const P6& parameter6)
CrossThreadTask.h 175 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4>
179 typedef CrossThreadTask4<P1, MP1, P2, MP2, P3, MP3, P4, MP4> CrossThreadTask;
183 typedef typename CrossThreadTaskTraits<P4>::ParamType Param4;
210 P4 m_parameter4;
213 template<typename P1, typename MP1, typename P2, typename MP2, typename P3, typename MP3, typename P4, typename MP4, typename P5, typename MP5>
217 typedef CrossThreadTask5<P1, MP1, P2, MP2, P3, MP3, P4, MP4, P5, MP5> CrossThreadTask;
221 typedef typename CrossThreadTaskTraits<P4>::ParamType Param4;
250 P4 m_parameter4;
254 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>
258 typedef CrossThreadTask6<P1, MP1, P2, MP2, P3, MP3, P4, MP4, P5, MP5, P6, MP6> CrossThreadTask
    [all...]
  /external/chromium_org/ppapi/shared_impl/
thread_aware_callback.h 86 template <class P1, class P2, class P3, class P4>
90 const P4& p4) {
91 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
94 template <class P1, class P2, class P3, class P4, class P5>
98 const P4& p4,
100 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4, p5));
proxy_lock.h 146 class P2, class P3, class P4>
151 const P4& p4) {
153 return function(p1, p2, p3, p4);
156 class P1, class P2, class P3, class P4, class P5>
161 const P4& p4,
164 return function(p1, p2, p3, p4, p5);
  /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...]
  /external/chromium_org/gin/
function_template.h 92 typename P3 = void, typename P4 = void, typename P5 = void,
97 const base::Callback<R(P1, P2, P3, P4, P5, P6)>& callback,
101 const P4& a4,
107 template<typename P1, typename P2, typename P3, typename P4, typename P5,
109 struct Invoker<void, P1, P2, P3, P4, P5, P6> {
112 const base::Callback<void(P1, P2, P3, P4, P5, P6)>& callback,
116 const P4& a4,
123 template<typename R, typename P1, typename P2, typename P3, typename P4,
125 struct Invoker<R, P1, P2, P3, P4, P5, void> {
128 const base::Callback<R(P1, P2, P3, P4, P5)>& callback
    [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 228 template <typename Functor, typename P1, typename P2, typename P3, typename P4>
236 typename internal::CallbackParamTraits<P4>::StorageType)>
238 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4) {
276 COMPILE_ASSERT(!internal::NeedsScopedRefptrButGetsRawPtr<P4>::value,
282 typename internal::CallbackParamTraits<P4>::StorageType)> BindState;
286 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4));
289 template <typename Functor, typename P1, typename P2, typename P3, typename P4,
298 typename internal::CallbackParamTraits<P4>::StorageType,
301 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4
    [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/v8/test/cctest/compiler/
call-tester.h 142 MachineType p3 = kMachNone, MachineType p4 = kMachNone) {
145 MachineType types[] = {p0, p1, p2, p3, p4};
202 typename P4>
203 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4) {
206 Simulator::CallArgument(p3), Simulator::CallArgument(p4),
212 int32_t p3 = 0, int32_t p4 = 0) {
214 return static_cast<uintptr_t>(simulator->Call(f, 4, p1, p2, p3, p4));
238 typename P4>
239 R DoCall(F* f, P1 p1, P2 p2, P3 p3, P4 p4)
    [all...]
  /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 5542 milliseconds

1 2 3