/ndk/tests/build/multi-module-path/path2/bar/ |
bar.h | 4 extern int bar(void);
|
/packages/wallpapers/Galaxy4/res/raw/ |
bgstar_fs.glsl | 3 void main() {
|
/packages/wallpapers/HoloSpiral/res/raw/ |
fragment_background.glslf | 3 void main() {
|
/packages/wallpapers/NoiseField/res/raw/ |
bg_fs.glsl | 3 void main() {
|
/packages/wallpapers/PhaseBeam/res/raw/ |
bg_fs.glsl | 3 void main() {
|
/external/icu4c/test/intltest/ |
csdetest.h | 22 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL ); 24 virtual void ConstructionTest(); 25 virtual void UTF8Test(); 26 virtual void UTF16Test(); 27 virtual void C1BytesTest(); 28 virtual void InputFilterTest(); 29 virtual void DetectionTest(); 30 virtual void IBM424Test(); 31 virtual void IBM420Test(); 32 virtual void Ticket6394Test() [all...] |
/external/skia/src/ports/ |
SkMemory_malloc.cpp | 5 void sk_throw() { 10 void sk_out_of_memory(void) { 15 void* sk_malloc_throw(size_t size) { 19 void* sk_realloc_throw(void* addr, size_t size) { 20 void* p = realloc(addr, size); 30 void sk_free(void* p) { 36 void* sk_malloc_flags(size_t size, unsigned flags) [all...] |
/external/clang/test/CXX/class.derived/class.abstract/ |
p5.cpp | 4 virtual void f() = 0; // expected-note{{unimplemented pure virtual method}} 8 virtual void f(); 12 virtual void f() = 0; // expected-note 2{{unimplemented pure virtual method}} 18 void test() { 19 (void)new A; // expected-error{{abstract class}} 20 (void)new B; 21 (void)new C; // expected-error{{abstract class}} 22 (void)new D; // expected-error{{abstract class}}
|
/external/clang/test/CodeGen/ |
functions.c | 14 typedef void T(void); 15 void test3(T f) { 22 void f0() {} 23 // CHECK: define void @f0() 25 void f1(); 26 void f2(void) { 27 // CHECK: call void bitcast (void ()* @f1 to void (i32, i32, i32)*)(i32 1, i32 2, i32 3 [all...] |
/external/clang/test/CodeGenCXX/ |
apple-kext-indirect-call.C | 4 virtual void abc(void) const; 7 void Base::abc(void) const {} 9 void FUNC(Base* p) { 13 // CHECK: getelementptr inbounds (void (%struct.Base*)** bitcast ([3 x i8*]* @_ZTV4Base to void (%struct.Base*)**), i64 2) 14 // CHECK-NOT: call void @_ZNK4Base3abcEv
|
deferred-global-init.cpp | 4 extern void* foo; 5 static void* const a = foo; 6 void* bar() { return a; } 10 // CHECK: define internal void @__cxx_global_var_init 12 // CHECK: ret void 14 // CHECK: define internal void @_GLOBAL__I_a 15 // CHECK: call void @__cxx_global_var_init() 16 // CHECK: ret void
|
/external/clang/test/Parser/ |
opencl-kernel.cl | 3 __kernel void test() 7 kernel void test1()
|
/external/clang/test/Sema/ |
implicit-builtin-redecl.c | 4 static void* malloc(int); 5 static void* malloc(int size) { 6 return ((void*)0); /*do not use heap in this file*/ 9 void *calloc(int, int, int); // expected-warning{{incompatible redeclaration of library function 'calloc' will be ignored}} \ 10 // expected-note{{'calloc' is a builtin with type 'void *}} 12 void f1(void) { 16 void f2() {
|
/external/llvm/test/CodeGen/Alpha/ |
mb.ll | 3 define void @test() { 5 ret void
|
/external/llvm/test/CodeGen/Generic/ |
2005-10-18-ZeroSizeStackObject.ll | 3 define void @test() { 5 ret void
|
pr3288.ll | 4 define void @a() { 6 ret void 8 define void @b() { 10 ret void 12 define void @c() { 14 ret void 16 define void @d() { 18 ret void 20 define void @e() { 22 ret void [all...] |
/external/llvm/test/CodeGen/PowerPC/ |
2008-06-19-LegalizerCrash.ll | 3 define void @t() nounwind { 4 call void null( ppc_fp128 undef )
|
/external/llvm/test/CodeGen/SystemZ/ |
00-RetVoid.ll | 3 define void @foo() { 5 ret void
|
/external/llvm/test/CodeGen/XCore/ |
sr-intrinsics.ll | 2 declare void @llvm.xcore.setsr(i32) 3 declare void @llvm.xcore.clrsr(i32) 5 define void @setsr() nounwind { 8 call void @llvm.xcore.setsr(i32 128) 9 ret void 13 define void @clrsr() nounwind { 16 call void @llvm.xcore.clrsr(i32 128) 17 ret void
|
/external/valgrind/main/memcheck/tests/ |
wrap7so.c | 6 void actual ( void )
|
/frameworks/compile/slang/tests/F_init_nonvoid/ |
stderr.txt.expect | 1 init_nonvoid.rs:4:5: error: init(void) is required to have a void return type
|
/frameworks/compile/slang/tests/P_overload/ |
overload.rs | 4 void __attribute__((overloadable)) foo(int i) { 7 void __attribute__((overloadable)) foo(float f) {
|
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/ |
tst_qscriptvalue.cpp | 42 void values_data(); 44 void ctorBool(); 45 void ctorReal(); 46 void ctorNumber(); 47 void ctorQString(); 48 void ctorCString(); 49 void ctorSpecial(); 50 void ctorQScriptValue(); 52 void isValid_data(); 53 void isValid() [all...] |
/external/clang/test/Rewriter/ |
rewrite-block-pointer.mm | 2 // RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp 5 typedef void * id; 6 void *sel_registerName(const char *); 11 void foo(void (^block)(int)); 14 static void enumerateIt(void (^block)(id, id, char *)) { 20 void apply(void (^block)(int)); 22 static void x(int (^cmp)(int, int)) [all...] |
/external/webkit/Source/WebKit2/UIProcess/API/qt/ |
ClientImpl.h | 30 void qt_wk_didStartProvisionalLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo); 31 void qt_wk_didReceiveServerRedirectForProvisionalLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo); 32 void qt_wk_didFailProvisionalLoadWithErrorForFrame(WKPageRef, WKFrameRef, WKErrorRef, WKTypeRef, const void* clientInfo); 33 void qt_wk_didCommitLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo); 34 void qt_wk_didFinishDocumentLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo) [all...] |