/external/chromium_org/gpu/skia_bindings/ |
gl_bindings_skia_cmd_buffer.cc | 18 GrGLInterface* interface = new GrGLInterface; local 19 interface->fBindingsExported = kES2_GrGLBinding; 20 interface->fActiveTexture = glActiveTexture; 21 interface->fAttachShader = glAttachShader; 22 interface->fBindAttribLocation = glBindAttribLocation; 23 interface->fBindBuffer = glBindBuffer; 24 interface->fBindTexture = glBindTexture; 25 interface->fBindVertexArray = glBindVertexArrayOES; 26 interface->fBlendColor = glBlendColor; 27 interface->fBlendFunc = glBlendFunc [all...] |
/external/chromium_org/third_party/skia/src/gpu/gl/iOS/ |
GrGLCreateNativeInterface_iOS.cpp | 18 GrGLInterface* interface = SkNEW(GrGLInterface); local 19 glInterface.reset(interface); 21 interface->fActiveTexture = glActiveTexture; 22 interface->fAttachShader = glAttachShader; 23 interface->fBindAttribLocation = glBindAttribLocation; 24 interface->fBindBuffer = glBindBuffer; 25 interface->fBindTexture = glBindTexture; 26 interface->fBlendColor = glBlendColor; 27 interface->fBlendFunc = glBlendFunc; 28 interface->fBufferData = (GrGLBufferDataProc)glBufferData [all...] |
/external/chromium_org/tools/grit/grit/gather/ |
json_loader.py | 7 from grit.gather import interface namespace 10 class JsonLoader(interface.GathererBase):
|
txt.py | 9 from grit.gather import interface namespace 13 class TxtFile(interface.GathererBase):
|
/external/chromium_org/tools/grit/grit/tool/ |
test.py | 6 from grit.tool import interface namespace 8 class TestTool(interface.Tool):
|
count.py | 9 from grit.tool import interface namespace 12 class CountMessage(interface.Tool):
|
newgrd.py | 9 from grit.tool import interface namespace 54 class NewGrd(interface.Tool):
|
unit.py | 12 from grit.tool import interface namespace 15 class UnitTestTool(interface.Tool):
|
buildinfo.py | 14 from grit.tool import interface namespace 16 class DetermineBuildInfo(interface.Tool):
|
/external/skia/src/gpu/gl/iOS/ |
GrGLCreateNativeInterface_iOS.cpp | 18 GrGLInterface* interface = SkNEW(GrGLInterface); local 19 glInterface.reset(interface); 21 interface->fActiveTexture = glActiveTexture; 22 interface->fAttachShader = glAttachShader; 23 interface->fBindAttribLocation = glBindAttribLocation; 24 interface->fBindBuffer = glBindBuffer; 25 interface->fBindTexture = glBindTexture; 26 interface->fBlendColor = glBlendColor; 27 interface->fBlendFunc = glBlendFunc; 28 interface->fBufferData = (GrGLBufferDataProc)glBufferData [all...] |
/external/skia/tests/ |
GLInterfaceValidation.cpp | 25 const GrGLInterface* interface = glCtxHelper->gl(); local 29 if (interface->fBindingsExported & binding) { 30 REPORTER_ASSERT(reporter, interface->validate(binding));
|
/frameworks/av/include/media/stagefright/ |
OMXClient.h | 32 sp<IOMX> interface() { function in class:android::OMXClient
|
/external/chromium_org/third_party/skia/src/gpu/gl/angle/ |
GrGLCreateANGLEInterface.cpp | 21 interface->f ## name = (GrGL ## name ## Proc) GetProcAddress(ghANGLELib, "gl" #name); 33 // We can't setup the interface correctly w/o the DLL 38 GrGLInterface* interface = new GrGLInterface; local 39 glInterface.reset(interface); 40 interface->fBindingsExported = kES_GrGLBinding; 47 interface->fBindVertexArray = 67 interface->fDeleteVertexArrays = 82 interface->fGenVertexArrays = 112 interface->fTexStorage2D = (GrGLTexStorage2DProc) eglGetProcAddress("glTexStorage2DEXT"); 154 interface->fMapBuffer = (GrGLMapBufferProc) eglGetProcAddress("glMapBufferOES") [all...] |
/external/skia/src/gpu/gl/angle/ |
GrGLCreateANGLEInterface.cpp | 21 interface->f ## name = (GrGL ## name ## Proc) GetProcAddress(ghANGLELib, "gl" #name); 33 // We can't setup the interface correctly w/o the DLL 38 GrGLInterface* interface = new GrGLInterface; local 39 glInterface.reset(interface); 40 interface->fBindingsExported = kES_GrGLBinding; 47 interface->fBindVertexArray = 67 interface->fDeleteVertexArrays = 82 interface->fGenVertexArrays = 112 interface->fTexStorage2D = (GrGLTexStorage2DProc) eglGetProcAddress("glTexStorage2DEXT"); 154 interface->fMapBuffer = (GrGLMapBufferProc) eglGetProcAddress("glMapBufferOES") [all...] |
/external/chromium_org/ppapi/tests/ |
test_console.cc | 47 // it does test that the interface exists and that it can be called without 50 const PPB_Console* interface = console_interface_; local 53 TestConsoleSub(interface, pp_instance, source, pp::Var()); 54 TestConsoleSub(interface, pp_instance, source, pp::Var(pp::Var::Null())); 55 TestConsoleSub(interface, pp_instance, source, pp::Var(false)); 56 TestConsoleSub(interface, pp_instance, source, pp::Var(12345678)); 57 TestConsoleSub(interface, pp_instance, source, pp::Var(-0.0)); 58 TestConsoleSub(interface, pp_instance, source, pp::Var("Hello World!")); 59 TestConsoleSub(interface, pp_instance, source, pp::VarArray()); 60 TestConsoleSub(interface, pp_instance, source, pp::VarArrayBuffer()) [all...] |
/external/chromium_org/third_party/skia/src/gpu/gl/android/ |
GrGLCreateNativeInterface_android.cpp | 26 GrGLInterface* interface = SkNEW(GrGLInterface); local 27 interface->fBindingsExported = kES_GrGLBinding; 29 interface->fActiveTexture = glActiveTexture; 30 interface->fAttachShader = glAttachShader; 31 interface->fBindAttribLocation = glBindAttribLocation; 32 interface->fBindBuffer = glBindBuffer; 33 interface->fBindTexture = glBindTexture; 34 interface->fBindVertexArray = glBindVertexArrayOES; 35 interface->fBlendColor = glBlendColor; 36 interface->fBlendFunc = glBlendFunc 224 GrGLInterface* interface = SkNEW(GrGLInterface); local [all...] |
/external/chromium_org/third_party/skia/src/gpu/gl/unix/ |
GrGLCreateNativeInterface_unix.cpp | 19 #define GR_GL_GET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) \ 21 #define GR_GL_GET_PROC_SUFFIX(F, S) interface->f ## F = (GrGL ## F ## Proc) \ 44 GrGLInterface* interface = new GrGLInterface(); local 46 interface->fActiveTexture = glActiveTexture; 52 interface->fBindTexture = glBindTexture; 53 interface->fBlendFunc = glBlendFunc; 63 interface->fClear = glClear; 64 interface->fClearColor = glClearColor; 65 interface->fClearStencil = glClearStencil; 66 interface->fClientActiveTexture = glClientActiveTexture [all...] |
/external/skia/src/gpu/gl/android/ |
GrGLCreateNativeInterface_android.cpp | 26 GrGLInterface* interface = SkNEW(GrGLInterface); local 27 interface->fBindingsExported = kES_GrGLBinding; 29 interface->fActiveTexture = glActiveTexture; 30 interface->fAttachShader = glAttachShader; 31 interface->fBindAttribLocation = glBindAttribLocation; 32 interface->fBindBuffer = glBindBuffer; 33 interface->fBindTexture = glBindTexture; 34 interface->fBindVertexArray = glBindVertexArrayOES; 35 interface->fBlendColor = glBlendColor; 36 interface->fBlendFunc = glBlendFunc 224 GrGLInterface* interface = SkNEW(GrGLInterface); local [all...] |
/external/skia/src/gpu/gl/unix/ |
GrGLCreateNativeInterface_unix.cpp | 19 #define GR_GL_GET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) \ 21 #define GR_GL_GET_PROC_SUFFIX(F, S) interface->f ## F = (GrGL ## F ## Proc) \ 44 GrGLInterface* interface = new GrGLInterface(); local 46 interface->fActiveTexture = glActiveTexture; 52 interface->fBindTexture = glBindTexture; 53 interface->fBlendFunc = glBlendFunc; 63 interface->fClear = glClear; 64 interface->fClearColor = glClearColor; 65 interface->fClearStencil = glClearStencil; 66 interface->fClientActiveTexture = glClientActiveTexture [all...] |
/art/runtime/mirror/ |
iftable.h | 28 Class* interface = Get((i * kMax) + kInterface)->AsClass(); local 29 DCHECK(interface != NULL); 30 return interface; 33 void SetInterface(int32_t i, Class* interface) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 64 // Points to the interface class. 66 // Method pointers into the vtable, allow fast map from interface method index to concrete
|
/external/chromium_org/chrome/browser/extensions/api/messaging/ |
native_messaging_host_manifest.h | 40 HostInterface interface() const { return interface_; } function in class:extensions::NativeMessagingHostManifest
|
/external/chromium_org/third_party/skia/src/gpu/gl/mac/ |
SkNativeGLContext_mac.cpp | 65 const GrGLInterface* interface = GrGLCreateNativeInterface(); local 66 if (NULL == interface) { 67 SkDebugf("Context could not create GL interface.\n"); 72 return interface;
|
/external/chromium_org/third_party/skia/src/gpu/gl/mesa/ |
GrGLCreateMesaInterface.cpp | 16 #define GR_GL_GET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) \ 18 #define GR_GL_GET_PROC_SUFFIX(F, S) interface->f ## F = (GrGL ## F ## Proc) \ 44 GrGLInterface* interface = new GrGLInterface(); local 144 if (NULL == interface->fTexStorage2D) { 219 delete interface; 223 interface->fBindingsExported = kDesktop_GrGLBinding; 224 return interface;
|
SkMesaGLContext.cpp | 89 const GrGLInterface* interface = GrGLCreateMesaInterface(); local 90 if (!interface) { 91 SkDebugf("Could not create GL interface!\n"); 95 return interface;
|
/external/chromium_org/third_party/skia/src/gpu/gl/win/ |
SkNativeGLContext_win.cpp | 100 const GrGLInterface* interface = GrGLCreateNativeInterface(); local 101 if (NULL == interface) { 102 SkDebugf("Could not create GL interface.\n"); 107 return interface;
|