/external/qemu/target-i386/ |
ops_sse_header.h | 38 DEF_HELPER_2(glue(psrlw, SUFFIX), void, Reg, Reg) 39 DEF_HELPER_2(glue(psraw, SUFFIX), void, Reg, Reg) 40 DEF_HELPER_2(glue(psllw, SUFFIX), void, Reg, Reg) 41 DEF_HELPER_2(glue(psrld, SUFFIX), void, Reg, Reg) 42 DEF_HELPER_2(glue(psrad, SUFFIX), void, Reg, Reg) 43 DEF_HELPER_2(glue(pslld, SUFFIX), void, Reg, Reg) 44 DEF_HELPER_2(glue(psrlq, SUFFIX), void, Reg, Reg) 45 DEF_HELPER_2(glue(psllq, SUFFIX), void, Reg, Reg) 48 DEF_HELPER_2(glue(psrldq, SUFFIX), void, Reg, Reg) 49 DEF_HELPER_2(glue(pslldq, SUFFIX), void, Reg, Reg [all...] |
/frameworks/base/opengl/tools/glgen/specs/gles11/ |
GLES11Ext.spec | 0 void glBlendEquationSeparateOES ( GLenum modeRGB, GLenum modeAlpha ) 2 void glBlendFuncSeparateOES ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha ) 3 void glBlendEquationOES ( GLenum mode ) 4 void glDrawTexsOES ( GLshort x, GLshort y, GLshort z, GLshort width, GLshort height ) 5 void glDrawTexiOES ( GLint x, GLint y, GLint z, GLint width, GLint height ) 6 void glDrawTexxOES ( GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height ) 7 void glDrawTexsvOES ( const GLshort *coords ) 8 void glDrawTexivOES ( const GLint *coords ) 9 void glDrawTexxvOES ( const GLfixed *coords ) 10 void glDrawTexfOES ( GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height [all...] |
/external/chromium/chrome/browser/ui/panels/ |
panel.h | 33 void Minimize(); 35 void Restore(); 42 virtual void Show(); 43 virtual void ShowInactive(); 44 virtual void SetBounds(const gfx::Rect& bounds); 45 virtual void Close(); 46 virtual void Activate(); 47 virtual void Deactivate(); 49 virtual void FlashFrame(); 53 virtual void ToolbarSizeChanged(bool is_animating) [all...] |
/external/clang/test/CXX/class.access/class.friend/ |
p6.cpp | 3 void f1(); 6 void f2(); 10 friend void ::f1() { } // expected-error{{friend function definition cannot be qualified with '::'}} 11 friend void X::f2() { } // expected-error{{friend function definition cannot be qualified with 'X::'}} 14 void local() { 15 void f(); 18 friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
|
/external/clang/test/CodeGen/ |
arm-clear.c | 3 void clear0(void *ptr) { 9 void clear1(void *ptr) { 16 void clear2(void *ptr, void *ptr2) {
|
/external/clang/test/CodeGenCXX/ |
static-local-in-local-class.cpp | 5 static void f(); 8 void X::f() { 12 static void g() { 18 (void)Y::g(); 20 (void)i; 24 void foo() { 27 static void Execute() {
|
virtual-function-calls.cpp | 7 virtual void f(char); 10 void f(A *a) { 11 // CHECK: call void % 16 virtual void f(); 19 void f(B * b) { 32 virtual void f(); 35 void f(B *b) {
|
/external/clang/test/PCH/ |
selector-warning.m | 5 + (void) clNotOk; 6 - (void) instNotOk; 7 + (void) cl1; 11 - (void) bar {} 12 + (void) cl1 {} 13 + (void) cl2 {} 17 - (void) b1ar {}
|
/external/clang/test/Sema/ |
builtins-arm.c | 5 void __clear_cache(char*, char*); 9 void __clear_cache(void*, void*); 12 // va_list on ARM is void*. 13 void test2() { 15 *ptr = '0'; // expected-error {{incomplete type 'void' is not assignable}}
|
/external/clang/test/SemaCXX/ |
access-member-pointer.cpp | 5 class B : private A { public: void foo(); }; // expected-note {{declared private here}} 6 void B::foo() { 7 (void)static_cast<void(A::*)()>(&B::foo); 9 void bar() { 10 (void)static_cast<void(A::*)()>(&B::foo); // expected-error {{cannot cast 'B' to its private base class 'A'}}
|
/external/clang/test/SemaObjC/ |
blocks.m | 6 void bar(id(^)(void)); 7 void foo(id <NSObject>(^objectCreationBlock)(void)) { 11 void bar2(id(*)(void)); 12 void foo2(id <NSObject>(*objectCreationBlock)(void)) { 16 void bar3(id(*)()); 17 void foo3(id (*objectCreationBlock)(int)) [all...] |
/external/clang/test/SemaOpenCL/ |
extension-fp64.cl | 3 void f1(double da) { // expected-error {{type 'double' requires cl_khr_fp64 extension}} 5 (void) 1.0; // expected-warning {{double precision constant requires cl_khr_fp64}} 10 void f2(void) { 12 (void) 1.0; 17 void f3(void) {
|
/external/icu4c/test/intltest/ |
aliastst.h | 15 void TestCalendar(); 16 void TestDateFormat(); 17 void TestCollation(); 18 void TestULocale(); 19 void TestUResourceBundle(); 20 void TestDisplayName(); 21 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
|
/external/llvm/test/CodeGen/X86/ |
remat-constant.ll | 3 declare void @bar() nounwind 7 declare void @qux(float %f) nounwind 9 define void @foo() nounwind { 11 call void @bar() 12 call void @qux(float %f) 13 call void @qux(float %f) 14 ret void
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
no-targetdata.ll | 3 declare void @test1f() 5 define void @test1(i32* noalias %p) { 7 call void @test1f() 9 ret void 10 ; CHECK: define void @test1 12 ; CHECK-NEXT: call void 14 ; CHECK-NEXT: ret void
|
/external/llvm/test/Transforms/Inline/ |
2004-04-15-InlineDeletesCall.ll | 7 define internal void @Callee1() { 11 define void @Callee2() { 12 ret void 15 define void @caller() { 16 call void @Callee1( ) 17 call void @Callee2( ) 18 ret void
|
/external/llvm/test/Transforms/InstCombine/ |
2008-01-13-NoBitCastAttributes.ll | 7 define void @c(...) { 8 ret void 11 define void @g(i32* %y) { 13 call void bitcast (void (...)* @c to void (i32*)*)( i32* sret null ) 14 ret void
|
/frameworks/base/packages/SystemUI/ |
proguard.flags | 2 public void notificationIconsClicked(android.view.View); 3 public void systemInfoClicked(android.view.View); 4 public void recentButtonClicked(android.view.View); 5 public void toggleLightsOut(android.view.View); 12 public void setDrawingAlpha(float); 13 public void setGlowAlpha(float); 14 public void setGlowScale(float);
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
LayoutTestController.java | 21 public void dumpAsText(boolean enablePixelTests); 22 public void dumpChildFramesAsText(); 23 public void waitUntilDone(); 24 public void notifyDone(); 27 public void display(); 29 public void testRepaint(); 32 public void dumpTitleChanges(); 33 public void dumpBackForwardList(); 34 public void dumpChildFrameScrollPositions(); 35 public void dumpEditingCallbacks() [all...] |
/system/extras/tests/memtest/ |
thumb.cpp | 4 extern "C" void arm_function_3(int*p); 5 extern "C" void thumb_function_1(int*p); 6 extern "C" void thumb_function_2(int*p); 8 extern "C" _Unwind_Reason_Code trace_function(_Unwind_Context *context, void *arg) 16 void thumb_function_1(int*p) 22 void thumb_function_2(int*p) 26 _Unwind_Backtrace(trace_function, (void*)"backtrace!");
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
GraphicsLayerQt.h | 41 virtual void setNeedsDisplay(); 42 virtual void setNeedsDisplayInRect(const FloatRect&); 43 virtual void setParent(GraphicsLayer* layer); 44 virtual void setName(const String& name); 46 virtual void addChild(GraphicsLayer*); 47 virtual void addChildAtIndex(GraphicsLayer*, int index); 48 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling); 49 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling); 51 virtual void removeFromParent(); 52 virtual void setMaskLayer(GraphicsLayer* layer) [all...] |
/development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/ |
GLDispatch.h | 26 typedef void(*FUNCPTR)(); 33 void dispatchFuncs(GLESVersion version); 36 static void (GLAPIENTRY *glActiveTexture) ( GLenum texture ); 37 static void (GLAPIENTRY *glBindBuffer) (GLenum target, GLuint buffer); 38 static void (GLAPIENTRY *glBindTexture) (GLenum target, GLuint texture); 39 static void (GLAPIENTRY *glBlendFunc) (GLenum sfactor, GLenum dfactor); 40 static void (GLAPIENTRY *glBlendEquation)( GLenum mode ); 41 static void (GLAPIENTRY *glBlendEquationSeparate)(GLenum modeRGB, GLenum modeAlpha); 42 static void (GLAPIENTRY *glBlendFuncSeparate)(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); 43 static void (GLAPIENTRY *glBufferData) (GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage) [all...] |
/external/llvm/test/Transforms/GlobalOpt/ |
2006-07-07-InlineAsmCrash.ll | 19 @llvm.global_ctors = appending global [20 x { i32, void ()* }] [ { i32, void ()* } { i32 65535, void ()* @_GLOBAL__I__ZN62FLAG__foo_string_10FLAGS_E }, { i32, void ()* } { i32 65535, void ()* @_GLOBAL__I__ZN60FLAG__foo_bool_19FLAGS_E }, { i32, void ()* } { i32 65535, void ()* @_GLOBAL__I__ZNK5Bzh4Enum13is_contiguousEv }, { i32, void ()* } { i32 65535, void ()* @_GLOBAL__I__ZN62FLAG__foo_string_17FLAGS_E }, { i32, void ()* } { i32 65535, void ()* @_GLOBAL__I__ZN61FLAG__foo_int32_21FLAGS_E }, { i32, void ()* } { i32 (…) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_glfuncs.h | 6 SDL_PROC_UNUSED(void,glAccum,(GLenum,GLfloat)) 7 SDL_PROC_UNUSED(void,glAlphaFunc,(GLenum,GLclampf)) 9 SDL_PROC_UNUSED(void,glArrayElement,(GLint)) 10 SDL_PROC(void,glBegin,(GLenum)) 11 SDL_PROC(void,glBindTexture,(GLenum,GLuint)) 12 SDL_PROC_UNUSED(void,glBitmap,(GLsizei,GLsizei,GLfloat,GLfloat,GLfloat,GLfloat,const GLubyte*)) 13 SDL_PROC(void,glBlendFunc,(GLenum,GLenum)) 14 SDL_PROC_UNUSED(void,glCallList,(GLuint)) 15 SDL_PROC_UNUSED(void,glCallLists,(GLsizei,GLenum,const GLvoid*)) 16 SDL_PROC_UNUSED(void,glClear,(GLbitfield) [all...] |
/frameworks/base/libs/rs/ |
rsRuntime.h | 32 void rsrBindTexture(Context *, Script *, ProgramFragment *, uint32_t slot, Allocation *); 33 void rsrBindSampler(Context *, Script *, ProgramFragment *, uint32_t slot, Sampler *); 34 void rsrBindProgramStore(Context *, Script *, ProgramStore *); 35 void rsrBindProgramFragment(Context *, Script *, ProgramFragment *); 36 void rsrBindProgramVertex(Context *, Script *, ProgramVertex *); 37 void rsrBindProgramRaster(Context *, Script *, ProgramRaster *); 38 void rsrBindFrameBufferObjectColorTarget(Context *, Script *, Allocation *, uint32_t slot); 39 void rsrBindFrameBufferObjectDepthTarget(Context *, Script *, Allocation *); 40 void rsrClearFrameBufferObjectColorTarget(Context *, Script *, uint32_t slot); 41 void rsrClearFrameBufferObjectDepthTarget(Context *, Script *) [all...] |