/frameworks/compile/slang/tests/F_root_compute_non_const_usrData/ |
root_compute_non_const_usrData.rs | 4 void root(const int *ain, int *aout, void *usrData) {
|
/frameworks/compile/slang/tests/F_root_graphics/ |
root_graphics.rs | 4 void root(void) {
|
/external/clang/test/Sema/ |
x86-attr-force-align-arg-pointer.c | 6 void b(void) __attribute__((force_align_arg_pointer)); 7 void __attribute__((force_align_arg_pointer)) c(void); 10 void b(void) {} 13 void d(void); 14 void __attribute__((force_align_arg_pointer)) d(void) {} [all...] |
deref.c | 3 void 4 foo (void) 11 void foo2 (void) 18 void foo3 (void) 20 void* x = 0; 21 void* y = &*x; /* expected-warning{{address of an expression of type 'void'}} */ 24 extern const void cv1 [all...] |
/external/icu4c/test/intltest/ |
tstnorm.h | 26 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ); 28 void TestHangulCompose(void); 29 void TestHangulDecomp(void); 30 void TestPrevious(void); 31 void TestDecomp(void); 32 void TestCompatDecomp(void) [all...] |
numfmtst.h | 24 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ); 30 void TestAPI(void); 32 void TestCoverage(void); 37 void TestQuotes(void); 41 void TestExponential(void); 45 void TestCurrencySign(void) [all...] |
/external/clang/test/CodeGenObjCXX/ |
arc-mangle.mm | 3 // CHECK: define void @_Z1fPU8__strongP11objc_object(i8**) 4 void f(__strong id *) {} 5 // CHECK: define void @_Z1fPU6__weakP11objc_object(i8**) 6 void f(__weak id *) {} 7 // CHECK: define void @_Z1fPU15__autoreleasingP11objc_object(i8**) 8 void f(__autoreleasing id *) {} 9 // CHECK: define void @_Z1fPP11objc_object(i8**) 10 void f(__unsafe_unretained id *) {} 11 // CHECK: define void @_Z1fPKU8__strongP11objc_object(i8**) 12 void f(const __strong id *) { [all...] |
/external/clang/test/Parser/ |
function-decls.c | 4 void foo() { 6 X = sizeof(void (*(*)())()); 8 X = sizeof(void (*(int arga, void (*argb)(double Y)))(void* Z));
|
top-level-semi-cxx0x.cpp | 3 void foo(); 5 void bar() { }; 7 void wibble(); 12 void f() { }; 14 void g();
|
/external/clang/test/SemaCXX/ |
vararg-default-arg.cpp | 4 void f1(void); 5 void f2(const char * = __null, ...); 7 void f1(void)
|
/external/llvm/test/Other/ |
2008-10-06-RemoveDeadPass.ll | 2 define void @foo() nounwind { 3 ret void 6 define void @main(...) nounwind { 7 call void @foo() 8 ret void
|
/external/llvm/test/Transforms/DeadArgElim/ |
2006-06-27-struct-ret.ll | 3 define internal void @build_delaunay({ i32 }* sret %agg.result) { 4 ret void 7 define void @test() { 8 call void @build_delaunay( { i32 }* sret null ) 9 ret void
|
/external/llvm/test/Transforms/GlobalDCE/ |
2002-07-17-CastRef.ll | 3 define internal void @func() { 4 ret void 7 define void @main() { 8 %X = bitcast void ()* @func to i32* ; <i32*> [#uses=0] 9 ret void
|
/external/llvm/test/Transforms/Inline/ |
2004-04-20-InlineLinkOnce.ll | 3 define linkonce void @caller() { 4 call void @callee( ) 5 ret void 8 define linkonce void @callee() { 9 ret void
|
/external/llvm/test/Transforms/PruneEH/ |
2008-06-02-Weak.ll | 3 define weak void @f() { 5 ret void 8 define void @g() { 10 call void @f() 11 ret void
|
/external/llvm/test/Transforms/TailCallElim/ |
trivial_codegen_tailcall.ll | 2 ; RUN: grep {tail call void @foo} 5 declare void @foo() 7 define void @bar() { 8 call void @foo( ) 9 ret void
|
/external/openssh/ |
packet.h | 26 void packet_set_connection(int, int); 27 void packet_set_timeout(int, int); 28 void packet_set_nonblocking(void); 29 int packet_get_connection_in(void); 30 int packet_get_connection_out(void); 31 void packet_close(void); 32 void packet_set_encryption_key(const u_char *, u_int, int); 34 void packet_set_protocol_flags(u_int) [all...] |
/sdk/emulator/opengl/system/GLESv2_enc/ |
GL2Encoder.h | 29 void setClientState(GLClientState *state) { 32 void setSharedGroup(GLSharedGroupPtr shared){ m_shared = shared; } 35 void flush() { m_stream->flush(); } 37 void setInitialized(){ m_initialized = true; }; 40 virtual void setError(GLenum error){ m_error = error; }; 43 void override2DTextureTarget(GLenum target); 44 void restore2DTextureTarget(); 59 void sendVertexAttributes(GLint first, GLsizei count); 63 static GLenum s_glGetError(void * self); 66 static void s_glFlush(void * self) [all...] |
/external/wpa_supplicant_8/src/crypto/ |
aes.h | 14 void * aes_encrypt_init(const u8 *key, size_t len); 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 16 void aes_encrypt_deinit(void *ctx); 17 void * aes_decrypt_init(const u8 *key, size_t len); 18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain); 19 void aes_decrypt_deinit(void *ctx) [all...] |
/external/clang/test/SemaCUDA/ |
function-target.cu | 5 __host__ void h1h(void); 6 __device__ void h1d(void); // expected-note {{candidate function not viable: call to __device__ function from __host__ function}} 7 __host__ __device__ void h1hd(void); 8 __global__ void h1g(void); 14 __host__ void h1(void) { [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
peers.h | 27 void setWpaGui(WpaGui *_wpagui); 28 void event_notify(WpaMsg msg); 31 virtual void context_menu(const QPoint &pos); 32 virtual void enter_pin(); 33 virtual void connect_pbc(); 34 virtual void learn_ap_config(); 35 virtual void ctx_refresh(); 36 virtual void ctx_p2p_start(); 37 virtual void ctx_p2p_stop(); 38 virtual void ctx_p2p_listen() [all...] |
/frameworks/native/opengl/tools/glgen/specs/jsr239/ |
glspec-1.1 | 0 void glBindBuffer ( GLenum target, GLuint buffer )
2 void glBufferData ( GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage )
3 void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data )
4 void glClipPlanef ( GLenum plane, const GLfloat *equation )
5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
6 void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
7 void glColorPointer ( GLint size, GLenum type, GLsizei stride, GLint offset )
8 void glDeleteBuffers ( GLsizei n, const GLuint *buffers )
9 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
10 void glGenBuffers ( GLsizei n, GLuint *buffers ) [all...] |
/external/chromium/chrome/browser/chromeos/cros/ |
mock_network_library.h | 20 MOCK_METHOD1(AddNetworkManagerObserver, void(NetworkManagerObserver*)); 21 MOCK_METHOD1(RemoveNetworkManagerObserver, void(NetworkManagerObserver*)); 22 MOCK_METHOD2(AddNetworkObserver, void(const std::string&, NetworkObserver*)); 23 MOCK_METHOD2(RemoveNetworkObserver, void(const std::string&, 25 MOCK_METHOD1(RemoveObserverForAllNetworks, void(NetworkObserver*)); 26 MOCK_METHOD2(AddNetworkDeviceObserver, void(const std::string&, 28 MOCK_METHOD2(RemoveNetworkDeviceObserver, void(const std::string&, 30 MOCK_METHOD1(AddCellularDataPlanObserver, void(CellularDataPlanObserver*)); 31 MOCK_METHOD1(RemoveCellularDataPlanObserver, void(CellularDataPlanObserver*)); 32 MOCK_METHOD1(AddPinOperationObserver, void(PinOperationObserver*)) [all...] |
/external/clang/test/CodeGen/ |
call.c | 4 void rb_define_global_function (const char*,void(*)(),int); 5 static void rb_f_chop(); 6 void Init_String() { 9 static void rb_f_chop() { 15 typedef void (* JSErrorCallback)(void); 16 void js_GetErrorMessage(void); 17 void JS_ReportErrorNumber(JSErrorCallback errorCallback, ...) [all...] |
/external/llvm/test/CodeGen/PowerPC/ |
calls.ll | 10 declare void @foo() 12 define void @test_direct() { 13 call void @foo( ) 14 ret void 17 define void @test_indirect(void ()* %fp) { 18 call void %fp( ) 19 ret void 22 define void @test_abs() { 23 %fp = inttoptr i32 400 to void ()* ; <void ()*> [#uses=1 [all...] |