Searched defs:P1 (Results 1 - 25 of 76) sorted by relevance

1234

/external/clang/test/Modules/Inputs/
H A Dredecl-merge-top.h9 @protocol P1; variable
H A Dredecl-merge-bottom.h14 @protocol P1; variable
H A Dredecl-merge-left.h13 @protocol P1; variable
H A Dredecl-merge-right.h12 @protocol P1
16 @protocol P1; variable
/external/libcxx/test/std/utilities/utility/pairs/pair.astuple/
H A Dtuple_size.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::tuple_size<P1>::value == 2), "");
25 typedef std::pair<int, short> const P1; typedef in class:std
26 static_assert((std::tuple_size<P1>::value == 2), "");
29 typedef std::pair<int, short> volatile P1; typedef in class:std
30 static_assert((std::tuple_size<P1>::value == 2), "");
33 typedef std::pair<int, short> const volatile P1; typedef in class:std
34 static_assert((std::tuple_size<P1>::value == 2), "");
/external/libcxx/test/std/utilities/utility/pairs/pairs.spec/
H A Dnon_member_swap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, static_cast<short>(4));
24 P1 p2(5, static_cast<short>(6));
H A Dmake_pair.pass.cpp23 typedef std::pair<int, short> P1; typedef
24 P1 p1 = std::make_pair(3, static_cast<short>(4));
31 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
32 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), static_cast<short>(4));
37 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
38 P1 p1 = std::make_pair(nullptr, static_cast<short>(4));
45 typedef std::pair<int, short> P1; typedef
46 constexpr P1 p1 = std::make_pair(3, static_cast<short>(4));
/external/clang/test/CodeGenCXX/
H A DPR5863-unreachable-block.cpp6 void P1() { function
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
H A Dassign_const_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, static_cast<short>(4));
H A Dconst_pair_U_V_cxx03.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 const P1 p1(3, static_cast<short>(4));
H A Dcopy_ctor.pass.cpp24 typedef std::pair<int, short> P1; typedef
25 P1 p1(3, static_cast<short>(4));
26 P1 p2 = p1;
32 typedef std::pair<int, short> P1; typedef
33 constexpr P1 p1(3, static_cast<short>(4));
34 constexpr P1 p2 = p1;
H A Dmove_ctor.pass.cpp32 typedef std::pair<int, short> P1; typedef
33 static_assert(std::is_move_constructible<P1>::value, "");
34 P1 p1(3, static_cast<short>(4));
35 P1 p2 = std::move(p1);
H A Dpiecewise.pass.cpp27 typedef std::pair<int, int*> P1; typedef
29 typedef std::pair<P1, P2> P3;
32 assert(p3.first == P1(3, nullptr));
H A Dassign_rv_pair_U_V.pass.cpp35 typedef std::pair<std::unique_ptr<Derived>, short> P1; typedef
37 P1 p1(std::unique_ptr<Derived>(), static_cast<short>(4));
H A Dswap.pass.cpp31 typedef std::pair<int, short> P1; typedef
32 P1 p1(3, static_cast<short>(4));
33 P1 p2(5, static_cast<short>(6));
41 typedef std::pair<int, S> P1; typedef
42 P1 p1(3, S(4));
43 P1 p2(5, S(6));
H A Dconst_pair_U_V.pass.cpp29 using P1 = std::pair<T1, int>;
33 static_assert(std::is_constructible<P1, UP1>::value == CanCopy, "");
34 static_assert(test_convertible<P1, UP1>() == CanConvert, "");
60 typedef std::pair<int, short> P1; typedef
62 const P1 p1(3, 4);
69 using P1 = DPair<long, long>;
71 P1 p1(42, 101);
157 typedef std::pair<int, short> P1; typedef
159 constexpr P1 p1(3, 4);
165 using P1
[all...]
H A Drv_pair_U_V.pass.cpp30 using P1 = std::pair<T1, int>;
34 static_assert(std::is_constructible<P1, UP1>::value == CanCopy, "");
35 static_assert(test_convertible<P1, UP1>() == CanConvert, "");
70 typedef std::pair<std::unique_ptr<Derived>, short> P1; typedef
72 P1 p1(std::unique_ptr<Derived>(), 4);
79 using P1 = DPair<long, long>;
81 P1 p1(42, 101);
/external/libcxx/test/std/experimental/memory/memory.resource/memory.resource.public/
H A Dis_equal.pass.cpp44 auto& P1 = R1.getController(); local
52 assert(P1.checkIsEqualCalledEq(1));
57 assert(P1.checkIsEqualCalledEq(1));
61 auto& P1 = R1.getController(); local
69 assert(P1.checkIsEqualCalledEq(1));
74 assert(P1.checkIsEqualCalledEq(1));
78 auto& P1 = R1.getController(); local
86 assert(P1.checkIsEqualCalledEq(1));
91 assert(P1.checkIsEqualCalledEq(1));
/external/clang/test/PCH/
H A Ddesignated-init.c.h44 struct P1 { struct
51 struct P1 l1 = {
58 static struct P1 test_foo() {
59 struct P1 l = { *foo(),
/external/python/cpython3/Modules/_decimal/libmpdec/
H A Dconstants.h71 enum {P1, P2, P3}; enumerator in enum:__anon19968
/external/clang/test/Analysis/
H A Dregion-store.cpp7 class P1 { class
22 class Derived: public P1, public P2 {
/external/libcxx/test/std/utilities/memory/pointer.conversion/
H A Dto_address.pass.cpp21 class P1 class
26 explicit P1(int* p) function in class:P1
44 P1 operator->() const noexcept
48 P1 p_;
108 P1 p1(&i);
/external/libffi/src/bfin/
H A Dsysv.S88 P1 = [P0]; define
92 call (P1);
103 P1 = [P0]; define
104 P1 = [P1]; define
113 call (P1);
/external/libgsm/inc/
H A Dproto.h26 #undef P1 macro
40 # define P1(x, a) (a) macro
54 # define P1(x, a) x a; macro
H A Dunproto.h14 #undef P1 macro

Completed in 491 milliseconds

1234