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

1234567

/external/chromium_org/third_party/skia/src/gpu/gl/iOS/
H A DGrGLCreateNativeInterface_iOS.cpp15 GrGLInterface* interface = SkNEW(GrGLInterface); local
17 GrGLInterface::Functions* functions = &interface->fFunctions;
170 interface->fStandard = kGLES_GrGLStandard;
171 interface->fExtensions.init(kGLES_GrGLStandard, glGetString, NULL, glGetIntegerv);
173 return interface;
/external/chromium_org/third_party/skia/tests/
H A DGLInterfaceValidationTest.cpp33 const GrGLInterface* interface = glCtxHelper->gl(); local
34 REPORTER_ASSERT(reporter, interface->validate());
/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):
/external/skia/src/gpu/gl/iOS/
H A DGrGLCreateNativeInterface_iOS.cpp15 GrGLInterface* interface = SkNEW(GrGLInterface); local
17 GrGLInterface::Functions* functions = &interface->fFunctions;
170 interface->fStandard = kGLES_GrGLStandard;
171 interface->fExtensions.init(kGLES_GrGLStandard, glGetString, NULL, glGetIntegerv);
173 return interface;
/external/skia/tests/
H A DGLInterfaceValidationTest.cpp33 const GrGLInterface* interface = glCtxHelper->gl(); local
34 REPORTER_ASSERT(reporter, interface->validate());
/external/chromium_org/gpu/skia_bindings/
H A Dgl_bindings_skia_cmd_buffer.cc18 GrGLInterface* interface = new GrGLInterface; local
19 interface->fStandard = kGLES_GrGLStandard;
20 interface->fExtensions.init(kGLES_GrGLStandard,
25 GrGLInterface::Functions* functions = &interface->fFunctions;
144 return interface;
/external/chromium_org/third_party/skia/src/gpu/gl/angle/
H A DGrGLCreateANGLEInterface.cpp21 interface->fFunctions.f ## name = (GrGL ## name ## Proc) GetProcAddress(ghANGLELib, "gl" #name);
32 // We can't setup the interface correctly w/o the DLL
36 GrGLInterface* interface = SkNEW(GrGLInterface); local
37 interface->fStandard = kGLES_GrGLStandard;
39 GrGLInterface::Functions* functions = &interface->fFunctions;
182 interface->fExtensions.init(kGLES_GrGLStandard,
186 return interface;
/external/google-tv-pairing-protocol/cpp/src/polo/wire/
H A Dpolowireadapter.cc22 PoloWireAdapter::PoloWireAdapter(PoloWireInterface* interface) argument
23 : interface_(interface) {
H A Dpolowireadapter.h30 // Creates a new adapter on the given interface. The interface should only
33 // @param interface the interface used to send and receive data
34 explicit PoloWireAdapter(PoloWireInterface* interface);
41 // Gets the next message from the interface asynchronously. The listener
79 // Gets the Polo wire interface used to send and receive data.
80 PoloWireInterface* interface() { return interface_; } function in class:polo::wire::PoloWireAdapter
/external/google-tv-pairing-protocol/cpp/tests/polo/wire/
H A Dmocks.h36 explicit MockWireAdapter(PoloWireInterface* interface) argument
37 : PoloWireAdapter(interface) {
/external/skia/src/gpu/gl/angle/
H A DGrGLCreateANGLEInterface.cpp21 interface->fFunctions.f ## name = (GrGL ## name ## Proc) GetProcAddress(ghANGLELib, "gl" #name);
32 // We can't setup the interface correctly w/o the DLL
36 GrGLInterface* interface = SkNEW(GrGLInterface); local
37 interface->fStandard = kGLES_GrGLStandard;
39 GrGLInterface::Functions* functions = &interface->fFunctions;
182 interface->fExtensions.init(kGLES_GrGLStandard,
186 return interface;
/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/mojo/examples/pepper_container_app/
H A Dplugin_module.cc23 const void* interface = local
26 if (!interface)
29 return interface;
/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 DGrGLAssembleInterface.cpp40 GrGLInterface* interface = SkNEW(GrGLInterface()); local
41 GrGLInterface::Functions* functions = &interface->fFunctions;
220 delete interface;
291 interface->fStandard = kGL_GrGLStandard;
292 interface->fExtensions.swap(&extensions);
294 return interface;
H A DGrGLContext.cpp24 bool GrGLContextInfo::initialize(const GrGLInterface* interface) { argument
28 if (interface->fFunctions.fGetString) {
30 GR_GL_CALL_RET(interface, verUByte, GetString(GR_GL_VERSION));
34 GR_GL_CALL_RET(interface, rendererUByte, GetString(GR_GL_RENDERER));
37 if (interface->validate()) {
44 if (!GrGetGLSLGeneration(interface, &fGLSLGeneration)) {
48 fVendor = GrGLGetVendor(interface);
57 fInterface.reset(SkRef(interface));
59 return fGLCaps->init(*this, interface);
H A DGrGLInterface.cpp21 const GrGLInterface* GrGLInterfaceAddTestDebugMarker(const GrGLInterface* interface, argument
25 GrGLInterface* newInterface = GrGLInterface::NewClone(interface);
38 const GrGLInterface* GrGLInterfaceRemoveNVPR(const GrGLInterface* interface) { argument
39 GrGLInterface* newInterface = GrGLInterface::NewClone(interface);
105 GrGLInterface* GrGLInterface::NewClone(const GrGLInterface* interface) { argument
106 SkASSERT(NULL != interface);
109 clone->fStandard = interface->fStandard;
110 clone->fExtensions = interface->fExtensions;
111 clone->fFunctions = interface->fFunctions;
113 clone->fCallback = interface
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/android/
H A DGrGLCreateNativeInterface_android.cpp27 GrGLInterface* interface = SkNEW(GrGLInterface); local
28 interface->fStandard = kGLES_GrGLStandard;
29 GrGLInterface::Functions* functions = &interface->fFunctions;
240 return interface;
264 GrGLInterface* interface = create_es_interface(version, &extensions); local
266 if (NULL != interface) {
267 interface->fExtensions.swap(&extensions);
270 return interface;
/external/chromium_org/third_party/skia/src/gpu/gl/mac/
H A DSkNativeGLContext_mac.cpp65 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
66 if (NULL == interface) {
67 SkDebugf("Context could not create GL interface.\n");
72 return interface;

Completed in 1674 milliseconds

1234567