Home
last modified time | relevance | path

Searched defs:A1 (Results 1 – 25 of 114) sorted by relevance

12345

/external/libcxxabi/test/
Ddynamic_cast3.cpp21 struct A1 struct
23 char _[43981];
24 virtual ~A1() {} in ~A1()
26 A1* getA1() {return this;} in getA1()
74 struct A1 struct
76 char _[43981];
77 virtual ~A1() {} in ~A1()
79 A1* getA1() {return this;} in getA1()
125 struct A1 struct
127 char _[43981];
[all …]
Ddynamic_cast5.cpp15 struct A1 struct
17 char _[43981];
18 virtual ~A1() {} in ~A1()
20 A1* getA1() {return this;} in getA1()
159 struct A1 struct
161 char _[43981];
162 virtual ~A1() {} in ~A1()
164 A1* getA1() {return this;} in getA1()
303 struct A1 struct
305 char _[43981];
[all …]
/external/chromium_org/base/
Dbind_internal_win.h69 explicit RunnableAdapter(R(__stdcall *function)(A1)) in RunnableAdapter()
87 explicit RunnableAdapter(R(__fastcall *function)(A1)) in RunnableAdapter()
105 explicit RunnableAdapter(R(__stdcall *function)(A1, A2)) in RunnableAdapter()
124 explicit RunnableAdapter(R(__fastcall *function)(A1, A2)) in RunnableAdapter()
143 explicit RunnableAdapter(R(__stdcall *function)(A1, A2, A3)) in RunnableAdapter()
163 explicit RunnableAdapter(R(__fastcall *function)(A1, A2, A3)) in RunnableAdapter()
183 explicit RunnableAdapter(R(__stdcall *function)(A1, A2, A3, A4)) in RunnableAdapter()
204 explicit RunnableAdapter(R(__fastcall *function)(A1, A2, A3, A4)) in RunnableAdapter()
226 explicit RunnableAdapter(R(__stdcall *function)(A1, A2, A3, A4, A5)) in RunnableAdapter()
249 explicit RunnableAdapter(R(__fastcall *function)(A1, A2, A3, A4, A5)) in RunnableAdapter()
[all …]
Dbind_internal.h166 explicit RunnableAdapter(R(*function)(A1)) in RunnableAdapter()
185 explicit RunnableAdapter(R(T::*method)(A1)) in RunnableAdapter()
222 explicit RunnableAdapter(R(*function)(A1, A2)) in RunnableAdapter()
242 explicit RunnableAdapter(R(T::*method)(A1, A2)) in RunnableAdapter()
262 explicit RunnableAdapter(R(T::*method)(A1, A2) const) in RunnableAdapter()
281 explicit RunnableAdapter(R(*function)(A1, A2, A3)) in RunnableAdapter()
303 explicit RunnableAdapter(R(T::*method)(A1, A2, A3)) in RunnableAdapter()
325 explicit RunnableAdapter(R(T::*method)(A1, A2, A3) const) in RunnableAdapter()
346 explicit RunnableAdapter(R(*function)(A1, A2, A3, A4)) in RunnableAdapter()
370 explicit RunnableAdapter(R(T::*method)(A1, A2, A3, A4)) in RunnableAdapter()
[all …]
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
Dconstruct.pass.cpp57 struct A1 struct
60 A1(char c) in A1() argument
/external/chromium_org/testing/
Dgmock_mutant.h1087 CreateFunctor(T* obj, R (U::*method)(A1)) { in CreateFunctor()
1097 CreateFunctor(R (*function)(A1)) { in CreateFunctor()
1108 CreateFunctor(T** obj, R (U::*method)(A1)) { in CreateFunctor()
1120 CreateFunctor(T* obj, R (__stdcall U::*method)(A1)) { in CreateFunctor()
1130 CreateFunctor(R (__stdcall *function)(A1)) { in CreateFunctor()
1140 CreateFunctor(T** obj, R (__stdcall U::*method)(A1)) { in CreateFunctor()
1153 CreateFunctor(T* obj, R (U::*method)(A1, A2)) { in CreateFunctor()
1163 CreateFunctor(R (*function)(A1, A2)) { in CreateFunctor()
1174 CreateFunctor(T** obj, R (U::*method)(A1, A2)) { in CreateFunctor()
1186 CreateFunctor(T* obj, R (__stdcall U::*method)(A1, A2)) { in CreateFunctor()
[all …]
/external/chromium_org/chrome/browser/devtools/
Ddevtools_embedder_message_dispatcher.cc89 bool ParseAndHandle2(const base::Callback<void(A1, A2)>& handler, in ParseAndHandle2()
104 bool ParseAndHandle3(const base::Callback<void(A1, A2, A3)>& handler, in ParseAndHandle3()
122 bool ParseAndHandle4(const base::Callback<void(A1, A2, A3, A4)>& handler, in ParseAndHandle4()
186 void (T::*handler)(A1), T* delegate) { in RegisterHandler()
194 void (T::*handler)(A1, A2), T* delegate) { in RegisterHandler()
202 void (T::*handler)(A1, A2, A3), T* delegate) { in RegisterHandler()
210 void (T::*handler)(A1, A2, A3, A4), T* delegate) { in RegisterHandler()
/external/clang/test/CodeGenCXX/
Dinit-priority-attr.cpp11 class A1 { class
13 A1() { foo(2); } in A1() function in A1
/external/libcxx/test/support/
Dallocators.h34 A1(const A1& a) : id_(a.id()) {copy_called = true;} in A1() function
35 A1(A1&& a) : id_(a.id()) {move_called = true;} in A1() function
38 A1(const A1<U>& a) : id_(a.id()) {copy_called = true;} in A1() function
40 A1(A1<U>&& a) : id_(a.id()) {move_called = true;} in A1() function
/external/chromium_org/ppapi/shared_impl/
Dproxy_lock.h125 ReturnType CallWhileUnlocked(ReturnType (*function)(A1), const P1& p1) { in CallWhileUnlocked()
130 ReturnType CallWhileUnlocked(ReturnType (*function)(A1, A2), in CallWhileUnlocked()
138 ReturnType CallWhileUnlocked(ReturnType (*function)(A1, A2, A3), in CallWhileUnlocked()
147 ReturnType CallWhileUnlocked(ReturnType (*function)(A1, A2, A3, A4), in CallWhileUnlocked()
157 ReturnType CallWhileUnlocked(ReturnType (*function)(A1, A2, A3, A4, A5), in CallWhileUnlocked()
/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
DA_one.h1 int *A1; variable
/external/clang/test/Sema/
Dms_bitfield_layout.c126 typedef struct A1 { struct
134 } A1; argument
Denum-increment.c3 enum A { A1, A2, A3 }; enumerator
/external/arduino/hardware/arduino/cores/arduino/
DWProgram.h35 const static uint8_t A1 = 55; variable
52 const static uint8_t A1 = 15; variable
/external/chromium_org/third_party/webrtc/base/
Dsigslottester.h80 SigslotTester2(sigslot::signal2<A1, A2>* signal, in SigslotTester2()
106 SigslotTester3(sigslot::signal3<A1, A2, A3>* signal, in SigslotTester3()
135 SigslotTester4(sigslot::signal4<A1, A2, A3, A4>* signal, in SigslotTester4()
167 SigslotTester5(sigslot::signal5<A1, A2, A3, A4, A5>* signal, in SigslotTester5()
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
Dcallback.h73 R (*function)(A1, A2, A3, A4)) { in NewPermanentCallback()
81 R (T::*method)(A1, A2, A3, A4) const) { in NewPermanentCallback()
/external/clang/test/PCH/
Dobjc_exprs.m9 int *A1 = (objc_string)0; // expected-warning {{aka 'NSString *'}} function
/external/clang/test/CodeGenObjC/
Dbitfield-gnu.m2 typedef enum { A1, A2 } A; enum
/external/clang/test/SemaTemplate/
Ddependent-base-member-init.cpp9 class A1 { class
10 A1(int x) {} in A1() function in A1
/external/clang/test/SemaCXX/
Dnamespace-alias.cpp34 namespace A1 { } namespace
47 namespace A1 { int i; } namespace
Dambiguous-builtin-unary-operator.cpp23 struct A1 { operator volatile int&(); }; struct
Dcxx1y-contextual-conversion-tweaks.cpp53 struct A1 { struct
105 struct A1 { // leads to viable match in C++1y, and no viable match in C++11 struct
/external/clang/INPUTS/
Dmacro_pounder_obj.c7 #define A1 A0 A0 A0 A0 A0 A0 macro
/external/clang/test/Index/
Dannotate-comments-preprocessor.c15 #define A1 1 /* Aaa. */ macro
/external/lldb/test/python_api/event/
Dmain.c39 int A1 = a(1); // a(1) -> b(1) -> c(1) in main() local

12345