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

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/
propagate_on_container_swap.pass.cpp 27 std::scoped_allocator_adaptor<A1<int>>::propagate_on_container_swap,
31 std::scoped_allocator_adaptor<A1<int>, A2<int>>::propagate_on_container_swap,
35 std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>>::propagate_on_container_swap,
  /external/chromium_org/base/mac/
bind_objc_block.h 30 template<typename R, typename A1>
31 R RunBlock(base::mac::ScopedBlock<R(^)(A1)> block, A1 a) {
32 R(^extracted_block)(A1) = block.get();
46 template<typename R, typename A1>
47 base::Callback<R(A1)> BindBlock(R(^block)(A1)) {
48 return base::Bind(&base::internal::RunBlock<R, A1>,
49 base::mac::ScopedBlock<R(^)(A1)>(Block_copy(block)));
  /external/clang/test/Parser/
cxx-extra-semi.cpp 9 void A1();
32 int a1; member in union:B
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
allocate_size_hint.pass.cpp 27 typedef std::scoped_allocator_adaptor<A1<int>> A;
29 A1<int>::allocate_called = false;
31 assert(A1<int>::allocate_called == true);
34 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>> A;
36 A1<int>::allocate_called = false;
38 assert(A1<int>::allocate_called == true);
41 typedef std::scoped_allocator_adaptor<A1<int>, A2<int>, A3<int>> A;
43 A1<int>::allocate_called = false;
45 assert(A1<int>::allocate_called == true);
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-generated-internal-utils.h 74 template <typename A1>
75 struct MatcherTuple< ::std::tr1::tuple<A1> > {
76 typedef ::std::tr1::tuple<Matcher<A1> > type;
79 template <typename A1, typename A2>
80 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > {
81 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2> > type;
84 template <typename A1, typename A2, typename A3>
85 struct MatcherTuple< ::std::tr1::tuple<A1, A2, A3> > {
86 typedef ::std::tr1::tuple<Matcher<A1>, Matcher<A2>, Matcher<A3> > type;
89 template <typename A1, typename A2, typename A3, typename A4
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
storage.hpp 40 template<class A1> struct storage1
42 explicit storage1( A1 a1 ): a1_( a1 ) {}
49 A1 a1_;
76 template<class A1, class A2> struct storage2: public storage1<A1>
78 typedef storage1<A1> inherited;
80 storage2( A1 a1, A2 a2 ): storage1<A1>( a1 ), a2_( a2 ) {
    [all...]
bind_template.hpp 29 template<class A1> result_type operator()(A1 & a1)
31 list1<A1 &> a(a1);
35 template<class A1> result_type operator()(A1 & a1) const
37 list1<A1 &> a(a1);
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-function-params.cpp 34 template<typename R, typename A1> struct X0<R(A1 param)> { };
36 template<typename T, typename A1, typename A2>
37 void instF0(X0<T(A1)> x0a, X0<T(A2)> x0b) {
38 X0<T(A1)> x0c;
44 template<typename R, typename A1, R (*ptr)(A1)> struct FuncPtr { };
45 template<typename A1, int (*ptr)(A1)> struct FuncPtr<int, A1, ptr> { }
    [all...]
  /external/chromium_org/base/
bind_internal_win.h 64 template <typename R, typename A1>
65 class RunnableAdapter<R(__stdcall *)(A1)> {
67 typedef R (RunType)(A1);
69 explicit RunnableAdapter(R(__stdcall *function)(A1))
73 R Run(typename CallbackParamTraits<A1>::ForwardType a1) {
74 return function_(a1);
78 R (__stdcall *function_)(A1);
82 template <typename R, typename A1>
83 class RunnableAdapter<R(__fastcall *)(A1)> {
    [all...]
cancelable_callback.h 128 template <typename A1>
129 class CancelableCallback<void(A1)> {
134 explicit CancelableCallback(const base::Callback<void(A1)>& callback)
157 void Reset(const base::Callback<void(A1)>& callback) {
170 const base::Callback<void(A1)>& callback() const {
175 void Forward(A1 a1) const {
176 callback_.Run(a1);
182 forwarder_ = base::Bind(&CancelableCallback<void(A1)>::Forward,
187 base::WeakPtrFactory<CancelableCallback<void(A1)> > weak_factory_
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Filters.h 34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients
40 LVM_INT16 A1;
49 * Biquad with coefficients A0, A1 and B1 coefficients
55 LVM_INT16 A1;
  /cts/tools/signature-tools/test/signature/comparator/
AnnotationCompareTest.java 37 " A1 value() default @A1;" +
39 CompilationUnit A1 = new CompilationUnit("a.A1",
41 "public @interface A1 {" +
51 IApi fromApi = convert(A0, A1, AnnotBDefault);
52 IApi toApi = convert(A0, A1, AnnotB);
63 CompilationUnit A1 = new CompilationUnit("a.A0",
69 IApi toApi = convert(A1);
  /external/chromium_org/sync/internal_api/public/util/
weak_handle.h 153 template <typename U, typename A1>
155 void (U::*fn)(A1),
156 typename ParamTraits<A1>::ForwardType a1) const {
159 Bind(&WeakHandleCore::template DoCall1<U, A1>,
160 this, fn, a1));
163 template <typename U, typename A1, typename A2>
165 void (U::*fn)(A1, A2),
166 typename ParamTraits<A1>::ForwardType a1,
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
construct.pass.cpp 57 struct A1
60 A1(char c)
67 int A1::count = 0;
93 A1::count = 0;
95 std::aligned_storage<sizeof(A1)>::type a1; local
96 assert(A1::count == 0);
97 std::allocator_traits<A<int> >::construct(a, (A1*)&a1, 'c');
98 assert(A1::count == 1)
124 std::aligned_storage<sizeof(A1)>::type a1; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/
allocators.h 10 class A1
14 explicit A1(int id = 0) : id_(id) {}
25 A1(const A1& a) : id_(a.id()) {copy_called = true;}
26 A1(A1&& a) : id_(a.id()) {move_called = true;}
29 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
31 A1(A1<U>&& a) : id_(a.id()) {move_called = true;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
allocators.h 10 class A1
14 explicit A1(int id = 0) : id_(id) {}
25 A1(const A1& a) : id_(a.id()) {copy_called = true;}
26 A1(A1&& a) : id_(a.id()) {move_called = true;}
29 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
31 A1(A1<U>&& a) : id_(a.id()) {move_called = true;
    [all...]
alloc_first.h 12 typedef A1<int> allocator_type;
18 alloc_first(std::allocator_arg_t, const A1<int>& a)
25 alloc_first(std::allocator_arg_t, const A1<int>& a, int d)
32 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d)
alloc_last.h 12 typedef A1<int> allocator_type;
18 alloc_last(const A1<int>& a)
25 alloc_last(int d, const A1<int>& a)
32 alloc_last(const alloc_last& d, const A1<int>& a)
  /external/chromium_org/media/base/
bind_to_loop.h 67 template <typename A1>
68 struct TrampolineHelper<void(A1)> {
71 const base::Callback<void(A1)>& cb, A1 a1) {
72 loop->PostTask(FROM_HERE, base::Bind(cb, internal::TrampolineForward(a1)));
77 template <typename A1, typename A2>
78 struct TrampolineHelper<void(A1, A2)> {
81 const base::Callback<void(A1, A2)>& cb, A1 a1, A2 a2)
    [all...]
  /external/chromium/testing/
gmock_mutant.h     [all...]
  /external/chromium_org/testing/
gmock_mutant.h     [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
base_screen_handler.h 109 template<typename A1>
110 void CallJS(const std::string& method, const A1& arg1) {
114 template<typename A1, typename A2>
115 void CallJS(const std::string& method, const A1& arg1, const A2& arg2) {
120 template<typename A1, typename A2, typename A3>
122 const A1& arg1,
131 template<typename A1, typename A2, typename A3, typename A4>
133 const A1& arg1,
161 template<typename T, typename A1>
162 void AddCallback(const std::string& name, void (T::*method)(A1 arg1))
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-nice-strict.h 79 template <typename A1>
80 explicit NiceMock(const A1& a1) : MockClass(a1) {
84 template <typename A1, typename A2>
85 NiceMock(const A1& a1, const A2& a2) : MockClass(a1, a2) {
90 template <typename A1, typename A2, typename A3>
91 NiceMock(const A1& a1, const A2& a2, const A3& a3) : MockClass(a1, a2, a3)
    [all...]
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 56 Object *A1 = DUT.allocate(Cap, Allocator);
57 A1[0].Num = 21;
58 A1[7].Num = 17;
68 EXPECT_EQ(21, A1[0].Num);
69 EXPECT_EQ(17, A1[7].Num);
78 EXPECT_EQ(21, A1[0].Num);
79 EXPECT_EQ(17, A1[7].Num);
88 DUT.deallocate(Cap, A1);
96 EXPECT_EQ(A1, A1x);
102 EXPECT_NE(A1, A4)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc.pass.cpp 28 std::tuple<> t(std::allocator_arg, A1<int>());
31 std::tuple<int> t(std::allocator_arg, A1<int>());
35 std::tuple<DefaultOnly> t(std::allocator_arg, A1<int>());
40 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5));
46 std::tuple<alloc_last> t(std::allocator_arg, A1<int>(5));
52 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5));
61 A1<int>(5));

Completed in 1586 milliseconds

12 3 4 5 6 7 8 91011>>