Home
last modified time | relevance | path

Searched defs:P2 (Results 1 – 25 of 130) sorted by relevance

123456

/llvm-project/libcxx/test/std/utilities/utility/pairs/pairs.pair/
H A Dctor.pair_U_V_move.pass.cpp33 using P2 = std::pair<int, T1>; in test_pair_rv() typedef
84 typedef std::pair<std::unique_ptr<Base>, long> P2; in main() typedef
93 using P2 = std::pair<int, int>; in main() typedef
138 using P2 = std::pair<int, ExplicitTypes::CopyOnly>; in main() typedef
203 using P2 = std::pair<NotCopyOrMoveConstructible&, int>; in main() typedef
214 using P2 = std::pair<NotCopyOrMoveConstructible&&, int>; in main() typedef
229 using P2 = std::pair<NonCopyConstructible&, int>; in main() typedef
H A Dctor.pair_U_V_const_ref.pass.cpp30 using P2 = std::pair<int, T1>; in test_pair_const() typedef
60 typedef std::pair<double, long> P2; in test() typedef
69 using P2 = std::pair<int, int>; in test() typedef
169 typedef std::pair<double, long> P2; in test() typedef
177 using P2 = std::pair<ExplicitT, ExplicitT>; in test() typedef
185 using P2 = std::pair<ImplicitT, ImplicitT>; in test() typedef
H A Dassign_rv_pair_U_V.pass.cpp65 typedef std::pair<ConstexprTestTypes::MoveOnly, long> P2; in test() typedef
94 using P2 = std::pair<MoveAssignable&, int>; in test() typedef
108 using P2 = std::pair<MoveAssignable&, int>; in test() typedef
115 using P2 = std::pair<CopyAssignable&, int>; in test() typedef
123 using P2 = std::pair<MoveAssignable&&, int>; in test() typedef
135 using P2 = std::pair<NotAssignable&, int>; in test() typedef
H A Dspecial_member_generation_test.pass.cpp36 using P2 = std::pair<int, T1>; test() typedef
84 using P2 = std::pair<int, T1>; test() typedef
H A Dctor.piecewise_construct.pass.cpp28 typedef std::pair<int*, int> P2; in test() typedef
H A Dctor.pair_U_V_const_ref.cxx03.pass.cpp24 typedef std::pair<double, long> P2; in main() typedef
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Duniqueptr-delete-release.cpp33 auto P2 = P; in Positives() local
96 NotUniquePtr P2; in Negatives() local
112 std::unique_ptr<int, D> P2; in NegativeDeleterT() local
/llvm-project/libcxx/test/std/utilities/utility/mem.res/mem.res/mem.res.public/
H A Dis_equal.pass.cpp48 auto& P2 = R2.getController(); in main() local
65 auto& P2 = R2.getController(); in main() local
82 auto& P2 = R2.getController(); in main() local
/llvm-project/libcxx/test/libcxx/utilities/memory/pointer.conversion/
H A Dto_address.pass.cpp29 struct P2 { struct
31 TEST_CONSTEXPR explicit P2(int *p) : p_(p) { } in P2() function
32 TEST_CONSTEXPR P1 operator->() const { return p_; } in operator ->()
33 P1 p_;
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dshared-ptr-array-mismatch.cpp19 std::shared_ptr<int> P2{new int[10]}; in f1() local
38 std::shared_ptr<A> P2(new A[10]); in f2() local
45 std::shared_ptr<int> P1{new int}, P2{new int[10]}, P3{new int[10]}; in f3() local
52 std::shared_ptr<int> P2{new int[10]}; member
H A Dunique-ptr-array-mismatch.cpp33 std::unique_ptr<int> P2{new int[10]}; in f1() local
61 std::unique_ptr<A> P2(new A[10]); in f2() local
68 std::unique_ptr<int> P1{new int}, P2{new int[10]}, P3{new int[10]}; in f3() local
75 std::unique_ptr<int> P2{new int[10]}; member
H A Dsuspicious-realloc-usage.cpp30 struct P2 { struct
42 P2<A>::p = realloc(P2<A>::p, 1); in templ() argument
/llvm-project/clang/test/CodeGenCXX/
H A Dbitfield-access-empty.cpp64 struct P2 { global() struct
69 bP2 global() argument
H A Dmangle-ms-md5.cpp3 #define C_(P1, P2) P1##P2 argument
4 #define C2(P1, P2) C_(P1, P2) argument
5 #define C4(P1, P2, P3, P4) C2(C2(P1, P2), C2(P3, P4)) argument
/llvm-project/clang/test/CodeGenObjC/
H A Ddefault-property-synthesis.m24 @property (copy) id P2; property
29 …@property (nonatomic, retain) id P2; // expected-warning {{property 'P2' 'copy' attribute does not… property
/llvm-project/libcxx/test/std/utilities/memory/pointer.conversion/
H A Dto_address.pass.cpp31 struct P2 { struct
33 constexpr explicit P2(int *p) : p_(p) { } in P2() argument
34 constexpr P1 operator->() const { return p_; } in operator ->()
35 P1 p_;
/llvm-project/clang/test/SemaObjC/
H A Dproperty-impl-misuse.m44 @property int P2; // expected-error {{type of property 'P2' ('int') does not match type of accessor… property
45 - (double*)P2; // expected-note {{declared here}} method
H A Dwarn-implicit-atomic-property.m6 @property (readwrite) int P2; // expected-note {{property declared here}} property
/llvm-project/clang/test/CodeGen/
H A Dpartial-reinitialization2.c6 struct P2 { int a, b, c; } g2 = { 1, 2, 3 }; argument
/llvm-project/libcxx/test/std/utilities/utility/pairs/pairs.spec/
H A Dthree_way_comparison.pass.cpp39 using P2 = std::pair<long long, long long>; in test() typedef
48 using P2 = std::pair<double, double>; in test() typedef
/llvm-project/clang/test/Parser/
H A Dobjc-alias-printing.m4 @protocol P2 @end protocol
H A Dobjc-type-printing.m4 @protocol P2 @end protocol
/llvm-project/libcxx/test/std/concepts/concepts.callable/concept.equiv/
H A Dequivalence_relation.compile.pass.cpp39 struct P2 { struct
/llvm-project/libcxx/test/std/concepts/concepts.callable/concept.relation/
H A Drelation.compile.pass.cpp37 struct P2 { struct
/llvm-project/libcxx/test/std/concepts/concepts.callable/concept.strictweakorder/
H A Dstrict_weak_order.compile.pass.cpp38 struct P2 { struct

123456