HomeSort by relevance Sort by last modified time
    Searched refs:A3 (Results 26 - 50 of 244) sorted by null

12 3 4 5 6 7 8 910

  /external/lldb/test/python_api/function_symbol/
main.c 56 int A3 = a(3); // a(3) -> c(3)
57 printf("a(3) returns %d\n", A3);
  /external/lldb/test/python_api/lldbutil/frame/
main.c 43 int A3 = a(3); // a(3) -> c(3)
44 printf("a(3) returns %d\n", A3);
  /external/lldb/test/python_api/symbol-context/
main.c 47 int A3 = a(3); // a(3) -> c(3)
48 printf("a(3) returns %d\n", A3);
  /external/lldb/test/python_api/target/
main.c 55 int A3 = a(3); // a(3) -> c(3)
56 printf("a(3) returns %d\n", A3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
max_size.pass.cpp 37 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
38 const A a(A1<int>(200), A2<int>(), A3<int>());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/
inner_allocator_type.pass.cpp 35 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/utilities/allocator.adaptor/allocator.adaptor.cnstr/
converting_copy.pass.cpp 52 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);
copy.pass.cpp 51 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);
allocs.pass.cpp 30 A1<int> a3(3);
31 A a(a3);
78 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
    [all...]
converting_move.pass.cpp 55 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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.cnstr/
converting_copy.pass.cpp 52 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);
copy.pass.cpp 51 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);
allocs.pass.cpp 30 A1<int> a3(3);
31 A a(a3);
78 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
    [all...]
converting_move.pass.cpp 55 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/chromium_org/base/
bind_internal_win.h 138 template <typename R, typename A1, typename A2, typename A3>
139 class RunnableAdapter<R(__stdcall *)(A1, A2, A3)> {
141 typedef R (RunType)(A1, A2, A3);
143 explicit RunnableAdapter(R(__stdcall *function)(A1, A2, A3))
149 typename CallbackParamTraits<A3>::ForwardType a3) {
150 return function_(a1, a2, a3);
154 R (__stdcall *function_)(A1, A2, A3);
158 template <typename R, typename A1, typename A2, typename A3>
159 class RunnableAdapter<R(__fastcall *)(A1, A2, A3)> {
    [all...]
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 64 Object *A3 = DUT.allocate(Cap, Allocator);
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, A4)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
bind_template.hpp 113 template<class A1, class A2, class A3> result_type operator()(A1 & a1, A2 & a2, A3 & a3)
115 list3<A1 &, A2 &, A3 &> a(a1, a2, a3);
119 template<class A1, class A2, class A3> result_type operator()(A1 & a1, A2 & a2, A3 & a3) const
121 list3<A1 &, A2 &, A3 &> a(a1, a2, a3);
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
callback_helper.h 100 template <typename A1, typename A2, typename A3>
101 struct RelayToTaskRunnerHelper<void(A1, A2, A3)> {
102 static void Run(CallbackHolder<void(A1, A2, A3)>* holder, A1 a1, A2 a2,
103 A3 a3) {
106 RebindForward(a2), RebindForward(a3)));
110 template <typename A1, typename A2, typename A3, typename A4>
111 struct RelayToTaskRunnerHelper<void(A1, A2, A3, A4)> {
112 static void Run(CallbackHolder<void(A1, A2, A3, A4)>* holder, A1 a1, A2 a2,
113 A3 a3, A4 a4)
    [all...]
callback_tracker_internal.h 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) {
87 base::internal::CallbackForward(a3));
92 template <typename A1, typename A2, typename A3, typename A4>
93 struct InvokeAndInvalidateHelper<void(A1, A2, A3, A4)> {
95 const base::Callback<void(A1, A2, A3, A4)>& callback, A1 a1,
96 A2 a2, A3 a3, A4 a4)
    [all...]
  /external/chromium_org/media/base/
bind_to_current_loop.h 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) {
88 internal::TrampolineForward(a3)));
93 template <typename A1, typename A2, typename A3, typename A4>
94 struct TrampolineHelper<void(A1, A2, A3, A4)> {
97 const base::Callback<void(A1, A2, A3, A4)>& cb, A1 a1, A2 a2, A3 a3
    [all...]
  /external/libcxxabi/test/
dynamic_cast5.cpp 31 struct A3
36 virtual ~A3() {}
40 A3* getA3() {return this;}
44 : public A3,
50 t1::A1* getA1() {return A3::getA1();}
51 A2* getA2() {return A3::getA2();}
52 A3* getA3() {return A3::getA3();}
58 public A3
65 A3* getA3() {return A4::getA3();
74 A3 a3; local
218 A3 a3; local
362 A3 a3; local
505 A3 a3; local
648 A3 a3; local
791 A3 a3; local
934 A3 a3; local
1077 A3 a3; local
1220 A3 a3; local
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
dynamic_cast5.cpp 31 struct A3
36 virtual ~A3() {}
40 A3* getA3() {return this;}
44 : public A3,
50 t1::A1* getA1() {return A3::getA1();}
51 A2* getA2() {return A3::getA2();}
52 A3* getA3() {return A3::getA3();}
58 public A3
65 A3* getA3() {return A4::getA3();
74 A3 a3; local
218 A3 a3; local
362 A3 a3; local
505 A3 a3; local
648 A3 a3; local
791 A3 a3; local
934 A3 a3; local
1077 A3 a3; local
1220 A3 a3; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
dynamic_cast5.cpp 31 struct A3
36 virtual ~A3() {}
40 A3* getA3() {return this;}
44 : public A3,
50 t1::A1* getA1() {return A3::getA1();}
51 A2* getA2() {return A3::getA2();}
52 A3* getA3() {return A3::getA3();}
58 public A3
65 A3* getA3() {return A4::getA3();
74 A3 a3; local
218 A3 a3; local
362 A3 a3; local
505 A3 a3; local
648 A3 a3; local
791 A3 a3; local
934 A3 a3; local
1077 A3 a3; local
1220 A3 a3; local
    [all...]
  /external/chromium_org/testing/
gmock_mutant.h     [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/c6x/lib/
memcpy_64plus.S 19 || MV .D1 A4,A3
29 [A0] STB .D1T1 A5,*A3++
31 [A1] STB .D1T1 A7,*A3++
32 [A1] STB .D1T1 A8,*A3++
33 [B0] STNW .D1T1 A9,*A3++ ; return when len < 8
42 || STNDW .D1T1 A9:A8,*A3++

Completed in 2310 milliseconds

12 3 4 5 6 7 8 910