HomeSort by relevance Sort by last modified time
    Searched defs:interface (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/skia/tests/
GLInterfaceValidationTest.cpp 33 const GrGLInterface* interface = glCtxHelper->gl(); local
34 REPORTER_ASSERT(reporter, interface->validate());
  /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):
diff_structures.py 14 from grit.tool import interface namespace
38 class DiffStructures(interface.Tool):
menu_from_parts.py 14 from grit.tool import interface namespace
20 class MenuTranslationsFromParts(interface.Tool):
transl2tc.py 12 from grit.tool import interface namespace
18 class TranslationToTc(interface.Tool):
  /external/chromium_org/gpu/skia_bindings/
gl_bindings_skia_cmd_buffer.cc 18 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;
  /art/runtime/mirror/
iftable.h 29 Class* interface = GetWithoutChecks((i * kMax) + kInterface)->AsClass(); local
30 DCHECK(interface != NULL);
31 return interface;
34 ALWAYS_INLINE void SetInterface(int32_t i, Class* interface)
65 // Points to the interface class.
67 // Method pointers into the vtable, allow fast map from interface method index to concrete
  /external/chromium_org/mojo/gles2/
gles2_impl.cc 42 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();
gles2_context.h 37 gpu::gles2::GLES2Interface* interface() const { function in class:mojo::gles2::GLES2Context
  /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/google-tv-pairing-protocol/cpp/src/polo/wire/
polowireadapter.h 30 // 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/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/device/usb/
usb_device_filter_unittest.cc 44 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/
plugin_module.cc 23 const void* interface = local
26 if (!interface)
27 LOG(WARNING) << "Interface requested " << name;
29 return interface;
  /external/chromium_org/net/base/
net_util_posix.cc 49 NetworkInterface interface; member in struct:net::__anon13659::NetworkInterfaceInfo
53 // is available for same network interface.
63 if (!i->permanent && i->interface.address.size() == kIPv6AddressSize) {
64 ifaces_with_temp_addrs.insert(i->interface.name);
72 // Search for permenent addresses belonging to same network interface.
76 if ((i->interface.address.size() == kIPv6AddressSize) && i->permanent &&
77 (ifaces_with_temp_addrs.find(i->interface.name) !=
175 for (ifaddrs *interface = interfaces;
176 interface != NULL;
177 interface = interface->ifa_next)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 61 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->fExtensions.swap(&extensions)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/mac/
SkNativeGLContext_mac.cpp 68 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
69 if (NULL == interface) {
70 SkDebugf("Context could not create GL interface.\n");
75 return interface;
  /external/chromium_org/third_party/skia/src/gpu/gl/mesa/
SkMesaGLContext.cpp 93 const GrGLInterface* interface = GrGLCreateMesaInterface(); local
94 if (!interface) {
95 SkDebugf("Could not create GL interface!\n");
99 return interface;
  /external/chromium_org/webkit/common/gpu/
grcontext_for_webgraphicscontext3d.cc 33 void BindWebGraphicsContext3DGLContextCallback(const GrGLInterface* interface) {
35 interface->fCallbackData)->GetGLInterface());
48 skia::RefPtr<GrGLInterface> interface = skia::AdoptRef( local
50 if (!interface)
53 interface->fCallback = BindWebGraphicsContext3DGLContextCallback;
54 interface->fCallbackData =
59 reinterpret_cast<GrBackendContext>(interface.get())));

Completed in 3203 milliseconds

1 2 3 4 5