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

1234567

/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;
147 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/device/usb/
H A Dusb_device_filter_unittest.cc44 UsbInterfaceDescriptor interface; variable
45 interface.interface_number = 1;
46 interface.alternate_setting = 0;
47 interface.interface_class = 0xFF;
48 interface.interface_subclass = 0x42;
49 interface.interface_protocol = 0x01;
50 config_.interfaces.push_back(interface);
/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/mojo/gles2/
H A Dgles2_context.h37 gpu::gles2::GLES2Interface* interface() const { function in class:mojo::gles2::GLES2Context
H A Dgles2_impl.cc42 gpu::gles2::GLES2Interface* interface = NULL; local
45 interface = client->interface();
46 DCHECK(interface);
48 g_gpu_interface.Get().Set(interface);
57 return static_cast<GLES2Context*>(context)->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.cpp61 GrGLInterface* interface = SkNEW(GrGLInterface()); local
62 GrGLInterface::Functions* functions = &interface->fFunctions;
241 delete interface;
292 interface->fStandard = kGL_GrGLStandard;
293 interface->fExtensions.swap(&extensions);
295 return interface;
318 GrGLInterface* interface = SkNEW(GrGLInterface); local
319 GrGLInterface::Functions* functions = &interface->fFunctions;
510 interface->fStandard = kGLES_GrGLStandard;
511 interface
[all...]
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);
77 GrGLInterface* GrGLInterface::NewClone(const GrGLInterface* interface) { argument
78 SkASSERT(interface);
81 clone->fStandard = interface->fStandard;
82 clone->fExtensions = interface->fExtensions;
83 clone->fFunctions = interface->fFunctions;
85 clone->fCallback = interface
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/mac/
H A DSkNativeGLContext_mac.cpp68 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
69 if (NULL == interface) {
70 SkDebugf("Context could not create GL interface.\n");
75 return interface;

Completed in 427 milliseconds

1234567