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

1 2 3 4 5 6

  /external/clang/test/Sema/
warn-cast-align.c 16 const volatile void *P2 = P;
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/
redecl-merge-top.h 11 @protocol P2;
12 @protocol P2;
category_right_sub.h 1 @interface Foo(RightSub) <P2>
category_top.h 19 @protocol P2
redecl-merge-right.h 18 @protocol P2;
20 @protocol P2;
22 @protocol P2;
  /external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
const_pair_U_V.pass.cpp 23 typedef std::pair<double, long> P2;
25 P2 p2 = p1; local
26 assert(p2.first == 3);
27 assert(p2.second == 4);
33 typedef std::pair<double, long> P2;
35 constexpr P2 p2 = p1; local
36 static_assert(p2.first == 3, "");
37 static_assert(p2.second == 4, "")
    [all...]
piecewise.pass.cpp 27 typedef std::pair<int*, int> P2;
28 typedef std::pair<P1, P2> P3;
32 assert(p3.second == P2(nullptr, 4));
assign_const_pair_U_V.pass.cpp 23 typedef std::pair<double, long> P2;
25 P2 p2; local
26 p2 = p1;
27 assert(p2.first == 3);
28 assert(p2.second == 4);
assign_rv_pair_U_V.pass.cpp 35 typedef std::pair<std::unique_ptr<Base>, long> P2;
37 P2 p2; local
38 p2 = std::move(p1);
39 assert(p2.first == nullptr);
40 assert(p2.second == 4);
rv_pair_U_V.pass.cpp 35 typedef std::pair<std::unique_ptr<Base>, long> P2;
37 P2 p2 = std::move(p1); local
38 assert(p2.first == nullptr);
39 assert(p2.second == 4);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
const_pair_U_V.pass.cpp 23 typedef std::pair<double, long> P2;
25 P2 p2 = p1; local
26 assert(p2.first == 3);
27 assert(p2.second == 4);
33 typedef std::pair<double, long> P2;
35 constexpr P2 p2 = p1; local
36 static_assert(p2.first == 3, "");
37 static_assert(p2.second == 4, "")
    [all...]
piecewise.pass.cpp 27 typedef std::pair<int*, int> P2;
28 typedef std::pair<P1, P2> P3;
32 assert(p3.second == P2(nullptr, 4));
assign_const_pair_U_V.pass.cpp 23 typedef std::pair<double, long> P2;
25 P2 p2; local
26 p2 = p1;
27 assert(p2.first == 3);
28 assert(p2.second == 4);
assign_rv_pair_U_V.pass.cpp 35 typedef std::pair<std::unique_ptr<Base>, long> P2;
37 P2 p2; local
38 p2 = std::move(p1);
39 assert(p2.first == nullptr);
40 assert(p2.second == 4);
rv_pair_U_V.pass.cpp 35 typedef std::pair<std::unique_ptr<Base>, long> P2;
37 P2 p2 = std::move(p1); local
38 assert(p2.first == nullptr);
39 assert(p2.second == 4);
  /external/clang/test/Analysis/
region-store.cpp 15 class P2 {
22 class Derived: public P1, public P2 {
  /external/webrtc/src/system_wrappers/interface/
ref_count.h 51 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) {
    [all...]
  /external/clang/test/Misc/
diagnostic-crash.cpp 17 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/v8/test/cctest/compiler/
call-tester.h 141 MachineType p1 = kMachNone, MachineType p2 = kMachNone,
145 MachineType types[] = {p0, p1, p2, p3, p4};
187 template <typename R, typename F, typename P1, typename P2>
188 R DoCall(F* f, P1 p1, P2 p2) {
190 Simulator::CallArgument(p2),
194 template <typename R, typename F, typename P1, typename P2, typename P3>
195 R DoCall(F* f, P1 p1, P2 p2, P3 p3) {
197 Simulator::CallArgument(p1), Simulator::CallArgument(p2),
    [all...]
c-signature.h 107 template <typename Ret, typename P1, typename P2>
112 this->Set(1, MachineTypeForC<P2>());
116 template <typename Ret, typename P1, typename P2, typename P3>
121 this->Set(1, MachineTypeForC<P2>());
  /external/clang/test/SemaCXX/
attr-gnu.cpp 10 auto P2 = new int * __sptr; // Ok
  /external/libgsm/inc/
unproto.h 15 #undef P2
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
quote.hpp 44 template< typename P1, typename P2 > class F
61 template< typename P1, typename P2, typename P3 > class F
78 template< typename P1, typename P2, typename P3, typename P4 > class F
99 typename P1, typename P2, typename P3, typename P4
template_arity.hpp 38 template< typename P1, typename P2 > class F
45 template< typename P1, typename P2, typename P3 > class F
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
  /external/libgsm/src/
add.c 23 word gsm_add P2((a,b), word a, word b)
29 word gsm_sub P2((a,b), word a, word b)
35 word gsm_mult P2((a,b), word a, word b)
41 word gsm_mult_r P2((a,b), word a, word b)
56 longword gsm_L_mult P2((a,b),word a, word b)
62 longword gsm_L_add P2((a,b), longword a, longword b)
78 longword gsm_L_sub P2((a,b), longword a, longword b)
153 longword gsm_L_asl P2((a,n), longword a, int n)
161 word gsm_asl P2((a,n), word a, int n)
169 longword gsm_L_asr P2((a,n), longword a, int n
    [all...]

Completed in 639 milliseconds

1 2 3 4 5 6