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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/tools/grit/grit/gather/
chrome_scaled_image.py 15 from grit.gather import interface namespace
85 class ChromeScaledImage(interface.GathererBase):
chrome_html.py 24 from grit.gather import interface namespace
275 class ChromeHtml(interface.GathererBase):
  /external/chromium_org/tools/grit/grit/tool/
build.py 18 from grit.tool import interface namespace
55 class RcBuilder(interface.Tool):
xmb.py 18 from grit.tool import interface namespace
126 class OutputXmb(interface.Tool):
rc2grd.py 23 from grit.tool import interface namespace
94 class Rc2Grd(interface.Tool):
  /external/chromium_org/v8/src/
interface.cc 7 #include "src/interface.h"
21 Interface* Interface::Lookup(Handle<String> name, Zone* zone) {
31 return static_cast<Interface*>(p->value);
50 void Interface::DoAdd(
51 void* name, uint32_t hash, Interface* interface, Zone* zone, bool* ok) {
62 interface->Print(Nesting::current());
79 p->value = interface;
84 static_cast<Interface*>(p->value)->Unify(interface, zone, ok)
212 Interface* interface = static_cast<Interface*>(p->value); local
    [all...]
  /external/skia/src/gpu/gl/
GrGLContext.h 45 bool initialize(const GrGLInterface* interface);
93 explicit GrGLContext(const GrGLInterface* interface) {
94 this->initialize(interface);
104 const GrGLInterface* interface() const { return fInterface.get(); } function in class:GrGLContext
  /external/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()) {
154 interface->unref();
155 interface = NULL;
160 return interface;
  /external/webp/src/utils/
thread.h 51 // The interface for all thread-worker related functions. All these functions
78 // decoding takes place. The contents of the interface struct are copied, it
82 const WebPWorkerInterface* const interface); variable
84 // Retrieve the currently set thread worker interface.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpc.h 11 #undef interface macro
12 #define interface struct macro
windows.h 13 For Obj-C the 'interface' is a keyword, but interface is used
17 #pragma push_macro("interface")
18 #undef interface macro
19 #define interface struct macro
136 /* Restore old value of interface for Obj-C. See above. */
138 #pragma pop_macro("interface")
basetyps.h 36 #undef interface macro
37 #define interface struct macro
55 #undef interface macro
56 #define interface struct macro
65 #define THIS_ INTERFACE *This,
66 #define THIS INTERFACE *This
  /external/chromium_org/dbus/
exported_object.cc 26 // Gets the absolute method name by concatenating the interface name and
196 const std::string interface = method_call->GetInterface(); local
199 if (interface.empty()) {
200 // We don't support method calls without interface.
201 LOG(WARNING) << "Interface is missing: " << method_call->ToString();
207 interface, member);
object_manager.cc 75 Interface* interface) {
76 interface_map_[interface_name] = interface;
242 Interface* interface = iiter->second;
258 interface->CreateProperties(object->object_proxy,
267 interface->ObjectAdded(object_path, interface_name);
282 // Inform the interface before removing the properties structure or object
286 Interface* interface = iiter->second local
    [all...]
property.h 19 // standard interface of method calls and signals to obtain the current value,
21 // interface makes heavy use of variants and dictionaries of variants. The
119 // D-Bus Properties interface constants, declared here rather than
208 // |interface| specifies the D-Bus interface of these properties, and
211 PropertySet(ObjectProxy* object_proxy, const std::string& interface,
291 // Retrieves the interface of this property set.
292 const std::string& interface() const { return interface_; } function in class:dbus::PropertySet
307 // Interface of property, e.g. "org.chromium.ExampleService", this is
308 // distinct from the interface of the method call itself which is th
    [all...]
dbus_statistics.cc 20 // Used to store dbus statistics sorted alphabetically by service, interface,
24 const std::string& interface,
27 interface(interface),
34 std::string interface; member in struct:dbus::__anon12220::Stat
43 if (interface != other.interface)
44 return interface < other.interface;
81 // Add a call to |method| for |interface|. See also MethodCall in message.h
    [all...]
test_service.cc 331 std::string interface; local
332 if (!reader.PopString(&interface)) {
348 std::string interface; local
349 if (!reader.PopString(&interface)) {
435 std::string interface; local
436 if (!reader.PopString(&interface)) {
525 // the object(s) with a dictionary of strings identifying the interface(s)
  /external/chromium_org/third_party/skia/src/gpu/gl/unix/
SkNativeGLContext_unix.cpp 274 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
275 if (!interface) {
276 SkDebugf("Failed to create gl interface");
280 return interface;
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceQueryTestCase.hpp 23 * \brief Program interface query test case
41 ProgramInterface interface; member in struct:deqp::gles31::Functional::ProgramResourceQueryTestTarget
  /external/libusb/libusb/os/
darwin_usb.h 133 usb_interface_t **interface; member in struct:darwin_device_handle_priv::__darwin_interface
  /external/mtpd/
mtpd.c 46 static char *interface; variable
76 printf(" %s interface %s %s pppd-arguments\n",
82 interface = argv[1];
272 log_print(INFO, "Connecting to %s port %s via %s", server, port, interface);
283 if (!setsockopt(s, SOL_SOCKET, SO_BINDTODEVICE, interface,
284 strlen(interface)) && !connect(s, r->ai_addr, r->ai_addrlen)) {
  /external/skia/src/gpu/gl/unix/
SkNativeGLContext_unix.cpp 274 const GrGLInterface* interface = GrGLCreateNativeInterface(); local
275 if (!interface) {
276 SkDebugf("Failed to create gl interface");
280 return interface;
  /art/runtime/mirror/
art_method.cc 149 Class* interface = iftable->GetInterface(i); local
150 for (size_t j = 0; j < interface->NumVirtualMethods(); ++j) {
151 interface_mh.ChangeMethod(interface->GetVirtualMethod(j));
  /device/samsung/manta/bubblelevel/
BubbleLevelImpl.h 38 // BubbleLevel interface
108 // BubbleLevel interface
141 struct bubble_level interface; member in struct:bubble_level_C_impl
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs.cc 153 URLRequestInfoInterface* interface = ppapi_->GetURLRequestInfoInterface(); local
156 PP_Resource request_info = interface->Create(ppapi_->GetInstance());
160 interface->SetProperty(request_info,
163 interface->SetProperty(request_info,
166 interface->SetProperty(request_info,
169 interface->SetProperty(request_info,
191 interface->SetProperty(

Completed in 1045 milliseconds

1 23 4 5 6 7 8 91011>>