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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/utility/pairs/pair.astuple/
tuple_size.pass.cpp 21 typedef std::pair<int, short> P1;
22 static_assert((std::tuple_size<P1>::value == 2), "");
25 typedef std::pair<int, short> const P1;
26 static_assert((std::tuple_size<P1>::value == 2), "");
29 typedef std::pair<int, short> volatile P1;
30 static_assert((std::tuple_size<P1>::value == 2), "");
33 typedef std::pair<int, short> const volatile P1;
34 static_assert((std::tuple_size<P1>::value == 2), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
tuple_size.pass.cpp 21 typedef std::pair<int, short> P1;
22 static_assert((std::tuple_size<P1>::value == 2), "");
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), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pair.astuple/
tuple_size.pass.cpp 21 typedef std::pair<int, short> P1;
22 static_assert((std::tuple_size<P1>::value == 2), "");
25 typedef std::pair<int, short> const P1;
26 static_assert((std::tuple_size<P1>::value == 2), "");
29 typedef std::pair<int, short> volatile P1;
30 static_assert((std::tuple_size<P1>::value == 2), "");
33 typedef std::pair<int, short> const volatile P1;
34 static_assert((std::tuple_size<P1>::value == 2), "");
  /external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
copy_ctor.pass.cpp 24 typedef std::pair<int, short> P1;
25 P1 p1(3, static_cast<short>(4));
26 P1 p2 = p1;
32 typedef std::pair<int, short> P1;
33 constexpr P1 p1(3, static_cast<short>(4));
34 constexpr P1 p2 = p1;
    [all...]
swap.pass.cpp 31 typedef std::pair<int, short> P1;
32 P1 p1(3, static_cast<short>(4));
33 P1 p2(5, static_cast<short>(6));
34 p1.swap(p2);
35 assert(p1.first == 5);
36 assert(p1.second == 6);
41 typedef std::pair<int, S> P1;
42 P1 p1(3, S(4))
    [all...]
piecewise.pass.cpp 26 typedef std::pair<int, int*> P1;
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
copy_ctor.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, 4);
24 P1 p2 = p1;
33 typedef std::pair<int, short> P1;
34 constexpr P1 p1(3, 4);
35 constexpr P1 p2 = p1;
    [all...]
const_pair_U_V.pass.cpp 22 typedef std::pair<int, short> P1;
24 P1 p1(3, 4);
25 P2 p2 = p1;
32 typedef std::pair<int, short> P1;
34 constexpr P1 p1(3, 4);
35 constexpr P2 p2 = p1;
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);
piecewise.pass.cpp 26 typedef std::pair<int, int*> P1;
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pairs.pair/
copy_ctor.pass.cpp 27 typedef std::pair<int, short> P1;
28 P1 p1(3, 4);
29 P1 p2 = p1;
38 typedef std::pair<int, short> P1;
39 constexpr P1 p1(3, 4);
40 constexpr P1 p2 = p1;
    [all...]
const_pair_U_V.pass.cpp 22 typedef std::pair<int, short> P1;
24 P1 p1(3, 4);
25 P2 p2 = p1;
32 typedef std::pair<int, short> P1;
34 constexpr P1 p1(3, 4);
35 constexpr P2 p2 = p1;
swap.pass.cpp 31 typedef std::pair<int, short> P1;
32 P1 p1(3, 4);
33 P1 p2(5, 6);
34 p1.swap(p2);
35 assert(p1.first == 5);
36 assert(p1.second == 6);
41 typedef std::pair<int, S> P1;
42 P1 p1(3, S(4))
    [all...]
piecewise.pass.cpp 26 typedef std::pair<int, int*> P1;
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
  /external/clang/test/CodeGenCXX/
PR5863-unreachable-block.cpp 6 void P1() {
  /external/libchrome/base/profiler/
scoped_tracker.h 52 template <typename P1>
53 static base::Callback<void(P1)> TrackCallback(
55 const base::Callback<void(P1)>& callback) {
56 return base::Bind(&ScopedTracker::ExecuteAndTrackCallback<P1>, location,
62 template <typename P1>
64 const base::Callback<void(P1)>& callback,
65 P1 p1) {
67 callback.Run(p1);
  /external/libcxx/test/std/utilities/utility/pairs/pairs.spec/
make_pair.pass.cpp 23 typedef std::pair<int, short> P1;
24 P1 p1 = std::make_pair(3, static_cast<short>(4)); local
25 assert(p1.first == 3);
26 assert(p1.second == 4);
31 typedef std::pair<std::unique_ptr<int>, short> P1;
32 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), static_cast<short>(4)); local
33 assert(*p1.first == 3);
34 assert(p1.second == 4)
38 P1 p1 = std::make_pair(nullptr, static_cast<short>(4)); local
46 constexpr P1 p1 = std::make_pair(3, static_cast<short>(4)); local
    [all...]
non_member_swap.pass.cpp 22 typedef std::pair<int, short> P1;
23 P1 p1(3, static_cast<short>(4));
24 P1 p2(5, static_cast<short>(6));
25 swap(p1, p2);
26 assert(p1.first == 5);
27 assert(p1.second == 6);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.spec/
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);
29 typedef std::pair<std::unique_ptr<int>, short> P1;
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4); local
31 assert(*p1.first == 3);
32 assert(p1.second == 4)
36 P1 p1 = std::make_pair(nullptr, 4); local
45 constexpr P1 p1 = std::make_pair(3, 4); local
    [all...]
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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pairs.spec/
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);
29 typedef std::pair<std::unique_ptr<int>, short> P1;
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4); local
31 assert(*p1.first == 3);
32 assert(p1.second == 4)
36 P1 p1 = std::make_pair(nullptr, 4); local
45 constexpr P1 p1 = std::make_pair(3, 4); local
    [all...]
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);
  /toolchain/binutils/binutils-2.25/opcodes/
ia64-opc-a.c 150 {"cmp.lt", A2, OpX2TbTaC (0xc, 0, 0, 0, 0), {P1, P2, R2, R3}, EMPTY},
151 {"cmp.le", A2, OpX2TbTaC (0xc, 0, 0, 0, 0), {P2, P1, R3, R2}, EMPTY},
152 {"cmp.gt", A2, OpX2TbTaC (0xc, 0, 0, 0, 0), {P1, P2, R3, R2}, EMPTY},
153 {"cmp.ge", A2, OpX2TbTaC (0xc, 0, 0, 0, 0), {P2, P1, R2, R3}, EMPTY},
154 {"cmp.lt.unc", A2, OpX2TbTaC (0xc, 0, 0, 0, 1), {P1, P2, R2, R3}, EMPTY},
155 {"cmp.le.unc", A2, OpX2TbTaC (0xc, 0, 0, 0, 1), {P2, P1, R3, R2}, EMPTY},
156 {"cmp.gt.unc", A2, OpX2TbTaC (0xc, 0, 0, 0, 1), {P1, P2, R3, R2}, EMPTY},
157 {"cmp.ge.unc", A2, OpX2TbTaC (0xc, 0, 0, 0, 1), {P2, P1, R2, R3}, EMPTY},
158 {"cmp.eq.and", A2, OpX2TbTaC (0xc, 0, 0, 1, 0), {P1, P2, R2, R3}, EMPTY},
159 {"cmp.ne.andcm", A2, OpX2TbTaC (0xc, 0, 0, 1, 0), {P1, P2, R2, R3}, PSEUDO, 0, NULL}
    [all...]
  /external/clang/test/PCH/
designated-init.c.h 44 struct P1 {
51 struct P1 l1 = {
58 static struct P1 test_foo() {
59 struct P1 l = { *foo(),

Completed in 4233 milliseconds

1 2 3 4 5 6 7 8 91011>>