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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/gpu/gl/iOS/
GrGLCreateNativeInterface_iOS.cpp 15 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/
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):
  /external/skia/src/gpu/gl/iOS/
GrGLCreateNativeInterface_iOS.cpp 15 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/
GLInterfaceValidationTest.cpp 33 const GrGLInterface* interface = glCtxHelper->gl(); local
34 REPORTER_ASSERT(reporter, interface->validate());
  /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;
144 return interface;
  /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->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/skia/src/gpu/gl/angle/
GrGLCreateANGLEInterface.cpp 21 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;
  /art/runtime/mirror/
iftable.h 29 Class* interface = Get((i * kMax) + kInterface)->AsClass(); local
30 DCHECK(interface != NULL);
31 return interface;
34 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/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/
GrGLAssembleInterface.cpp 40 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;
  /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/skia/src/gpu/gl/
GrGLAssembleInterface.cpp 40 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;
  /system/netd/server/
Network.cpp 32 bool Network::hasInterface(const std::string& interface) const {
33 return mInterfaces.find(interface) != mInterfaces.end();
44 std::string interface = *mInterfaces.begin(); local
45 if (int ret = removeInterface(interface)) {
  /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/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/mojo/gles2/
gles2_context.h 38 gpu::gles2::GLES2Interface* interface() const { function in class:mojo::gles2::GLES2Context
  /external/chromium_org/net/base/
net_util_posix.cc 48 NetworkInterface interface; member in struct:net::__anon13061::NetworkInterfaceInfo
52 // is available for same network interface.
62 if (!i->permanent && i->interface.address.size() == kIPv6AddressSize) {
63 ifaces_with_temp_addrs.insert(i->interface.name);
71 // Search for permenent addresses belonging to same network interface.
75 if ((i->interface.address.size() == kIPv6AddressSize) && i->permanent &&
76 (ifaces_with_temp_addrs.find(i->interface.name) !=
168 for (ifaddrs *interface = interfaces;
169 interface != NULL;
170 interface = interface->ifa_next)
    [all...]

Completed in 1164 milliseconds

1 2 3 4 5 6 7 8 91011>>