/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
callback_tracker_internal.h | 66 template <typename A1, typename A2> 67 struct InvokeAndInvalidateHelper<void(A1, A2)> { 69 const base::Callback<void(A1, A2)>& callback, A1 a1, A2 a2) { 73 base::internal::CallbackForward(a2)); 78 template <typename A1, typename A2, typename A3> 79 struct InvokeAndInvalidateHelper<void(A1, A2, A3)> { 81 const base::Callback<void(A1, A2, A3)>& callback, A1 a1, 82 A2 a2, A3 a3) [all...] |
/external/chromium_org/media/base/ |
bind_to_current_loop.h | 70 template <typename A1, typename A2> 71 struct TrampolineHelper<void(A1, A2)> { 74 const base::Callback<void(A1, A2)>& cb, A1 a1, A2 a2) { 76 internal::TrampolineForward(a1), internal::TrampolineForward(a2))); 81 template <typename A1, typename A2, typename A3> 82 struct TrampolineHelper<void(A1, A2, A3)> { 85 const base::Callback<void(A1, A2, A3)>& cb, A1 a1, A2 a2, A3 a3) [all...] |
/external/chromium_org/sync/internal_api/public/util/ |
weak_handle.h | 163 template <typename U, typename A1, typename A2> 165 void (U::*fn)(A1, A2), 167 typename ParamTraits<A2>::ForwardType a2) const { 170 Bind(&WeakHandleCore::template DoCall2<U, A1, A2>, 171 this, fn, a1, a2)); 174 template <typename U, typename A1, typename A2, typename A3> 176 void (U::*fn)(A1, A2, A3), 178 typename ParamTraits<A2>::ForwardType a2, [all...] |
/external/chromium_org/testing/ |
gmock_mutant.h | [all...] |
/external/libcxxabi/test/ |
dynamic_cast5.cpp | 23 struct A2 26 virtual ~A2() {} 28 A2* getA2() {return this;} 33 private A2 39 A2* getA2() {return A2::getA2();} 45 public A2 51 A2* getA2() {return A3::getA2();} 64 A2* getA2() {return A4::getA2();} 73 A2 a2 local 217 A2 a2; local 361 A2 a2; local 504 A2 a2; local 647 A2 a2; local 790 A2 a2; local 933 A2 a2; local 1076 A2 a2; local 1219 A2 a2; local [all...] |
/ndk/sources/cxx-stl/gabi++/tests/ |
dynamic_cast5.cpp | 23 struct A2 26 virtual ~A2() {} 28 A2* getA2() {return this;} 33 private A2 39 A2* getA2() {return A2::getA2();} 45 public A2 51 A2* getA2() {return A3::getA2();} 64 A2* getA2() {return A4::getA2();} 73 A2 a2 local 217 A2 a2; local 361 A2 a2; local 504 A2 a2; local 647 A2 a2; local 790 A2 a2; local 933 A2 a2; local 1076 A2 a2; local 1219 A2 a2; local [all...] |
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/ |
dynamic_cast5.cpp | 23 struct A2 26 virtual ~A2() {} 28 A2* getA2() {return this;} 33 private A2 39 A2* getA2() {return A2::getA2();} 45 public A2 51 A2* getA2() {return A3::getA2();} 64 A2* getA2() {return A4::getA2();} 73 A2 a2 local 217 A2 a2; local 361 A2 a2; local 504 A2 a2; local 647 A2 a2; local 790 A2 a2; local 933 A2 a2; local 1076 A2 a2; local 1219 A2 a2; local [all...] |
/external/libcxx/test/support/ |
allocators.h | 76 class A2 80 explicit A2(int id = 0) : id_(id) {} 95 A2(const A2& a) : id_(a.id()) {copy_called = true;} 96 A2(A2&& a) : id_(a.id()) {move_called = true;} 105 template <class T> bool A2<T>::copy_called = false; 106 template <class T> bool A2<T>::move_called = false; 107 template <class T> bool A2<T>::allocate_called = false; 111 bool operator==(const A2<T>& x, const A2<U>& y [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
allocators.h | 76 class A2 80 explicit A2(int id = 0) : id_(id) {} 95 A2(const A2& a) : id_(a.id()) {copy_called = true;} 96 A2(A2&& a) : id_(a.id()) {move_called = true;} 105 template <class T> bool A2<T>::copy_called = false; 106 template <class T> bool A2<T>::move_called = false; 107 template <class T> bool A2<T>::allocate_called = false; 111 bool operator==(const A2<T>& x, const A2<U>& y [all...] |
/external/llvm/unittests/Support/ |
ArrayRecyclerTest.cpp | 60 Object *A2 = DUT.allocate(Cap, Allocator); 61 A2[0].Num = 121; 62 A2[7].Num = 117; 70 EXPECT_EQ(121, A2[0].Num); 71 EXPECT_EQ(117, A2[7].Num); 75 DUT.deallocate(Cap, A2); 85 EXPECT_EQ(A2, A2x); 98 EXPECT_EQ(A2, A2y); 103 EXPECT_NE(A2, A4);
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixExponential.h | 208 MatrixType A2 = A * A; 209 m_tmp1.noalias() = A2 * A2; 210 m_tmp2 = b[5]*m_tmp1 + b[3]*A2 + b[1]*m_Id; 212 m_V = b[4]*m_tmp1 + b[2]*A2 + b[0]*m_Id; 219 MatrixType A2 = A * A; 220 MatrixType A4 = A2 * A2; 221 m_tmp1.noalias() = A4 * A2; 222 m_tmp2 = b[7]*m_tmp1 + b[5]*A4 + b[3]*A2 + b[1]*m_Id [all...] |
/external/chromium_org/third_party/webrtc/base/ |
sigslottester.h | 77 template <class A1, class A2, class C1, class C2> 80 SigslotTester2(sigslot::signal2<A1, A2>* signal, 90 void OnSignalCallback(A1 arg1, A2 arg2) { 103 template <class A1, class A2, class A3, class C1, class C2, class C3> 106 SigslotTester3(sigslot::signal3<A1, A2, A3>* signal, 116 void OnSignalCallback(A1 arg1, A2 arg2, A3 arg3) { 131 template <class A1, class A2, class A3, class A4, class C1, class C2, class C3, 135 SigslotTester4(sigslot::signal4<A1, A2, A3, A4>* signal, 146 void OnSignalCallback(A1 arg1, A2 arg2, A3 arg3, A4 arg4) { 163 template <class A1, class A2, class A3, class A4, class A5, class C1, class C2 [all...] |
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
base_screen_handler.h | 121 template<typename A1, typename A2> 122 void CallJS(const std::string& method, const A1& arg1, const A2& arg2) { 127 template<typename A1, typename A2, typename A3> 130 const A2& arg2, 138 template<typename A1, typename A2, typename A3, typename A4> 141 const A2& arg2, 176 template<typename T, typename A1, typename A2> 178 void (T::*method)(A1 arg1, A2 arg2)) { 179 base::Callback<void(A1, A2)> callback = 182 name, base::Bind(&CallbackWrapper2<A1, A2>, callback)) [all...] |
/external/clang/test/CodeGenCXX/ |
microsoft-abi-rtti.cpp | 26 struct A2 : Z2, Y2 {}; 27 struct B2 : virtual A2 { B2() {} virtual void f() {} } b2; 32 // CHECK: @"\01??_R2B2@@8" = linkonce_odr constant [5 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@B2@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@A2@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@Z2@@8", %rtti.BaseClassDescriptor* @"\01??_R13A@3EA@Y2@@8", %rtti.BaseClassDescriptor* null] 34 // CHECK: @"\01??_R1A@A@3FA@A2@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUA2@@@8" to i8*), i32 2, i32 0, i32 0, i32 4, i32 80, %rtti.ClassHierarchyDescriptor* @"\01??_R3A2@@8" } 37 // CHECK: @"\01??_R2A2@@8" = linkonce_odr constant [4 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@A2@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Z2@@8", %rtti.BaseClassDescriptor* @"\01??_R13?0A@EA@Y2@@8", %rtti.BaseClassDescriptor* null] 38 // CHECK: @"\01??_R1A@?0A@EA@A2@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUA2@@@8" to i8*), i32 2, i32 0, i32 -1, i32 0, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3A2@@8" } 152 // X64: @"\01??_R2B2@@8" = linkonce_odr constant [5 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@B2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@A2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@Z2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R17A@3EA@Y2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0] 154 // X64: @"\01??_R1A@A@3FA@A2@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.TypeDescriptor8* @"\01??_R0?AUA2@@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 2, i32 0, i32 0, i32 4, i32 80, i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.ClassHierarchyDescriptor* @"\01??_R3A2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32) } 157 // X64: @"\01??_R2A2@@8" = linkonce_odr constant [4 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@A2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Z2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R17?0A@EA@Y2@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 0] 158 // X64: @"\01??_R1A@?0A@EA@A2@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i32 trunc (i64 sub nuw nsw (i64 ptrtoint ( (…) [all...] |
vtt-layout.cpp | 27 class A2 { int i; virtual void f(); }; 28 class V1 : public A1, public A2 { int i; }; 43 // (making A2 a virtual base of V1) 46 class A2 { int i; virtual void f(); }; 47 class V1 : public A1, public virtual A2 { int i; };
|
/external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/ |
allocate_size.pass.cpp | 34 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A; 41 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
|
deallocate.pass.cpp | 33 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A; 39 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/ |
allocate_size.pass.cpp | 34 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A; 41 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
|
deallocate.pass.cpp | 33 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A; 39 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/ |
bind_cc.hpp | 33 template<class R, class B1, class B2, class A1, class A2> 34 _bi::bind_t<R, BOOST_BIND_ST R (BOOST_BIND_CC *) (B1, B2), typename _bi::list_av_2<A1, A2>::type> 35 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2), A1 a1, A2 a2) 38 typedef typename _bi::list_av_2<A1, A2>::type list_type; 39 return _bi::bind_t<R, F, list_type> (f, list_type(a1, a2)); 44 class A1, class A2, class A3> 45 _bi::bind_t<R, BOOST_BIND_ST R (BOOST_BIND_CC *) (B1, B2, B3), typename _bi::list_av_3<A1, A2, A3>::type> 46 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3), A1 a1, A2 a2, A3 a3 variable 57 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3, B4), A1 a1, A2 a2, A3 a3, A4 a4) variable 68 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3, B4, B5), A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) variable 79 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3, B4, B5, B6), A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) variable 90 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3, B4, B5, B6, B7), A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) variable 101 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3, B4, B5, B6, B7, B8), A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) variable 112 BOOST_BIND(BOOST_BIND_ST R (BOOST_BIND_CC *f) (B1, B2, B3, B4, B5, B6, B7, B8, B9), A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9) variable [all...] |
/external/chromium_org/base/ |
callback_list.h | 253 template <typename A1, typename A2> 254 class CallbackList<void(A1, A2)> 255 : public internal::CallbackListBase<Callback<void(A1, A2)> > { 257 typedef Callback<void(A1, A2)> CallbackType; 262 typename internal::CallbackParamTraits<A2>::ForwardType a2) { 267 cb->Run(a1, a2); 275 template <typename A1, typename A2, typename A3> 276 class CallbackList<void(A1, A2, A3)> 277 : public internal::CallbackListBase<Callback<void(A1, A2, A3)> > [all...] |
/external/clang/test/Modules/ |
wildcard-submodule-exports.cpp | 16 unsigned int *A2_ptr = A2;
|
/external/clang/test/SemaCXX/ |
cxx1y-contextual-conversion-tweaks.cpp | 57 struct A2 { 79 void foo(A0 a0, A1 a1, A2 a2, A3 a3, A4 a4, B2 b2) { 82 switch (a2) {} // @82 91 //expected-error@82 {{statement requires expression of integer type ('extended_examples::A2' invalid)}} 110 struct A2 { // leads to ambiguity in C++1y, and no viable match in C++11 137 void foo(A1 a1, A2 a2, B1 b1, B2 b2, C c, D d) { 139 switch (a2) {} // @139 150 //expected-error@139 {{statement requires expression of integer type ('extended_examples_cxx1y::A2' invalid)} [all...] |
dcl_init_aggr.cpp | 96 struct A2 { 101 A2 a1, a2; member in struct:B2 105 operator A2(); 110 A2 a2; variable 113 B2 b2 = { 4, a2, a2 }; 115 B2 b2_3 = { c2, a2, a2 }; [all...] |
namespace-alias.cpp | 35 namespace A2 { } 43 namespace B = A2; // expected-error {{redefinition of 'B' as different kind of symbol}} 49 namespace A2 = A1; 53 return I::A2::i;
|