Home
last modified time | relevance | path

Searched refs:A3 (Results 1 – 25 of 248) sorted by relevance

12345678910

/external/libcxxabi/test/
Ddynamic_cast3.pass.cpp38 struct A3 struct
41 virtual ~A3() {} in ~A3() argument
43 A3* getA3() {return this;} in getA3() argument
50 A3 a3; in test()
57 assert(dynamic_cast<A3*>(a1.getA1()) == 0); in test()
58 assert(dynamic_cast<A3*>(a2.getA2()) == 0); in test()
59 assert(dynamic_cast<A3*>(a3.getA3()) == a3.getA3()); in test()
91 struct A3 struct
95 virtual ~A3() {} in ~A3() argument
97 A3* getA3() {return this;} in getA3() argument
[all …]
Ddynamic_cast5.pass.cpp32 struct A3 struct
37 virtual ~A3() {} in ~A3() argument
41 A3* getA3() {return this;} in getA3() argument
45 : public A3,
51 t1::A1* getA1() {return A3::getA1();} in getA1()
52 A2* getA2() {return A3::getA2();} in getA2()
53 A3* getA3() {return A3::getA3();} in getA3()
59 public A3
66 A3* getA3() {return A4::getA3();} in getA3()
75 A3 a3; in test()
[all …]
Ddynamic_cast14.pass.cpp32 struct A3 struct
37 virtual ~A3() {} in ~A3() argument
41 A3* getA3() {return this;} in getA3() argument
57 : public A3,
63 A1* getA1_3() {return A3::getA1();} in getA1_3()
65 A2* getA2() {return A3::getA2();} in getA2()
66 A3* getA3() {return A3::getA3();} in getA3()
92 A3* getA3() {return A5::getA3();} in getA3()
109 A3* getA3() {return A7::getA3();} in getA3()
137 A3* getA3() {return A8::getA3();} in getA3()
[all …]
/external/google-breakpad/src/testing/include/gmock/internal/
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, typename A4, typename A5,
[all …]
/external/google-breakpad/src/testing/include/gmock/
Dgmock-generated-nice-strict.h90 template <typename A1, typename A2, typename A3>
91 NiceMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3) { in NiceMock()
96 template <typename A1, typename A2, typename A3, typename A4>
97 NiceMock(const A1& a1, const A2& a2, const A3& a3, in NiceMock()
103 template <typename A1, typename A2, typename A3, typename A4, typename A5>
104 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4, in NiceMock()
110 template <typename A1, typename A2, typename A3, typename A4, typename A5,
112 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4, in NiceMock()
118 template <typename A1, typename A2, typename A3, typename A4, typename A5,
120 NiceMock(const A1& a1, const A2& a2, const A3& a3, const A4& a4, in NiceMock()
[all …]
Dgmock-generated-function-mockers.h122 template <typename R, typename A1, typename A2, typename A3>
123 class FunctionMocker<R(A1, A2, A3)> : public
124 internal::FunctionMockerBase<R(A1, A2, A3)> {
126 typedef R F(A1, A2, A3);
130 const Matcher<A3>& m3) { in With()
135 R Invoke(A1 a1, A2 a2, A3 a3) { in Invoke()
144 template <typename R, typename A1, typename A2, typename A3, typename A4>
145 class FunctionMocker<R(A1, A2, A3, A4)> : public
146 internal::FunctionMockerBase<R(A1, A2, A3, A4)> {
148 typedef R F(A1, A2, A3, A4);
[all …]
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.cnstr/
Dallocs.pass.cpp78 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
80 A a(a4, A2<int>(5), A3<int>(6)); in main()
85 assert(A3<int>::copy_called == true); in main()
86 assert(A3<int>::move_called == false); in main()
89 std::scoped_allocator_adaptor<A2<int>, A3<int>>(A2<int>(5), A3<int>(6)))); in main()
95 A3<int>::copy_called = false; in main()
96 A3<int>::move_called = false; in main()
98 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
99 A a(A1<int>(4), A2<int>(5), A3<int>(6)); in main()
104 assert(A3<int>::copy_called == true); in main()
[all …]
Dconverting_move.pass.cpp55 typedef std::scoped_allocator_adaptor<A1<double>, A2<int>, A3<int>> B; in main()
56 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
57 B a1(A1<int>(4), A2<int>(5), A3<int>(6)); in main()
62 A3<int>::copy_called = false; in main()
63 A3<int>::move_called = false; in main()
69 assert(A3<int>::copy_called == false); in main()
70 assert(A3<int>::move_called == true); in main()
Dconverting_copy.pass.cpp52 typedef std::scoped_allocator_adaptor<A1<double>, A2<int>, A3<int>> B; in main()
53 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
54 B a1(A1<int>(4), A2<int>(5), A3<int>(6)); in main()
59 A3<int>::copy_called = false; in main()
60 A3<int>::move_called = false; in main()
64 assert(A3<int>::copy_called == true); in main()
Dcopy.pass.cpp51 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
52 A a1(A1<int>(4), A2<int>(5), A3<int>(6)); in main()
57 A3<int>::copy_called = false; in main()
58 A3<int>::move_called = false; in main()
64 assert(A3<int>::copy_called == true); in main()
65 assert(A3<int>::move_called == false); in main()
Ddefault.pass.cpp45 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
48 assert((a.inner_allocator() == std::scoped_allocator_adaptor<A2<int>, A3<int>>())); in main()
53 assert(A3<int>::copy_called == false); in main()
54 assert(A3<int>::move_called == false); in main()
/external/libcxx/test/support/
Dallocators.h124 class A3
128 explicit A3(int id = 0) : id_(id) {} in id_()
142 A3(const A3& a) : id_(a.id()) {copy_called = true;} in A3() function
143 A3(A3&& a) : id_(a.id()) {move_called = true;} in A3() function
159 A3 select_on_container_copy_construction() const {return A3(-1);} in select_on_container_copy_construction()
162 template <class T> bool A3<T>::copy_called = false;
163 template <class T> bool A3<T>::move_called = false;
164 template <class T> bool A3<T>::constructed = false;
165 template <class T> bool A3<T>::destroy_called = false;
169 bool operator==(const A3<T>& x, const A3<U>& y)
[all …]
/external/clang/INPUTS/
Dmacro_pounder_obj.c9 #define A3 A2 A2 A2 A2 A2 A2 macro
10 #define A4 A3 A3 A3 A3 A3 A3
Dmacro_pounder_fn.c9 #define A3(A, B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) A2(A,B) macro
10 #define A4(A, B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) A3(A,B) A3(A,B)
/external/llvm/unittests/Support/
DArrayRecyclerTest.cpp64 Object *A3 = DUT.allocate(Cap, Allocator); in TEST() local
65 A3[0].Num = 221; in TEST()
66 A3[7].Num = 217; in TEST()
72 EXPECT_EQ(221, A3[0].Num); in TEST()
73 EXPECT_EQ(217, A3[7].Num); in TEST()
80 EXPECT_EQ(221, A3[0].Num); in TEST()
81 EXPECT_EQ(217, A3[7].Num); in TEST()
89 DUT.deallocate(Cap, A3); in TEST()
94 EXPECT_EQ(A3, A3x); in TEST()
104 EXPECT_NE(A3, A4); in TEST()
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
Ddestroy.pass.cpp51 typedef std::scoped_allocator_adaptor<A3<B>, A1<B>> A; in main()
57 assert(!A3<S>::constructed); in main()
58 assert(!A3<S>::destroy_called); in main()
61 assert(A3<S>::constructed); in main()
62 assert(!A3<S>::destroy_called); in main()
65 assert(A3<S>::constructed); in main()
66 assert(A3<S>::destroy_called); in main()
Dinner_allocator.pass.cpp38 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
39 A a(A1<int>(5), A2<int>(6), A3<int>(8)); in main()
41 std::scoped_allocator_adaptor<A2<int>, A3<int>>(A2<int>(6), A3<int>(8)))); in main()
Dselect_on_container_copy_construction.pass.cpp35 typedef std::scoped_allocator_adaptor<A3<int>> A; in main()
36 A a1(A3<int>(3)); in main()
43 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
44 A a1(A1<int>(1), A2<int>(2), A3<int>(3)); in main()
Dconstruct.pass.cpp165 typedef std::scoped_allocator_adaptor<A3<E>, A2<E>> K; in main()
171 A3<E>::constructed = false; in main()
174 assert(A3<E>::constructed); in main()
179 typedef std::scoped_allocator_adaptor<A3<F>, A2<F>> K; in main()
185 A3<F>::constructed = false; in main()
188 assert(A3<F>::constructed); in main()
/external/opencv/cxcore/src/
Dcxjacobieigens.cpp116 float *A3, Apq = A1[q], App, Aqq, Aip, Aiq, Vpi, Vqi; in icvJacobiEigens_32f() local
137 A3 = A; in icvJacobiEigens_32f()
138 for( i = 0; i < p; i++, A3 += n ) in icvJacobiEigens_32f()
140 Aip = A3[p]; in icvJacobiEigens_32f()
141 Aiq = A3[q]; in icvJacobiEigens_32f()
144 A3[p] = (float) (Aip * c - Aiq * s); in icvJacobiEigens_32f()
145 A3[q] = (float) (Aiq * c + Aip * s); in icvJacobiEigens_32f()
149 for( ; i < q; i++, A3 += n ) in icvJacobiEigens_32f()
152 Aiq = A3[q]; in icvJacobiEigens_32f()
156 A3[q] = (float) (Aiq * c + Aip * s); in icvJacobiEigens_32f()
[all …]
/external/llvm/include/llvm/IR/
DTypeBuilder.h275 template<typename R, typename A1, typename A2, typename A3, bool cross>
276 class TypeBuilder<R(A1, A2, A3), cross> {
282 TypeBuilder<A3, cross>::get(Context), in get()
289 template<typename R, typename A1, typename A2, typename A3, typename A4,
291 class TypeBuilder<R(A1, A2, A3, A4), cross> {
297 TypeBuilder<A3, cross>::get(Context), in get()
305 template<typename R, typename A1, typename A2, typename A3, typename A4,
307 class TypeBuilder<R(A1, A2, A3, A4, A5), cross> {
313 TypeBuilder<A3, cross>::get(Context), in get()
350 template<typename R, typename A1, typename A2, typename A3, bool cross>
[all …]
/external/libcxx/test/std/utilities/allocator.adaptor/scoped.adaptor.operators/
Deq.pass.cpp49 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
50 A a1(A1<int>(4), A2<int>(5), A3<int>(6)); in main()
56 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A; in main()
57 A a1(A1<int>(4), A2<int>(5), A3<int>(6)); in main()
58 A a2(A1<int>(4), A2<int>(5), A3<int>(5)); in main()
/external/clang/test/Index/
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/v8/test/mjsunit/lithium/
DStoreKeyed.js42 var A3 = [1.2, 2.3]; variable
51 foo(A3, 1, 3.4);
58 assertEquals(A1[0], A3[0]);
59 assertEquals(A1[1], A3[1]);
/external/boringssl/src/crypto/bn/asm/
Darmv4-mont.pl264 my ($A0,$A1,$A2,$A3)=map("d$_",(0..3));
291 vld1.32 {$A0-$A3}, [$aptr]! @ can't specify :32 :-(
312 vmull.u32 $A6xB,$Bi,${A3}[0]
314 vmull.u32 $A7xB,$Bi,${A3}[1]
365 vmlal.u32 $A6xB,$Bi,${A3}[0]
367 vmlal.u32 $A7xB,$Bi,${A3}[1]
407 vld1.32 {$A0-$A3}, [$aptr]!
431 vmull.u32 $A6xB,$Bi,${A3}[0]
432 vmull.u32 $A7xB,$Bi,${A3}[1]
468 vld1.32 {$A0-$A3}, [$aptr]!
[all …]

12345678910