HomeSort by relevance Sort by last modified time
    Searched defs:interface (Results 26 - 50 of 232) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/tools/grit/grit/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):
resize.py 18 from grit.tool import interface namespace
113 class ResizeDialog(interface.Tool):
build.py 18 from grit.tool import interface namespace
53 class RcBuilder(interface.Tool):
xmb.py 18 from grit.tool import interface namespace
126 class OutputXmb(interface.Tool):
  /external/skia/src/gpu/gl/mac/
SkNativeGLContext_mac.cpp 65 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
66 if (NULL == interface) {
67 SkDebugf("Context could not create GL interface.\n");
72 return interface;
GrGLCreateNativeInterface_mac.cpp 42 #define GET_PROC(name) (interface->f ## name = ((GrGL ## name ## Proc) GetProcAddress("gl" #name)))
43 #define GET_PROC_SUFFIX(name, suffix) (interface->f ## name = ((GrGL ## name ## Proc) GetProcAddress("gl" #name #suffix)))
46 // The gl functions are not context-specific so we create one global interface
49 GrGLInterface* interface = new GrGLInterface; local
55 glInterface.reset(interface);
63 interface->fBindingsExported = kDesktop_GrGLBinding;
  /external/skia/src/gpu/gl/mesa/
GrGLCreateMesaInterface.cpp 16 #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
144 if (NULL == interface->fTexStorage2D) {
219 delete interface;
223 interface->fBindingsExported = kDesktop_GrGLBinding;
224 return interface;
SkMesaGLContext.cpp 89 const GrGLInterface* interface = GrGLCreateMesaInterface(); local
90 if (!interface) {
91 SkDebugf("Could not create GL interface!\n");
95 return interface;
  /external/skia/src/gpu/gl/win/
SkNativeGLContext_win.cpp 100 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
101 if (NULL == interface) {
102 SkDebugf("Could not create GL interface.\n");
107 return interface;
GrGLCreateNativeInterface_win.cpp 22 #define SET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) GetProcAddress(alu.get(), "gl" #F);
23 #define WGL_SET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) wglGetProcAddress("gl" #F);
24 #define WGL_SET_PROC_SUFFIX(F, S) interface->f ## F = \
78 GrGLInterface* interface = new GrGLInterface(); local
256 delete interface;
314 interface->fBindingsExported = kDesktop_GrGLBinding;
316 return interface;
  /frameworks/native/cmds/ip-up-vpn/
ip-up-vpn.c 49 * are interface, addresses, routes, DNS servers, and search domains. Each
61 * is to have an interface configured with the given address and netmask
83 const char *interface = env("INTERFACE"); local
112 /* Bring up the interface. */
114 strncpy(ifr.ifr_name, interface, IFNAMSIZ);
116 ALOGE("Cannot bring up %s: %s", interface, strerror(errno));
137 fprintf(state, "%s\n", interface);
  /frameworks/wilhelm/tests/sandbox/
engine.c 40 printf("Display the ID of each available interface\n");
48 printf("interface[%u] ", index);
75 printf("Create engine with NULL interface pointer\n");
95 printf("Create an engine and require non-sensical volume interface\n");
103 printf("Create an engine and politely request a non-sensical interface with options\n");
114 printf("Get each available interface before realization\n");
116 void *interface = NULL; local
117 // Use the interface ID as returned by slQuerySupportedEngineInterfaces
118 result = (*engineObject)->GetInterface(engineObject, engine_ids[index], &interface);
121 printf("interface available pre-realize: ")
140 void *interface = NULL; local
    [all...]
  /development/samples/ToyVpn/server/linux/
ToyVpnServer.cpp 43 // # Create a TUN interface.
46 // # Set the addresses and bring up the interface.
54 // its own TUN interface. A short shell script will be sufficient. Since this
63 int interface = open("/dev/net/tun", O_RDWR | O_NONBLOCK); local
70 if (ioctl(interface, TUNSETIFF, &ifr)) {
71 perror("Cannot get TUN interface");
75 return interface;
174 "Note that TUN interface needs to be configured properly\n"
184 // Get TUN interface.
185 int interface = get_interface(argv[1]) local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/angle/
SkANGLEGLContext.cpp 93 const GrGLInterface* interface = GrGLCreateANGLEInterface(); local
94 if (NULL == interface) {
95 SkDebugf("Could not create ANGLE GL interface!\n");
100 return interface;
  /external/chromium_org/third_party/skia/src/gpu/gl/mac/
GrGLCreateNativeInterface_mac.cpp 42 #define GET_PROC(name) (interface->f ## name = ((GrGL ## name ## Proc) GetProcAddress("gl" #name)))
43 #define GET_PROC_SUFFIX(name, suffix) (interface->f ## name = ((GrGL ## name ## Proc) GetProcAddress("gl" #name #suffix)))
46 // The gl functions are not context-specific so we create one global interface
49 GrGLInterface* interface = new GrGLInterface; local
55 glInterface.reset(interface);
63 interface->fBindingsExported = kDesktop_GrGLBinding;
  /external/chromium_org/third_party/skia/src/gpu/gl/win/
GrGLCreateNativeInterface_win.cpp 22 #define SET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) GetProcAddress(alu.get(), "gl" #F);
23 #define WGL_SET_PROC(F) interface->f ## F = (GrGL ## F ## Proc) wglGetProcAddress("gl" #F);
24 #define WGL_SET_PROC_SUFFIX(F, S) interface->f ## F = \
78 GrGLInterface* interface = new GrGLInterface(); local
256 delete interface;
314 interface->fBindingsExported = kDesktop_GrGLBinding;
316 return interface;
  /external/chromium_org/tools/grit/grit/gather/
skeleton_gatherer.py 12 from grit.gather import interface namespace
17 class SkeletonGatherer(interface.GathererBase):
chrome_scaled_image.py 15 from grit.gather import interface namespace
85 class ChromeScaledImage(interface.GathererBase):
  /external/skia/src/gpu/gl/angle/
SkANGLEGLContext.cpp 93 const GrGLInterface* interface = GrGLCreateANGLEInterface(); local
94 if (NULL == interface) {
95 SkDebugf("Could not create ANGLE GL interface!\n");
100 return interface;
  /external/chromium_org/dbus/
property.cc 34 const std::string& interface,
37 interface_(interface),
66 std::string interface; local
67 if (!reader.PopString(&interface)) {
69 << "expected interface name: " << signal->ToString();
73 if (interface != this->interface())
98 writer.AppendString(interface());
128 writer.AppendString(interface());
153 writer.AppendString(interface());
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/android/
SkNativeGLContext_android.cpp 84 const GrGLInterface* interface = NULL; local
86 for (size_t api = 0; NULL == interface && api < SK_ARRAY_COUNT(kAPIs); ++api) {
146 interface = GrGLCreateNativeInterface();
147 if (NULL == interface) {
148 SkDebugf("Failed to create gl interface.\n");
153 if (!interface->validate(kAPIs[api].fBinding)) {
154 interface->unref();
155 interface = NULL;
160 return interface;
  /external/chromium_org/v8/src/
interface.cc 30 #include "interface.h"
44 Interface* Interface::Lookup(Handle<String> name, Zone* zone) {
54 return static_cast<Interface*>(p->value);
73 void Interface::DoAdd(
74 void* name, uint32_t hash, Interface* interface, Zone* zone, bool* ok) {
85 interface->Print(Nesting::current());
101 p->value = interface;
106 static_cast<Interface*>(p->value)->Unify(interface, zone, ok)
234 Interface* interface = static_cast<Interface*>(p->value); local
    [all...]
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 23 #define interface (vpx_codec_vp8_dx()) macro
72 printf("Using %s\n",vpx_codec_iface_name(interface));

Completed in 306 milliseconds

12 3 4 5 6 7 8 910