Searched refs:P2 (Results 1 - 25 of 159) sorted by relevance

1234567

/external/clang/test/Sema/
H A Dwarn-cast-align.c16 const volatile void *P2 = P; local
17 char *d = (char*) P2;
18 short *e = (short*) P2;
19 int *f = (int*) P2;
21 const char *g = (const char*) P2;
22 const short *h = (const short*) P2;
23 const int *i = (const int*) P2;
25 const volatile char *j = (const volatile char*) P2;
26 const volatile short *k = (const volatile short*) P2;
27 const volatile int *l = (const volatile int*) P2;
[all...]
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-top.h11 @protocol P2; variable
12 @protocol P2; variable
H A Dcategory_right_sub.h1 @interface Foo(RightSub) <P2>
H A Dcategory_top.h19 @protocol P2
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
H A Dconst_pair_U_V_cxx03.pass.cpp23 typedef std::pair<double, long> P2; typedef
25 const P2 p2 = p1;
H A Dpiecewise.pass.cpp28 typedef std::pair<int*, int> P2; typedef
29 typedef std::pair<P1, P2> P3;
33 assert(p3.second == P2(nullptr, 4));
H A Dassign_const_pair_U_V.pass.cpp23 typedef std::pair<double, long> P2; typedef
25 P2 p2;
H A Dassign_rv_pair_U_V.pass.cpp36 typedef std::pair<std::unique_ptr<Base>, long> P2; typedef
38 P2 p2;
H A Dspecial_member_generation_test.pass.cpp35 using P2 = std::pair<int, T1>;
38 static_assert(std::is_copy_constructible<P2>::value == CanCopy, "");
39 static_assert(std::is_move_constructible<P2>::value == CanMove, "");
83 using P2 = std::pair<int, T1>;
86 static_assert(std::is_copy_assignable<P2>::value == CanCopy, "");
87 static_assert(std::is_move_assignable<P2>::value == CanMove, "");
H A Ddefault.pass.cpp51 using P2 = std::pair<NoDefault, int>;
52 static_assert(!std::is_default_constructible<P2>::value, "");
/external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
H A Dis_equal.pass.cpp48 auto& P2 = R2.getController(); local
53 assert(P2.checkIsEqualCalledEq(0));
56 assert(P2.checkIsEqualCalledEq(1));
65 auto& P2 = R2.getController(); local
70 assert(P2.checkIsEqualCalledEq(0));
73 assert(P2.checkIsEqualCalledEq(1));
82 auto& P2 = R2.getController(); local
87 assert(P2.checkIsEqualCalledEq(0));
90 assert(P2.checkIsEqualCalledEq(1));
/external/clang/test/Analysis/
H A Dregion-store.cpp15 class P2 { class
22 class Derived: public P1, public P2 {
/external/clang/test/Misc/
H A Ddiagnostic-crash.cpp17 template <bool del, class R, class T, class P1, class P2, class A1>
20 template <bool del, class T, class P1, class P2, class A1>
21 class AAAAAAAResultCallback_2_1< del, void, T, P1, P2, A1> :
26 template <class T1, class T2, class R, class P1, class P2, class A1>
27 inline typename AAAAAAAResultCallback_2_1<true, R, T1, P1, P2, A1>::base*
28 NewCallback(T1* obj, R(T2::* member)(P1, P2, A1), const P1& p1, const P2& p2) {}
/external/webrtc/webrtc/system_wrappers/include/
H A Dref_count.h51 template<typename P1, typename P2>
52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {}
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)
/external/clang/test/CodeGen/
H A Dpartial-reinitialization2.c6 struct P2 { int a, b, c; } g2 = { 1, 2, 3 }; struct
7 struct LP2 { struct P2 p2; };
8 struct LP2P2 { struct P2 p1, p2; };
9 union UP2 { struct P2 p2; };
36 // CHECK: call void @llvm.memcpy{{.*}}%struct.P2* @g2{{.*}}i64 12, i32 {{[0-9]}}, i1 false)
43 struct P2 get235()
45 struct P2 p = { 2, 3, 5 };
/external/webrtc/webrtc/base/
H A Dbind.h281 class P2>
286 P2 p2)
296 typename rtc::remove_reference<P2>::type p2_;
301 class P2>
304 Functor2(const FunctorT& functor, P1 p1, P2 p2)
313 typename rtc::remove_reference<P2>::type p2_;
317 #define FP_T(x) R (ObjectT::*x)(P1, P2)
321 class P2>
322 MethodFunctor2<ObjectT, FP_T(NONAME), R, P1, P2>
325 typename detail::identity<P2>
[all...]
H A Drefcount.h39 template<typename P1, typename P2>
40 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {
43 template<typename P1, typename P2, typename P3>
44 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {
47 template<typename P1, typename P2, typename P3, typename P4>
48 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4)
52 template<typename P1, typename P2, typename P3, typename P4, typename P5>
53 RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5)
57 template<typename P1, typename P2, typename P3, typename P4, typename P5,
59 RefCountedObject(P1 p1, P2 p
[all...]
H A Dcallback.h131 class P2>
138 R operator()(P1 p1, P2 p2) {
148 virtual R Run(P1 p1, P2 p2) = 0;
152 virtual R Run(P1 p1, P2 p2) {
162 class P2,
170 R operator()(P1 p1, P2 p2, P3 p3) {
180 virtual R Run(P1 p1, P2 p2, P3 p3) = 0;
184 virtual R Run(P1 p1, P2 p2, P3 p3) {
194 class P2,
203 R operator()(P1 p1, P2 p
[all...]
/external/tpm2/
H A DCommit.c31 TPMS_ECC_POINT P2; local
56 // Make sure that both parts of P2 are present if either is present
75 // Set up P2 if s2 and Y2 are provided
78 pP2 = &P2;
80 // copy y2 for P2
81 MemoryCopy2B(&P2.y.b, &in->y2.b, sizeof(P2.y.t.buffer));
85 P2.x.t.size = CryptHashBlock(eccKey->publicArea.nameAlg,
89 P2.x.t.buffer);
93 if(P2
[all...]
/external/libffi/src/bfin/
H A Dsysv.S116 P2 = [FP-20]; define
123 R0 = [P2+.rettable@GOT17M4];
125 P2 = R0; define
126 R1 = [P2];
128 P2 = [FP+-20]; define
129 R0 = [P2+.rettable@GOT17M4];
131 P2 = R0; define
134 jump (P2);
/external/python/cpython2/Modules/_ctypes/libffi/src/bfin/
H A Dsysv.S116 P2 = [FP-20]; define
123 R0 = [P2+.rettable@GOT17M4];
125 P2 = R0; define
126 R1 = [P2];
128 P2 = [FP+-20]; define
129 R0 = [P2+.rettable@GOT17M4];
131 P2 = R0; define
134 jump (P2);
/external/python/cpython3/Modules/_ctypes/libffi/src/bfin/
H A Dsysv.S116 P2 = [FP-20]; define
123 R0 = [P2+.rettable@GOT17M4];
125 P2 = R0; define
126 R1 = [P2];
128 P2 = [FP+-20]; define
129 R0 = [P2+.rettable@GOT17M4];
131 P2 = R0; define
134 jump (P2);
/external/swiftshader/src/Renderer/
H A DPolygon.hpp24 Polygon(const float4 *P0, const float4 *P1, const float4 *P2) argument
28 P[0][2] = P2;
/external/clang/test/SemaCXX/
H A Dattr-gnu.cpp10 auto P2 = new int * __sptr; // Ok local
/external/libgsm/inc/
H A Dunproto.h15 #undef P2 macro

Completed in 1092 milliseconds

1234567