Searched defs:p3 (Results 26 - 50 of 192) sorted by relevance

12345678

/external/chromium_org/ppapi/shared_impl/
H A Dthread_aware_callback.h82 void RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3) { argument
83 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3));
89 const P3& p3,
91 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
97 const P3& p3,
100 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4, p5));
87 RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3, const P4& p4) argument
95 RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) argument
H A Dproxy_lock_unittest.cc61 void TestCallback_3(int p1, const std::string& p2, Param p3) { argument
H A Dproxy_lock.h141 const P3& p3) {
143 return function(p1, p2, p3);
150 const P3& p3,
153 return function(p1, p2, p3, p4);
160 const P3& p3,
164 return function(p1, p2, p3, p4, p5);
305 void CallWhileLocked(P1 p1, P2 p2, P3 p3) { argument
310 temp_callback->Run(p1, p2, p3);
138 CallWhileUnlocked(ReturnType (function)A1, A2, A3), const P1& p1, const P2& p2, const P3& p3) argument
147 CallWhileUnlocked(ReturnType (function)A1, A2, A3, A4), const P1& p1, const P2& p2, const P3& p3, const P4& p4) argument
157 CallWhileUnlocked(ReturnType (function)A1, A2, A3, A4, A5), const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) argument
H A Dthread_aware_callback_unittest.cc34 void TestCallback_3(int p1, const double* p2, bool* p3) { ++called_num; } argument
36 void TestCallback_4(int p1, const double* p2, bool* p3, TestParameter p4) { argument
42 bool* p3,
40 TestCallback_5(int p1, const double* p2, bool* p3, TestParameter p4, const TestParameter& p5) argument
/external/chromium_org/third_party/skia/gm/
H A Dpoints.cpp45 SkPaint p0, p1, p2, p3; local
51 p3.setColor(SK_ColorWHITE);
63 canvas->drawPoints(SkCanvas::kPoints_PointMode, n, pts, p3);
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_large_unittest.cc56 void* p3 = realloc(p2, size); local
57 CHECK(p3 == NULL);
H A Dmemalign_unittest.cc156 void* p3 = memalign(1<<21, 1<<19); local
159 CheckAlignment(p3, 1<<21);
162 Fill(p3, 1<<19, 'c');
165 CHECK(Valid(p3, 1<<19, 'c'));
168 free(p3);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_large_unittest.cc56 void* p3 = realloc(p2, size); local
57 CHECK(p3 == NULL);
H A Dmemalign_unittest.cc156 void* p3 = memalign(1<<21, 1<<19); local
159 CheckAlignment(p3, 1<<21);
162 Fill(p3, 1<<19, 'c');
165 CHECK(Valid(p3, 1<<19, 'c'));
168 free(p3);
/external/chromium_org/third_party/webrtc/base/
H A Drefcount.h44 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) { argument
48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) argument
49 : T(p1, p2, p3, p4), ref_count_(0) {
53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
54 : T(p1, p2, p3, p4, p5), ref_count_(0) {
H A Dcallback.h171 R operator()(P1 p1, P2 p2, P3 p3) { argument
174 return helper_->Run(p1, p2, p3);
181 virtual R Run(P1 p1, P2 p2, P3 p3) = 0;
185 virtual R Run(P1 p1, P2 p2, P3 p3) { argument
186 return functor_(p1, p2, p3);
204 R operator()(P1 p1, P2 p2, P3 p3, P4 p4) { argument
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) { argument
219 return functor_(p1, p2, p3, p
238 operator ()(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
252 Run(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
[all...]
/external/clang/test/SemaCXX/
H A Dtrailing-return-0x.cpp72 only<double> p3 = xx.g(0L, 1.0); variable
H A Drval-references-examples.cpp69 unique_ptr<int> p3 = make_unique_ptr<int>(17); local
80 p2 = p3; // expected-error{{overload resolution selected deleted operator '='}}
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp62 char g1, g2, g3, p1, p3; local
65 t.setp(&p1, &p3);
69 wchar_t g1, g2, g3, p1, p3; local
72 t.setp(&p1, &p3);
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp65 char g1, g2, g3, p1, p3; local
68 t.setp(&p1, &p3);
73 wchar_t g1, g2, g3, p1, p3; local
76 t.setp(&p1, &p3);
H A Dswap.pass.cpp75 char g1, g2, g3, p1, p3; local
78 t.setp(&p1, &p3);
83 wchar_t g1, g2, g3, p1, p3; local
86 t.setp(&p1, &p3);
/external/skia/gm/
H A Dpoints.cpp45 SkPaint p0, p1, p2, p3; local
51 p3.setColor(SK_ColorWHITE);
63 canvas->drawPoints(SkCanvas::kPoints_PointMode, n, pts, p3);
/external/valgrind/main/memcheck/tests/
H A Dleak-cases.c10 // p3 AAA DL / L
60 Node* p3; variable
H A Dvarinfo3.c40 void bar ( char* p1, char* p2, char* p3, char* p4 ) argument
44 croak(p3);
/external/ceres-solver/include/ceres/internal/
H A Dmanual_constructor.h134 inline void Init(const T1& p1, const T2& p2, const T3& p3) { argument
135 new(space()) Type(p1, p2, p3);
139 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4) { argument
140 new(space()) Type(p1, p2, p3, p4);
144 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
146 new(space()) Type(p1, p2, p3, p4, p5);
151 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
153 new(space()) Type(p1, p2, p3, p4, p5, p6);
158 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
160 new(space()) Type(p1, p2, p3, p
165 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8) argument
172 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9) argument
180 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10) argument
189 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8, const T9& p9, const T10& p10, const T11& p11) argument
[all...]
/external/chromium_org/base/memory/
H A Dmanual_constructor.h75 inline void Init(const T1& p1, const T2& p2, const T3& p3) { argument
76 new(space_.void_data()) Type(p1, p2, p3);
80 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4) { argument
81 new(space_.void_data()) Type(p1, p2, p3, p4);
85 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
87 new(space_.void_data()) Type(p1, p2, p3, p4, p5);
92 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
94 new(space_.void_data()) Type(p1, p2, p3, p4, p5, p6);
99 inline void Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, argument
101 new(space_.void_data()) Type(p1, p2, p3, p
106 Init(const T1& p1, const T2& p2, const T3& p3, const T4& p4, const T5& p5, const T6& p6, const T7& p7, const T8& p8) argument
[all...]
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall.cc264 intptr_t p3,
282 const intptr_t args[8] = {p0, p1, p2, p3, p4, p5, p6, p7};
288 const intptr_t args[6] = {p0, p1, p2, p3, p4, p5};
260 Call(int nr, intptr_t p0, intptr_t p1, intptr_t p2, intptr_t p3, intptr_t p4, intptr_t p5, intptr_t p6, intptr_t p7) argument
/external/clang/test/Analysis/inlining/
H A Dinline-defensive-checks.cpp63 void idc(int *p3) { argument
64 if (p3)
/external/clang/test/Sema/
H A Dcompound-literal.c14 static long *p3 = (long []){2,"x"}; // expected-warning {{incompatible pointer to integer conversion initializing 'long' with an expression of type 'char [2]'}} variable
/external/webrtc/src/common_audio/vad/
H A Dvad_sp.c73 int16_t *p1, *p2, *p3; local
80 p3 = age_ptr + i;
81 if (*p3 != 100) {
82 *p3 += 1;
85 p2 = p3 + 1;

Completed in 1310 milliseconds

12345678