Searched refs:A3 (Results 1 - 25 of 127) sorted by relevance

123456

/external/clang/INPUTS/
H A Dmacro_pounder_obj.c9 #define A3 A2 A2 A2 A2 A2 A2 macro
10 #define A4 A3 A3 A3 A3 A3 A3
/external/libcxxabi/test/
H A Ddynamic_cast3.pass.cpp21 A1 A2 A3
44 struct A3 struct in namespace:t1
47 virtual ~A3() {}
49 A3* getA3() {return this;}
56 A3 a3;
63 assert(dynamic_cast<A3*>(a1.getA1()) == 0);
64 assert(dynamic_cast<A3*>(a2.getA2()) == 0);
65 assert(dynamic_cast<A3*>(a3.getA3()) == a3.getA3());
74 A3
97 struct A3 struct in namespace:t2
148 struct A3 struct in namespace:t3
199 struct A3 struct in namespace:t4
250 struct A3 struct in namespace:t5
309 struct A3 struct in namespace:t6
366 struct A3 struct in namespace:t7
423 struct A3 struct in namespace:t8
479 struct A3 struct in namespace:t9
535 struct A3 struct in namespace:t10
592 struct A3 struct in namespace:t11
648 struct A3 struct in namespace:t12
704 struct A3 struct in namespace:t13
759 struct A3 struct in namespace:t14
814 struct A3 struct in namespace:t15
881 struct A3 struct in namespace:t16
942 struct A3 struct in namespace:t17
1003 struct A3 struct in namespace:t18
1060 struct A3 struct in namespace:t19
1117 struct A3 struct in namespace:t20
1178 struct A3 struct in namespace:t21
1235 struct A3 struct in namespace:t22
1292 struct A3 struct in namespace:t23
1349 struct A3 struct in namespace:t24
1406 struct A3 struct in namespace:t25
1473 struct A3 struct in namespace:t26
1534 struct A3 struct in namespace:t27
1593 struct A3 struct in namespace:t28
1653 struct A3 struct in namespace:t29
1712 struct A3 struct in namespace:t30
1772 struct A3 struct in namespace:t31
1830 struct A3 struct in namespace:t32
1888 struct A3 struct in namespace:t33
1956 struct A3 struct in namespace:t34
2018 struct A3 struct in namespace:t35
2078 struct A3 struct in namespace:t36
2140 struct A3 struct in namespace:t37
2201 struct A3 struct in namespace:t38
2261 struct A3 struct in namespace:t39
2320 struct A3 struct in namespace:t40
2379 struct A3 struct in namespace:t41
[all...]
/external/clang/test/Index/
H A Dannotate-comments-preprocessor.c17 #define A3 1 /**< Aaa. */ macro
22 int A[] = { A0, A1, A2, A3, A4, A5, A6 };
25 int f(int a1[A1], int a2[A2], int a3[A3], int a4[A4], int a5[A5], int a6[A6]);
29 int g(int a1[A1], int a2[A2], int a3[A3], int a4[A4], int a5[A5], int a6[A6]);
/external/clang/test/Parser/
H A Dcxx-extra-semi.cpp23 void A3() { }; ;; // expected-warning{{extra ';' after member function definition}} function in class:A
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
H A Dinner_allocator.pass.cpp38 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
39 A a(A1<int>(5), A2<int>(6), A3<int>(8));
41 std::scoped_allocator_adaptor<A2<int>, A3<int>>(A2<int>(6), A3<int>(8))));
H A Ddestroy.pass.cpp51 typedef std::scoped_allocator_adaptor<A3<B>, A1<B>> A;
57 assert(!A3<S>::constructed);
58 assert(!A3<S>::destroy_called);
61 assert(A3<S>::constructed);
62 assert(!A3<S>::destroy_called);
65 assert(A3<S>::constructed);
66 assert(A3<S>::destroy_called);
H A Dmax_size.pass.cpp37 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
38 const A a(A1<int>(200), A2<int>(), A3<int>());
/external/mockito/src/main/java/org/mockito/stubbing/
H A DAnswer4.java32 * @param <A3> type of the fourth argument
36 public interface Answer4<T, A0, A1, A2, A3> {
47 T answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3) throws Throwable;
H A DAnswer5.java32 * @param <A3> type of the fourth argument
36 public interface Answer5<T, A0, A1, A2, A3, A4> {
48 T answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3, A4 argument4) throws Throwable;
H A DVoidAnswer4.java31 * @param <A3> type of the fourth argument
35 public interface VoidAnswer4<A0, A1, A2, A3> {
44 void answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3) throws Throwable;
H A DVoidAnswer5.java31 * @param <A3> type of the fourth argument
36 public interface VoidAnswer5<A0, A1, A2, A3, A4> {
46 void answer(A0 argument0, A1 argument1, A2 argument2, A3 argument3, A4 argument4) throws Throwable;
/external/libcxx/test/std/utilities/allocator.adaptor/scoped.adaptor.operators/
H A Deq.pass.cpp49 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
50 A a1(A1<int>(4), A2<int>(5), A3<int>(6));
56 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
57 A a1(A1<int>(4), A2<int>(5), A3<int>(6));
58 A a2(A1<int>(4), A2<int>(5), A3<int>(5));
H A Dcopy_assign.pass.cpp54 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
55 A a1(A1<int>(4), A2<int>(5), A3<int>(6));
61 A3<int>::copy_called = false;
62 A3<int>::move_called = false;
68 assert(A3<int>::copy_called == true);
69 assert(A3<int>::move_called == false);
H A Dmove_assign.pass.cpp54 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
55 A a1(A1<int>(4), A2<int>(5), A3<int>(6));
61 A3<int>::copy_called = false;
62 A3<int>::move_called = false;
68 assert(A3<int>::copy_called == false);
69 assert(A3<int>::move_called == true);
/external/google-breakpad/src/testing/include/gmock/internal/
H A Dgmock-generated-internal-utils.h86 template <typename A1, typename A2, typename A3>
87 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> > {
88 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3> > type;
91 template <typename A1, typename A2, typename A3, typename A4>
92 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4> > {
93 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>,
97 template <typename A1, typename A2, typename A3, typename A4, typename A5>
98 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3, A4, A5> > {
99 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
103 template <typename A1, typename A2, typename A3, typenam
[all...]
/external/googletest/googlemock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h86 template <typename A1, typename A2, typename A3>
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> > {
88 typedef ::testing::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3> > type;
91 template <typename A1, typename A2, typename A3, typename A4>
92 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4> > {
93 typedef ::testing::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>,
97 template <typename A1, typename A2, typename A3, typename A4, typename A5>
98 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5> > {
99 typedef ::testing::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
103 template <typename A1, typename A2, typename A3, typenam
[all...]
/external/v8/testing/gmock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h86 template <typename A1, typename A2, typename A3>
87 struct MatcherTuple< ::testing::tuple<A1, A2, A3> > {
88 typedef ::testing::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3> > type;
91 template <typename A1, typename A2, typename A3, typename A4>
92 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4> > {
93 typedef ::testing::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>,
97 template <typename A1, typename A2, typename A3, typename A4, typename A5>
98 struct MatcherTuple< ::testing::tuple<A1, A2, A3, A4, A5> > {
99 typedef ::testing::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3>, Matcher<A4>,
103 template <typename A1, typename A2, typename A3, typenam
[all...]
/external/clang/test/Sema/
H A Denum-increment.c3 enum A { A1, A2, A3 }; enumerator in enum:A
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.types/
H A Dinner_allocator_type.pass.cpp35 std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>>::inner_allocator_type,
36 std::scoped_allocator_adaptor<A2<int>, A3<int>>>::value), "");
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/
H A Dconverting_copy.pass.cpp52 typedef std::scoped_allocator_adaptor<A1<double>, A2<int>, A3<int>> B;
53 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
54 B a1(A1<int>(4), A2<int>(5), A3<int>(6));
59 A3<int>::copy_called = false;
60 A3<int>::move_called = false;
64 assert(A3<int>::copy_called == true);
H A Dcopy.pass.cpp51 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
52 A a1(A1<int>(4), A2<int>(5), A3<int>(6));
57 A3<int>::copy_called = false;
58 A3<int>::move_called = false;
64 assert(A3<int>::copy_called == true);
65 assert(A3<int>::move_called == false);
H A Dallocs.pass.cpp78 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
80 A a(a4, A2<int>(5), A3<int>(6));
85 assert(A3<int>::copy_called == true);
86 assert(A3<int>::move_called == false);
89 std::scoped_allocator_adaptor<A2<int>, A3<int>>(A2<int>(5), A3<int>(6))));
95 A3<int>::copy_called = false;
96 A3<int>::move_called = false;
98 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
99 A a(A1<int>(4), A2<int>(5), A3<in
[all...]
H A Dconverting_move.pass.cpp55 typedef std::scoped_allocator_adaptor<A1<double>, A2<int>, A3<int>> B;
56 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
57 B a1(A1<int>(4), A2<int>(5), A3<int>(6));
62 A3<int>::copy_called = false;
63 A3<int>::move_called = false;
69 assert(A3<int>::copy_called == false);
70 assert(A3<int>::move_called == true);
/external/llvm/unittests/Support/
H A DArrayRecyclerTest.cpp64 Object *A3 = DUT.allocate(Cap, Allocator); local
65 A3[0].Num = 221;
66 A3[7].Num = 217;
72 EXPECT_EQ(221, A3[0].Num);
73 EXPECT_EQ(217, A3[7].Num);
80 EXPECT_EQ(221, A3[0].Num);
81 EXPECT_EQ(217, A3[7].Num);
89 DUT.deallocate(Cap, A3);
94 EXPECT_EQ(A3, A3x);
104 EXPECT_NE(A3, A
[all...]
/external/libcxx/test/support/
H A Dallocators.h130 class A3 class
134 explicit A3(int id = 0) TEST_NOEXCEPT : id_(id) {}
148 A3(const A3& a) TEST_NOEXCEPT : id_(a.id()) {copy_called = true;}
149 A3(A3&& a) TEST_NOEXCEPT : id_(a.id()) {move_called = true;}
150 A3& operator=(const A3& a) TEST_NOEXCEPT { id_ = a.id(); copy_called = true; return *this;}
151 A3& operator=(A3
[all...]

Completed in 467 milliseconds

123456