/external/clang/test/CodeGenCXX/ |
casts.cpp | 6 void copyFrom(const A &src); 7 void addRef(void); 12 void A::copyFrom(const A &src) { 18 void test(PR5248::A* a) {
|
global-dtor-no-atexit.cpp | 6 // CHECK: call void @_ZN1AC1Ev([[A:%.*]]* @a) 7 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor_a) 8 // CHECK: define internal void @__dtor_a() nounwind 9 // CHECK: call void @_ZN1AD1Ev([[A]]* @a) 11 // CHECK: call void @_ZN1AC1Ev([[A]]* @b) 12 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor_b) 13 // CHECK: define internal void @__dtor_b() nounwind 14 // CHECK: call void @_ZN1AD1Ev([[A]]* @b) 25 // CHECK: define void @_Z4funcv() 27 // CHECK: call void @_ZN1AC1Ev([[A]]* @_ZZ4funcvE2a1 [all...] |
virtual-functions-incomplete-types.cpp | 6 virtual void f(); 10 void B::f() { } 13 // CHECK: declare void @_ZN1B1gEv() 18 virtual void f(); 22 void D::f() { }
|
mangle-exprs.cpp | 35 template < bool condition, typename T = void > 44 void implicit(typename enable_if< O <= 4 >::type* = 0) { 48 void cstyle(typename enable_if< O <= (unsigned)4 >::type* = 0) { 52 void functional(typename enable_if< O <= unsigned(4) >::type* = 0) { 56 void static_(typename enable_if< O <= static_cast<unsigned>(4) >::type* = 0) { 60 void auto_(decltype(new auto(T()))) { 64 void scalar_(decltype(T(), int())) { 73 // CHECK: define weak_odr void @_ZN5Casts8implicitILj4EEEvPN9enable_ifIXleT_Li4EEvE4typeE 74 template void implicit<4>(void*); [all...] |
thunks.cpp | 9 virtual void f(); 13 virtual void f(); 17 virtual void c(); 19 virtual void f(); 22 // CHECK: define void @_ZThn8_N5Test11C1fEv( 23 void C::f() { } 32 virtual void f(); 36 virtual void b(); 37 virtual void f(); 40 // CHECK: define void @_ZTv0_n24_N5Test21B1fEv [all...] |
/external/clang/test/CodeGenObjC/ |
2008-11-25-Blocks.m | 5 - (id)B:(void (^)())blk; 6 - (void)C; 9 - (id)B:(void (^)())blk { 10 __attribute__((__blocks__(byref))) bork* new = ((void *)0); 13 - (void)C {
|
/external/clang/test/Headers/ |
typedef_guards.c | 4 #define NULL ((void*) 0) 22 extern void foo(wchar_t x); 23 extern void bar(size_t x); 24 void *baz() { return NULL; } 25 void quz() {
|
/external/clang/test/Lexer/ |
wchar.c | 3 void f() { 4 (void)L"\U00010000"; // unicode escape produces UTF-16 sequence, so no warning 6 (void)L'\U00010000'; // expected-error {{character too large for enclosing character literal type}} 8 (void)L'ab'; // expected-warning {{extraneous characters in character constant ignored}} 10 (void)L'a\u1000'; // expected-warning {{extraneous characters in character constant ignored}}
|
/external/clang/test/Rewriter/ |
static-type-protocol-1.m | 4 - (void) ProtoDidget; 8 - (void) widget; 12 - (void)StillMode; 16 + (void)MyMeth; 20 + (void)MyMeth
|
/external/clang/test/SemaCXX/ |
addr-of-overloaded-function.cpp | 16 void g(int (*fp)(int)); // expected-note{{candidate function}} 17 void g(int (*fp)(float)); 18 void g(int (*fp)(double)); // expected-note{{candidate function}} 30 void g_test() { 40 void ha(int (*fp)(int)); 41 void hb(int (*fp)(double)); 43 void h_test() { 49 void f(void (*)(A *)); 53 void g() { f(d); [all...] |
reinterpret-fn-obj-pedantic.cpp | 3 void fnptrs() 5 typedef void (*fnptr)(); 7 void *vp = reinterpret_cast<void*>(fp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}} 8 (void)reinterpret_cast<fnptr>(vp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
|
vector-casts.cpp | 8 void f() { 16 (void)reinterpret_cast<__v2si>(v4hi); 17 (void)(__v2si)v4hi; 18 (void)reinterpret_cast<__v4hi>(v2si); 19 (void)(__v4hi)v2si; 20 (void)reinterpret_cast<unsigned long long>(v2si); 21 (void)(unsigned long long)v2si; 22 (void)reinterpret_cast<__v2si>(ll); 23 (void)(__v2si)(ll); 25 (void)reinterpret_cast<S>(v2si); // expected-error {{reinterpret_cast from '__v2si' to 'S' is not allowe (…) [all...] |
/external/clang/test/SemaObjC/ |
autoreleasepool.m | 3 void *objc_autoreleasepool_push(); 4 void autoreleasepool_pop(void*); 9 - (void) unregisterTask:(id) task { 13 void *tmp = objc_autoreleasepool_push();
|
method-undefined-warn-1.m | 4 - (void) meth; 5 - (void) meth : (int) arg1; 8 + (void) cls_meth1 : (int) arg1; // expected-note {{method definition for 'cls_meth1:' not found}} 12 - (void) meth {} 13 - (void) meth : (int) arg2{} 14 - (void) cls_meth1 : (int) arg2{} 18 - (void) meth; 19 - (void) meth : (int) arg1; 22 + (void) cls_meth1 : (int) arg1; // expected-note {{method definition for 'cls_meth1:' not found}} 26 - (void) meth { [all...] |
/external/llvm/test/CodeGen/X86/ |
2011-08-29-InitOrder.ll | 5 @llvm.global_ctors = appending global [3 x { i32, void ()* }] [{ i32, void ()* } { i32 2000, void ()* @construct_2 }, { i32, void ()* } { i32 3000, void ()* @construct_3 }, { i32, void ()* } { i32 1000, void ()* @construct_1 }] 17 @llvm.global_dtors = appending global [3 x { i32, void ()* }] [{ i32, void ()* } { i32 2000, void ()* @destruct_2 }, { i32, void ()* } { i32 1000, void ()* @destruct_1 }, { i32, void ()* } { i32 3 (…) [all...] |
/external/llvm/test/ExecutionEngine/ |
hello2.ll | 7 declare void @printf([13 x i8]*, ...) 9 define void @bar() { 10 call void ([13 x i8]*, ...)* @printf( [13 x i8]* @msg ) 11 ret void 15 call void @bar( )
|
/external/llvm/test/Linker/ |
PR8300.ll | 2 ; RUN: declare void @zed(%foo2*) } > %t.ll 8 @zed = alias bitcast (void (%bar*)* @xyz to void (%foo*)*) 10 define void @xyz(%bar* %this) { 12 ret void
|
/external/llvm/test/MC/ARM/ |
cxx-global-constructor.ll | 5 @llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @f }] 7 define void @f() { 8 ret void
|
/external/llvm/test/Transforms/GlobalOpt/ |
2010-10-19-WeakOdr.ll | 9 @llvm.global_ctors = appending global [1 x { i32, void ()* }] [ { i32, void ()* } { i32 65535, void ()* @CTOR } ] 11 define internal void @CTOR() { 13 ret void
|
/external/qemu/ |
balloon.h | 19 typedef ram_addr_t (QEMUBalloonEvent)(void *opaque, ram_addr_t target); 21 void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque); 23 void qemu_balloon(ram_addr_t target); 25 ram_addr_t qemu_balloon_status(void);
|
/external/skia/src/animator/ |
SkDisplayApply.h | 36 void activate(SkAnimateMaker& ); 37 void append(SkApply* apply); 38 void appendActive(SkActive* ); 39 void applyValues(int animatorIndex, SkOperand* values, int count, 42 // void createActive(SkAnimateMaker& ); 44 void disable(); 47 virtual void dump(SkAnimateMaker* ); 50 void enableCreate(SkAnimateMaker& ); 51 void enableDynamic(SkAnimateMaker& ); 52 void endSave(int index) [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
FullscreenVideoController.h | 36 void setMediaElement(WebCore::HTMLMediaElement*); 39 void gtkConfigure(GdkEventConfigure* event); 41 void enterFullscreen(); 42 void exitFullscreen(); 44 void exitOnUserRequest(); 45 void togglePlay(); 46 void beginSeek(); 47 void doSeek(); 48 void endSeek(); 50 void hideHud() [all...] |
/external/wpa_supplicant_8/src/drivers/ |
driver_wext.h | 15 void *ctx; 56 int wpa_driver_wext_get_bssid(void *priv, u8 *bssid); 57 int wpa_driver_wext_set_bssid(void *priv, const u8 *bssid); 58 int wpa_driver_wext_get_ssid(void *priv, u8 *ssid); 59 int wpa_driver_wext_set_ssid(void *priv, const u8 *ssid, size_t ssid_len); 60 int wpa_driver_wext_set_freq(void *priv, int freq); 61 int wpa_driver_wext_set_mode(void *priv, int mode); 62 int wpa_driver_wext_set_key(const char *ifname, void *priv, enum wpa_alg alg, 66 int wpa_driver_wext_scan(void *priv, struct wpa_driver_scan_params *params); 67 struct wpa_scan_results * wpa_driver_wext_get_scan_results(void *priv) [all...] |
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
EventSender.java | 31 public void reset(WebView webView) { 35 public void enableDOMUIEventLogging(int domNode) { 39 public void fireKeyboardEventsToElement(int domNode) { 43 public void keyDown(String character, String[] withModifiers) { 47 public void keyDown(String character) { 51 public void leapForward(int milliseconds) { 55 public void mouseClick() { 59 public void mouseDown() { 63 public void mouseMoveTo(int x, int y) { 67 public void mouseUp() [all...] |
/bionic/libc/arch-arm/bionic/ |
eabi.c | 31 extern int __cxa_atexit(void (*)(void*), void*, void* ); 47 void* __attribute__((weak)) __dso_handle; 60 __aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle) 66 void __aeabi_memcpy8(void *dest, const void *src, size_t n) [all...] |