HomeSort by relevance Sort by last modified time
    Searched defs:P1 (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 9 @protocol P1;
redecl-merge-bottom.h 14 @protocol P1;
redecl-merge-left.h 13 @protocol P1;
redecl-merge-right.h 12 @protocol P1
16 @protocol P1;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
tuple_element.pass.cpp 21 typedef std::pair<int, short> P1;
22 static_assert((std::is_same<std::tuple_element<0, P1>::type, int>::value), "");
23 static_assert((std::is_same<std::tuple_element<1, P1>::type, short>::value), "");
26 typedef std::pair<int*, char> P1;
27 static_assert((std::is_same<std::tuple_element<0, P1>::type, int*>::value), "");
28 static_assert((std::is_same<std::tuple_element<1, P1>::type, char>::value), "");
tuple_size.pass.cpp 21 typedef std::pair<int, short> P1;
22 static_assert((std::tuple_size<P1>::value == 2), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
swap.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, 4);
24 P1 p2(5, 6);
25 p1.swap(p2);
26 assert(p1.first == 5);
27 assert(p1.second == 6);
assign_const_pair_U_V.pass.cpp 22 typedef std::pair<int, short> P1;
24 P1 p1(3, 4);
26 p2 = p1;
const_pair_U_V.pass.cpp 22 typedef std::pair<int, short> P1;
24 P1 p1(3, 4);
25 P2 p2 = p1;
copy_ctor.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, 4);
24 P1 p2 = p1;
piecewise.pass.cpp 26 typedef std::pair<int, int*> P1;
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
assign_rv_pair_U_V.pass.cpp 34 typedef std::pair<std::unique_ptr<Derived>, short> P1;
36 P1 p1(std::unique_ptr<Derived>(), 4);
38 p2 = std::move(p1);
rv_pair_U_V.pass.cpp 34 typedef std::pair<std::unique_ptr<Derived>, short> P1;
36 P1 p1(std::unique_ptr<Derived>(), 4);
37 P2 p2 = std::move(p1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.spec/
non_member_swap.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, 4);
24 P1 p2(5, 6);
25 swap(p1, p2);
26 assert(p1.first == 5);
27 assert(p1.second == 6);
make_pair.pass.cpp 21 typedef std::pair<int, short> P1;
22 P1 p1 = std::make_pair(3, 4); local
23 assert(p1.first == 3);
24 assert(p1.second == 4);
28 typedef std::pair<std::unique_ptr<int>, short> P1;
29 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4); local
30 assert(*p1.first == 3);
31 assert(p1.second == 4)
35 P1 p1 = std::make_pair(nullptr, 4); local
    [all...]
  /external/clang/test/CodeGenCXX/
PR5863-unreachable-block.cpp 6 void P1() {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
omxVCM4P10_TransformDequantChromaDCFromPair_s.S 38 P1: add r6, pc
59 .word armVCM4P10_VMatrixQPModTable-(P1+8)
omxVCM4P10_TransformDequantLumaDCFromPair_s.S 22 P1: ADD r3, pc
66 .word armVCM4P10_VMatrixQPModTable-(P1+8)
omxVCM4P10_DequantTransformResidualFromPairAndAdd_s.S 32 P1: ADD r10, pc
124 .word armVCM4P10_QPDivTable-(P1+8)
  /external/chromium_org/v8/test/webkit/
dfg-patchable-get-by-id-after-watchpoint.js 42 function P1() {
45 P1.prototype.g = 42;
52 var p1 = new P1();
55 p1.f = 1;
59 var p = (i % 2) ? p1 : p2;
65 P1.prototype.h = 58; // Reset the GetById.
  /external/clang/test/Analysis/
region-store.cpp 7 class P1 {
22 class Derived: public P1, public P2 {
  /external/libgsm/inc/
proto.h 26 #undef P1
40 # define P1(x, a) (a)
54 # define P1(x, a) x a;
unproto.h 14 #undef P1
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_cbrt.c 31 P1 = -1.88497979543377169875, /* 0xbffe28e0, 0x92f02420 */
89 t=t*((P0+r*(P1+r*P2))+((r*r)*r)*(P3+r*P4));
s_exp2f.c 40 P1 = 0x1.62e430p-1f,
133 tv = tv + u * (P1 + z * P2) + u * (z * z) * (P3 + z * P4);

Completed in 341 milliseconds

1 2 3