Searched defs:interface (Results 1 - 25 of 167) sorted by relevance

1234567

/external/chromium_org/third_party/skia/src/gpu/gl/iOS/
H A DGrGLCreateNativeInterface_iOS.cpp18 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
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Djson_loader.py7 from grit.gather import interface namespace
10 class JsonLoader(interface.GathererBase):
H A Dtxt.py9 from grit.gather import interface namespace
13 class TxtFile(interface.GathererBase):
/external/chromium_org/tools/grit/grit/tool/
H A Dtest.py6 from grit.tool import interface namespace
8 class TestTool(interface.Tool):
H A Dcount.py9 from grit.tool import interface namespace
12 class CountMessage(interface.Tool):
H A Dnewgrd.py9 from grit.tool import interface namespace
54 class NewGrd(interface.Tool):
H A Dunit.py12 from grit.tool import interface namespace
15 class UnitTestTool(interface.Tool):
H A Dbuildinfo.py14 from grit.tool import interface namespace
16 class DetermineBuildInfo(interface.Tool):
H A Ddiff_structures.py14 from grit.tool import interface namespace
38 class DiffStructures(interface.Tool):
/external/skia/src/gpu/gl/iOS/
H A DGrGLCreateNativeInterface_iOS.cpp18 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
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/android/
H A DGrGLCreateNativeInterface_android.cpp26 GrGLInterface* interface = new GrGLInterface; local
27 glInterface.reset(interface);
28 interface->fBindingsExported = kES2_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
[all...]
/external/chromium_org/webkit/common/gpu/
H A Dgl_bindings_skia_cmd_buffer.cc19 GrGLInterface* interface = new GrGLInterface; local
20 interface->fBindingsExported = kES2_GrGLBinding;
21 interface->fActiveTexture = glActiveTexture;
22 interface->fAttachShader = glAttachShader;
23 interface->fBindAttribLocation = glBindAttribLocation;
24 interface->fBindBuffer = glBindBuffer;
25 interface->fBindTexture = glBindTexture;
26 interface->fBindVertexArray = glBindVertexArrayOES;
27 interface->fBlendColor = glBlendColor;
28 interface
[all...]
/external/skia/src/gpu/gl/android/
H A DGrGLCreateNativeInterface_android.cpp26 GrGLInterface* interface = new GrGLInterface; local
27 glInterface.reset(interface);
28 interface->fBindingsExported = kES2_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
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/angle/
H A DGrGLCreateANGLEInterface.cpp21 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 = kES2_GrGLBinding;
47 interface->fBindVertexArray =
67 interface->fDeleteVertexArrays =
82 interface->fGenVertexArrays =
112 interface->fTexStorage2D = (GrGLTexStorage2DProc) eglGetProcAddress("glTexStorage2DEXT");
154 interface
[all...]
/external/skia/src/gpu/gl/angle/
H A DGrGLCreateANGLEInterface.cpp21 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 = kES2_GrGLBinding;
47 interface->fBindVertexArray =
67 interface->fDeleteVertexArrays =
82 interface->fGenVertexArrays =
112 interface->fTexStorage2D = (GrGLTexStorage2DProc) eglGetProcAddress("glTexStorage2DEXT");
154 interface
[all...]
/external/skia/tests/
H A DGLInterfaceValidation.cpp25 const GrGLInterface* interface = glCtxHelper->gl(); local
29 if (interface->fBindingsExported & binding) {
30 REPORTER_ASSERT(reporter, interface->validate(binding));
/external/wpa_supplicant_8/hostapd/
H A Dctrl_iface.h2 * hostapd / UNIX domain socket -based control interface
15 int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface);
16 void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface);
28 hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface) argument
34 hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface) argument
/external/chromium_org/third_party/skia/src/gpu/gl/unix/
H A DGrGLCreateNativeInterface_unix.cpp19 #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
[all...]
/external/skia/src/gpu/gl/unix/
H A DGrGLCreateNativeInterface_unix.cpp19 #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
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_console.cc47 // 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_instanc
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLContext.cpp22 bool GrGLContextInfo::initialize(const GrGLInterface* interface) { argument
26 if (interface->fGetString) {
28 GR_GL_CALL_RET(interface, verUByte, GetString(GR_GL_VERSION));
32 if (0 != binding && interface->validate(binding) && fExtensions.init(binding, interface)) {
37 fGLSLGeneration = GrGetGLSLGeneration(fBindingInUse, interface);
39 fVendor = GrGLGetVendor(interface);
43 fGLCaps->init(*this, interface);
65 GrGLContext::GrGLContext(const GrGLInterface* interface) { argument
67 this->initialize(interface);
86 initialize(const GrGLInterface* interface) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/mac/
H A DSkNativeGLContext_mac.cpp64 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
65 if (NULL == interface) {
66 SkDebugf("Context could not create GL interface.\n");
71 return interface;
/external/chromium_org/third_party/skia/src/gpu/gl/mesa/
H A DGrGLCreateMesaInterface.cpp16 #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
135 if (NULL == interface->fTexStorage2D) {
209 delete interface;
213 interface->fBindingsExported = kDesktop_GrGLBinding;
214 return interface;
H A DSkMesaGLContext.cpp89 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/
H A DSkNativeGLContext_win.cpp100 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
101 if (NULL == interface) {
102 SkDebugf("Could not create GL interface.\n");
107 return interface;

Completed in 2184 milliseconds

1234567