HomeSort by relevance Sort by last modified time
    Searched refs:A1 (Results 51 - 75 of 374) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
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/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/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...]
  /external/libcxx/test/support/
allocators.h 19 class A1
23 explicit A1(int id = 0) : id_(id) {}
34 A1(const A1& a) : id_(a.id()) {copy_called = true;}
35 A1(A1&& a) : id_(a.id()) {move_called = true;}
38 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
40 A1(A1<U>&& a) : id_(a.id()) {move_called = true;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
allocators.h 19 class A1
23 explicit A1(int id = 0) : id_(id) {}
34 A1(const A1& a) : id_(a.id()) {copy_called = true;}
35 A1(A1&& a) : id_(a.id()) {move_called = true;}
38 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;}
40 A1(A1<U>&& a) : id_(a.id()) {move_called = true;
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
callback_helper.h 83 template <typename A1>
84 struct RelayToTaskRunnerHelper<void(A1)> {
85 static void Run(CallbackHolder<void(A1)>* holder, A1 a1) {
87 holder->from_here(), base::Bind(holder->callback(), RebindForward(a1)));
91 template <typename A1, typename A2>
92 struct RelayToTaskRunnerHelper<void(A1, A2)> {
93 static void Run(CallbackHolder<void(A1, A2)>* holder, A1 a1, A2 a2)
    [all...]
callback_tracker_internal.h 55 template <typename A1>
56 struct InvokeAndInvalidateHelper<void(A1)> {
58 const base::Callback<void(A1)>& callback, A1 a1) {
61 callback.Run(base::internal::CallbackForward(a1));
66 template <typename A1, typename A2>
67 struct InvokeAndInvalidateHelper<void(A1, A2)> {
69 const base::Callback<void(A1, A2)>& callback, A1 a1, A2 a2)
    [all...]
  /external/chromium_org/media/base/
bind_to_current_loop.h 59 template <typename A1>
60 struct TrampolineHelper<void(A1)> {
63 const base::Callback<void(A1)>& cb, A1 a1) {
65 internal::TrampolineForward(a1)));
70 template <typename A1, typename A2>
71 struct TrampolineHelper<void(A1, A2)> {
74 const base::Callback<void(A1, A2)>& cb, A1 a1, A2 a2)
    [all...]
  /external/chromium_org/testing/
gmock_mutant.h     [all...]
  /external/clang/test/Sema/
enum-increment.c 3 enum A { A1, A2, A3 };
  /external/libcxx/test/utilities/tuple/tuple.tuple/
alloc_first.h 21 typedef A1<int> allocator_type;
27 alloc_first(std::allocator_arg_t, const A1<int>& a)
34 alloc_first(std::allocator_arg_t, const A1<int>& a, int d)
41 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d)
alloc_last.h 21 typedef A1<int> allocator_type;
27 alloc_last(const A1<int>& a)
34 alloc_last(int d, const A1<int>& a)
41 alloc_last(const alloc_last& d, const A1<int>& a)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
alloc_first.h 21 typedef A1<int> allocator_type;
27 alloc_first(std::allocator_arg_t, const A1<int>& a)
34 alloc_first(std::allocator_arg_t, const A1<int>& a, int d)
41 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d)
alloc_last.h 21 typedef A1<int> allocator_type;
27 alloc_last(const A1<int>& a)
34 alloc_last(int d, const A1<int>& a)
41 alloc_last(const alloc_last& d, const A1<int>& a)
  /external/lldb/test/expression_command/radar_8638051/
main.c 44 int A1 = a(1); // a(1) -> b(1) -> c(1)
45 printf("a(1) returns %d\n", A1);
  /external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
main.c 41 int A1 = a(1); // a(1) -> b(1) -> c(1)
42 printf("a(1) returns %d\n", A1);
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
main.c 42 int A1 = a(1); // a(1) -> b(1) -> c(1)
43 printf("a(1) returns %d\n", A1);
  /external/lldb/test/functionalities/conditional_break/
main.c 44 int A1 = a(1); // a(1) -> b(1) -> c(1)
45 printf("a(1) returns %d\n", A1);
  /external/lldb/test/python_api/event/
main.c 39 int A1 = a(1); // a(1) -> b(1) -> c(1)
40 printf("a(1) returns %d\n", A1);
  /external/lldb/test/python_api/function_symbol/
main.c 50 int A1 = a(1); // a(1) -> b(1) -> c(1)
51 printf("a(1) returns %d\n", A1);

Completed in 2846 milliseconds

1 23 4 5 6 7 8 91011>>