Home
last modified time | relevance | path

Searched refs:a0 (Results 1 – 15 of 15) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest-linked_ptr_test.cc79 linked_ptr<A> a0, a1, a2; in TEST_F() local
81 a0.operator=(a0); in TEST_F()
83 ASSERT_EQ(a0.get(), static_cast<A*>(NULL)); in TEST_F()
86 ASSERT_TRUE(a0 == NULL); in TEST_F()
92 a0 = a3; in TEST_F()
93 ASSERT_TRUE(a0 == a3); in TEST_F()
94 ASSERT_TRUE(a0 != NULL); in TEST_F()
95 ASSERT_TRUE(a0.get() == a3); in TEST_F()
96 ASSERT_TRUE(a0 == a3.get()); in TEST_F()
97 linked_ptr<A> a4(a0); in TEST_F()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
Ddestroy.pass.cpp60 std::aligned_storage<sizeof(A0)>::type a0; in main() local
61 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main()
63 std::allocator_traits<A<int> >::destroy(a, (A0*)&a0); in main()
71 std::aligned_storage<sizeof(A0)>::type a0; in main() local
72 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); in main()
75 std::allocator_traits<B<int> >::destroy(b, (A0*)&a0); in main()
Dconstruct.pass.cpp87 std::aligned_storage<sizeof(A0)>::type a0; in main() local
89 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main()
113 std::aligned_storage<sizeof(A0)>::type a0; in main() local
116 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
Dinvoke.pass.cpp65 A_void_1 a0; in test_void_1() local
66 std::reference_wrapper<A_void_1> r1(a0); in test_void_1()
138 A_int_1 a0; in test_int_1() local
139 std::reference_wrapper<A_int_1> r1(a0); in test_int_1()
219 A_void_2 a0; in test_void_2() local
220 std::reference_wrapper<A_void_2> r1(a0); in test_void_2()
295 A_int_2 a0; in testint_2() local
296 std::reference_wrapper<A_int_2> r1(a0); in testint_2()
Dinvoke_int_0.pass.cpp52 A_int_0 a0; in test_int_0() local
53 std::reference_wrapper<A_int_0> r1(a0); in test_int_0()
Dinvoke_void_0.pass.cpp57 A_void_0 a0; in test_void_0() local
58 std::reference_wrapper<A_void_0> r1(a0); in test_void_0()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
Dinvoke_int_0.pass.cpp49 A_int_0 a0; in test_int_0() local
50 std::function<int ()> r1(a0); in test_int_0()
Dinvoke.pass.cpp62 A_void_1 a0; in test_void_1() local
63 std::function<void (int)> r1(a0); in test_void_1()
137 A_int_1 a0; in test_int_1() local
138 std::function<int (int)> r1(a0); in test_int_1()
221 A_void_2 a0; in test_void_2() local
222 std::function<void (int, int)> r1(a0); in test_void_2()
299 A_int_2 a0; in testint_2() local
300 std::function<int (int, int)> r1(a0); in testint_2()
Dinvoke_void_0.pass.cpp56 A_void_0 a0; in test_void_0() local
57 std::function<void ()> r1(a0); in test_void_0()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
Dbind.hpp79 typedef typename r0::type a0; typedef
81 typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;
131 typedef typename r0::type a0; typedef
133 typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;
189 typedef typename r0::type a0; typedef
191 typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;
252 typedef typename r0::type a0; typedef
254 typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;
320 typedef typename r0::type a0; typedef
322 typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
Dinvoke_rvalue.pass.cpp73 A_void_1 a0; in test_void_1() local
74 std::bind(a0, _1)(4); in test_void_1()
79 A_void_1 a0; in test_void_1() local
80 std::bind(a0, 4)(); in test_void_1() local
Dinvoke_lvalue.pass.cpp77 A_void_1 a0; in test_void_1() local
79 std::bind(a0, _1)(i); in test_void_1() local
84 A_void_1 a0; in test_void_1() local
86 std::bind(a0, i)(); in test_void_1() local
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
Dbind.hpp425 typedef typename r0::type a0; in BOOST_PP_CAT() typedef
427 typedef typename aux::resolve_bind_arg<a0,AUX778076_BIND_PARAMS(U)>::type f_; in BOOST_PP_CAT()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dlocale.cpp71 make(A0 a0) in make() argument
74 ::new (&buf) T(a0); in make()
81 make(A0 a0, A1 a1) in make() argument
84 ::new (&buf) T(a0, a1); in make()
91 make(A0 a0, A1 a1, A2 a2) in make() argument
94 ::new (&buf) T(a0, a1, a2); in make()
/ndk/sources/host-tools/sed-4.2.1/build-aux/
Dtexinfo.tex8135 \gdef^^a0{~}
8257 \gdef^^a0{~}