/external/icu4c/test/intltest/ |
usettest.h | 33 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par=NULL); 35 void Testj2268(); 41 void TestToPattern(); 43 void TestPatterns(void); 44 void TestCategories(void); 45 void TestAddRemove(void); 46 void TestCloneEqualHash(void) [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebSettingsImpl.h | 47 virtual void setStandardFontFamily(const WebString&); 48 virtual void setFixedFontFamily(const WebString&); 49 virtual void setSerifFontFamily(const WebString&); 50 virtual void setSansSerifFontFamily(const WebString&); 51 virtual void setCursiveFontFamily(const WebString&); 52 virtual void setFantasyFontFamily(const WebString&); 53 virtual void setDefaultFontSize(int); 54 virtual void setDefaultFixedFontSize(int); 55 virtual void setMinimumFontSize(int); 56 virtual void setMinimumLogicalFontSize(int) [all...] |
/external/llvm/test/CodeGen/Thumb2/ |
thumb2-tbb.ll | 4 define void @bar(i32 %n.u) { 12 tail call void(...)* @foo1() 13 ret void 15 tail call void(...)* @foo2() 16 ret void 18 tail call void(...)* @foo6() 19 ret void 21 tail call void(...)* @foo3() 22 ret void 24 tail call void(...)* @foo4( [all...] |
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
gl_proc.h | 23 typedef void (GL_APIENTRY *glAlphaFunc_t) (GLenum, GLclampf); 24 typedef void (GL_APIENTRY *glClearColor_t) (GLclampf, GLclampf, GLclampf, GLclampf); 25 typedef void (GL_APIENTRY *glClearDepthf_t) (GLclampf); 26 typedef void (GL_APIENTRY *glClipPlanef_t) (GLenum, const GLfloat*); 27 typedef void (GL_APIENTRY *glColor4f_t) (GLfloat, GLfloat, GLfloat, GLfloat); 28 typedef void (GL_APIENTRY *glDepthRangef_t) (GLclampf, GLclampf); 29 typedef void (GL_APIENTRY *glFogf_t) (GLenum, GLfloat); 30 typedef void (GL_APIENTRY *glFogfv_t) (GLenum, const GLfloat*); 31 typedef void (GL_APIENTRY *glFrustumf_t) (GLfloat, GLfloat, GLfloat, GLfloat, GLfloat, GLfloat); 32 typedef void (GL_APIENTRY *glGetClipPlanef_t) (GLenum, GLfloat) [all...] |
/development/ndk/samples/module-exports/jni/zoo/ |
zoo.c | 3 int something(void)
|
/development/ndk/samples/test-libstdc++/jni/ |
test-libstl.cpp | 4 int main(void)
|
/development/ndk/tests/prebuilt-library/jni/foo/ |
foo.c | 3 int foo(void)
|
foo.h | 4 extern int foo(void);
|
/development/ndk/tests/prebuilt-library/jni/ |
foo-user.c | 3 int main(void)
|
/external/clang/test/ARCMT/Inputs/ |
test1.m.in.result | 4 void test1(id p) {
|
test2.m.in.result | 4 void test2(id p) {
|
/external/clang/test/ARCMT/with space/ |
test1.m.in.result | 4 void test1(id p) {
|
test2.m.in.result | 4 void test2(id p) {
|
/external/clang/test/CodeGen/ |
2002-01-24-HandleCallInsnSEGV.c | 3 void *dlclose(void*); 5 void ap_os_dso_unload(void *handle)
|
2005-03-06-OffsetOfStructCrash.c | 8 void test1() { 9 (int)&((struct XXX*)(((void *)0)))->F; 12 void test2() { 13 &((struct XXX*)(((void *)0)))->F;
|
2007-04-24-bit-not-expr.c | 3 extern bar(void *); 5 void f(void *cd) { 6 bar(((void *)((unsigned long)(cd) ^ -1)));
|
2008-11-02-WeakAlias.c | 5 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ"))); 6 void native_init_IRQ(void) {}
|
attr-cleanup.c | 4 void f(void* arg); 5 void g() { 6 __attribute__((cleanup(f))) void *g;
|
cast.c | 3 extern void go(const void *p); 5 void foo(void) { go(v); }
|
merge-attrs.c | 3 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__)); 5 inline static void __zend_malloc() { 9 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__)); 11 void fontFetch() {
|
pr9614.c | 3 extern void foo_alias (void) __asm ("foo"); 4 inline void foo (void) { 7 extern void bar_alias (void) __asm ("bar"); 8 inline __attribute__ ((__always_inline__)) void bar (void) { 15 void f(void) { [all...] |
/external/clang/test/CodeGenCXX/ |
2004-06-08-LateTemplateInstantiation.cpp | 9 void foo(normal_iterator<int>); 12 void bar() { 16 void *bar2() { 17 return (void*)foo;
|
PR6474.cpp | 5 virtual void foo(); 6 virtual void bar(); 7 virtual void baz(); 10 template <typename T> void X<T>::foo() {} 11 template <typename T> void X<T>::bar() {} 12 template <typename T> void X<T>::baz() {} 14 template <> void X<char>::foo() {} 15 template <> void X<char>::bar() {} 20 virtual void foo(); 21 virtual void bar() [all...] |
inline-functions.cpp | 5 inline void f(); 8 // CHECK-NOT: define void @_ZN1A1fEv 9 void A::f() { } 14 inline void f(); 18 void B<char>::f() { } 22 // CHECK: define void @_Z1fv 23 void f() { } 26 inline void f1(int); 28 // CHECK: define linkonce_odr void @_Z2f1i 29 void f1(int) { [all...] |
/external/clang/test/CodeGenObjC/ |
function-decay.m | 5 - (void) im0: (int (void)) a0 { 9 void func(int pf(void)) {
|