Searched defs:p3 (Results 1 - 25 of 146) sorted by relevance

123456

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2593.js32 p3 = { x : 1 };
33 p2.__proto__ = p3
/external/chromium_org/v8/test/webkit/
H A Dcyclic-prototypes.js29 var o3 = { p3: 3 };
/external/clang/test/Analysis/
H A DNewDelete-variadic.cpp16 int *p3 = new int; // no warn local
H A DMalloc+MismatchedDeallocator_intersections.cpp23 int *p3 = new int; // no-warning local
H A DNewDelete+MismatchedDeallocator_intersections.cpp24 int *p3 = (int *)malloc(sizeof(int)); // no warn local
/external/chromium/base/
H A Dbind.h61 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3) { argument
64 f, p1, p2, p3));
69 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4) { argument
72 f, p1, p2, p3, p4));
79 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
83 f, p1, p2, p3, p4, p5));
90 Bind(Sig f, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
94 f, p1, p2, p3, p4, p5, p6));
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall.h22 intptr_t p3,
53 T3 p3 = 0,
59 SandboxSyscall(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { argument
64 (intptr_t)p3,
76 inline intptr_t SandboxSyscall(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
80 SandboxSyscall(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { argument
85 (intptr_t)p3,
91 inline intptr_t SandboxSyscall(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4)
94 inline intptr_t SandboxSyscall(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4) { argument
95 return SandboxSyscall(nr, p0, p1, p2, p3, p
102 SandboxSyscall(int nr, T0 p0, T1 p1, T2 p2, T3 p3) argument
[all...]
H A Dsyscall.cc176 intptr_t p3, intptr_t p4, intptr_t p5) {
187 const intptr_t args[6] = { p0, p1, p2, p3, p4, p5 };
174 SandboxSyscall(int nr, intptr_t p0, intptr_t p1, intptr_t p2, intptr_t p3, intptr_t p4, intptr_t p5) argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatQuad.h54 WebFloatQuad(const WebFloatPoint& p0, const WebFloatPoint& p1, const WebFloatPoint& p2, const WebFloatPoint& p3) argument
59 p[3] = p3;
69 p[2] = q.p3();
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dsmart_pointer_test.cc44 Ptr<Foo> p3; local
45 p3 = p1;
48 EXPECT_EQ(size_t(3), p3->ref_count_);
54 EXPECT_EQ(size_t(2), p3->ref_count_);
57 p3.Release();
59 EXPECT_EQ(NULL, p3.p_);
/external/sfntly/cpp/src/test/
H A Dsmart_pointer_test.cc44 Ptr<Foo> p3; local
45 p3 = p1;
48 EXPECT_EQ(size_t(3), p3->ref_count_);
54 EXPECT_EQ(size_t(2), p3->ref_count_);
57 p3.Release();
59 EXPECT_EQ(NULL, p3.p_);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_TimeZone.java75 public int getOffset(int p1, int p2, int p3, int p4, int p5, int p6) { argument
/external/chromium/chrome/browser/sync/sessions/
H A Dordered_commit_set_unittest.cc64 OrderedCommitSet::Projection p1, p2, p3; local
67 p3 = commit_set1.GetCommitIdProjection(GROUP_DB);
68 EXPECT_TRUE(p1.size() + p2.size() + p3.size() == expected.size()) << "Sum"
84 for (size_t i = 0; i < p3.size(); i++) {
86 EXPECT_TRUE(expected[p3[i]] == commit_set1.GetCommitIdAt(p3[i]))
87 << "expected[p3[i]] = " << expected[p3[i]]
88 << ", commit_set1[p3[i]] = " << commit_set1.GetCommitIdAt(p3[
[all...]
/external/chromium_org/base/
H A Dbind.h187 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3) { argument
231 new BindState(internal::MakeRunnable(functor), p1, p2, p3));
244 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4) { argument
292 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4));
307 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
360 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4, p5));
376 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
433 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p4, p5, p6));
450 Bind(Functor functor, const P1& p1, const P2& p2, const P3& p3, const P4& p4, argument
511 new BindState(internal::MakeRunnable(functor), p1, p2, p3, p
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c49 float p1, p2, p3, p4, p5, p6; local
60 p3 = 100.0 * (float) lp_count.nr_partially_covered_64 / (float) total_64;
70 debug_printf("llvmpipe: nr_partially_covered_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_64, p3, total_64);
79 p3 = 100.0 * (float) lp_count.nr_partially_covered_16 / (float) total_16;
83 debug_printf("llvmpipe: nr_partially_covered_16x16: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_16, p3, total_16);
92 p3 = 100.0 * (float) lp_count.nr_partially_covered_4 / (float) total_4;
97 debug_printf("llvmpipe: nr_partially_covered_4x4: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_4, p3, total_4);
/external/clang/test/Analysis/diagnostics/
H A Dderef-track-symbolic-region.cpp33 int *p3 = p2; // expected-note {{'p3' initialized to a null pointer value}} local
34 return *p3; // expected-warning {{Dereference of null pointer}}
/external/clang/test/SemaCXX/
H A Dcxx11-ast-print.cpp25 // CHECK: const char *p3 = u8"bar3"_foo;
26 const char *p3 = u8"bar3"_foo; variable
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c49 float p1, p2, p3, p4, p5, p6; local
60 p3 = 100.0 * (float) lp_count.nr_partially_covered_64 / (float) total_64;
70 debug_printf("llvmpipe: nr_partially_covered_64x64: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_64, p3, total_64);
79 p3 = 100.0 * (float) lp_count.nr_partially_covered_16 / (float) total_16;
83 debug_printf("llvmpipe: nr_partially_covered_16x16: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_16, p3, total_16);
92 p3 = 100.0 * (float) lp_count.nr_partially_covered_4 / (float) total_4;
97 debug_printf("llvmpipe: nr_partially_covered_4x4: %9u (%3.0f%% of %u)\n", lp_count.nr_partially_covered_4, p3, total_4);
/external/webrtc/src/system_wrappers/interface/
H A Dref_count.h55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {} argument
58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {} argument
61 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
62 : T(p1, p2, p3, p4, p5), ref_count_(0) {}
/external/chromium/base/win/
H A Dscoped_comptr_unittest.cc92 Ptr p3 = p2; local
95 p3 = p2;
/external/chromium_org/base/win/
H A Dscoped_comptr_unittest.cc90 Ptr p3 = p2; local
93 p3 = p2;
/external/chromium_org/ppapi/shared_impl/
H A Dthread_aware_callback.h85 void RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3) { argument
86 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3));
92 const P3& p3,
94 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4));
100 const P3& p3,
103 InternalRunOnTargetThread(base::Bind(func_, p1, p2, p3, p4, p5));
90 RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3, const P4& p4) argument
98 RunOnTargetThread(const P1& p1, const P2& p2, const P3& p3, const P4& p4, const P5& p5) argument
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Drefcount.h61 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) { argument
65 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) argument
66 : T(p1, p2, p3, p4), ref_count_(0) {
70 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) argument
71 : T(p1, p2, p3, p4, p5), ref_count_(0) {
/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);
/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);

Completed in 819 milliseconds

123456