HomeSort by relevance Sort by last modified time
    Searched refs:Interface (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/v8/src/
interface.h 39 // interface ::= UNDETERMINED | VALUE | MODULE(exports)
40 // exports ::= {name : interface, ...}
46 class Interface : public ZoneObject {
51 static Interface* NewValue() {
52 static Interface value_interface(VALUE + FROZEN); // Cached.
56 static Interface* NewUnknown() {
57 return new Interface(NONE);
60 static Interface* NewModule() {
61 return new Interface(MODULE);
68 // interface, otherwise insert unless this is closed
    [all...]
interface.cc 30 #include "interface.h"
44 Interface* Interface::Lookup(Handle<String> name) {
52 return static_cast<Interface*>(p->value);
71 void Interface::DoAdd(
72 void* name, uint32_t hash, Interface* interface, bool* ok) {
83 interface->Print(Nesting::current());
95 p->value = interface;
100 reinterpret_cast<Interface*>(p->value)->Unify(interface, ok)
216 Interface* interface = static_cast<Interface*>(p->value); local
    [all...]
  /external/bluetooth/bluez/test/
dbusdef.py 6 dummy = dbus.Interface(bus.get_object('org.bluez', '/'), 'org.freedesktop.DBus.Introspectable')
11 manager = dbus.Interface(bus.get_object('org.bluez', '/'), 'org.bluez.Manager')
14 adapter = dbus.Interface(bus.get_object('org.bluez', manager.DefaultAdapter()), 'org.bluez.Adapter')
test-telephony 9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
24 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
27 test = dbus.Interface(bus.get_object("org.bluez", "/org/bluez/test"),
55 headset = dbus.Interface(bus.get_object("org.bluez", device),
65 headset = dbus.Interface(bus.get_object("org.bluez", device),
75 headset = dbus.Interface(bus.get_object("org.bluez", device),
90 headset = dbus.Interface(bus.get_object("org.bluez", device),
105 headset = dbus.Interface(bus.get_object("org.bluez", device),
116 headset = dbus.Interface(bus.get_object("org.bluez", device),
test-oob 21 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
27 adapter0 = dbus.Interface(bus.get_object("org.bluez", adapter0_path),
29 adapter1 = dbus.Interface(bus.get_object("org.bluez", adapter1_path),
57 oob_adapter0 = dbus.Interface(bus.get_object("org.bluez",
59 oob_adapter1 = dbus.Interface(bus.get_object("org.bluez",
test-audio 9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
24 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
36 audio = dbus.Interface(bus.get_object("org.bluez", device),
test-input 9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
24 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
36 input = dbus.Interface(bus.get_object("org.bluez", device),
test-network 10 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
26 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
42 network = dbus.Interface(bus.get_object("org.bluez", device),
test-serial 10 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
25 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
41 serial = dbus.Interface(bus.get_object("org.bluez", path),
simple-service 104 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
112 service = dbus.Interface(bus.get_object("org.bluez", path),
test-attrib 19 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
34 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
48 device = dbus.Interface(bus.get_object("org.bluez", path),
54 service = dbus.Interface(bus.get_object("org.bluez", path),
72 device = dbus.Interface(bus.get_object("org.bluez", path),
83 service = dbus.Interface(bus.get_object("org.bluez", args[1]),
93 service = dbus.Interface(bus.get_object("org.bluez", args[1]),
98 char = dbus.Interface(bus.get_object("org.bluez", path),
test-health-sink 15 hdp_manager = dbus.Interface(bus.get_object("org.bluez", "/org/bluez"),
22 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
45 adapter = dbus.Interface(bus.get_object("org.bluez", select),
73 device = dbus.Interface(bus.get_object("org.bluez", select),
test-nap 10 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
26 server = dbus.Interface(bus.get_object("org.bluez", adapter_path),
test-service 10 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
25 service = dbus.Interface(bus.get_object("org.bluez", adapter_path),
list-devices 7 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
33 adapter = dbus.Interface(bus.get_object("org.bluez", i),
55 device = dbus.Interface(bus.get_object("org.bluez", n),
79 node = dbus.Interface(bus.get_object("org.bluez", x),
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
InterfaceEnum.java 19 public enum InterfaceEnum implements Parent.Interface {
  /external/chromium/base/win/
scoped_comptr.h 17 // A fairly minimalistic smart class for COM interface pointers.
20 template <class Interface, const IID* interface_id = &__uuidof(Interface)>
21 class ScopedComPtr : public scoped_refptr<Interface> {
25 class BlockIUnknownMethods : public Interface {
32 typedef scoped_refptr<Interface> ParentClass;
37 explicit ScopedComPtr(Interface* p) : ParentClass(p) {
40 ScopedComPtr(const ScopedComPtr<Interface, interface_id>& p)
47 COMPILE_ASSERT(sizeof(ScopedComPtr<Interface, interface_id>) ==
48 sizeof(Interface*), ScopedComPtrSize)
    [all...]
  /external/srec/portable/src/
PANSIFileImpl.c 47 PFileCreateImpl(&impl->Interface.Interface, filename, isLittleEndian);
48 impl->Interface.Interface.close = &PANSIFileCloseImpl;
49 impl->Interface.Interface.clearError = &PANSIFileClearErrorImpl;
50 impl->Interface.Interface.destroy = &PANSIFileDestroyImpl;
51 impl->Interface.Interface.fgetc = &PANSIFileFgetcImpl
    [all...]
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 3 implements com.android.stubs.Parent.Interface
  /external/srec/srec/AcousticState/src/
AcousticStateImpl.c 44 impl->Interface.load = &SR_AcousticStateLoadImpl;
45 impl->Interface.save = &SR_AcousticStateSaveImpl;
46 impl->Interface.destroy = &SR_AcousticStateDestroyImpl;
47 impl->Interface.reset = &SR_AcousticStateResetImpl;
48 impl->Interface.set = &SR_AcousticStateSetImpl;
49 impl->Interface.get = &SR_AcousticStateGetImpl;
51 recogImpl->acousticState = &impl->Interface;
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/a/
A.java 21 public abstract class A extends Parent implements Parent.Interface, SomeInterface {
  /external/srec/shared/src/
IntArrayListImpl.c 38 impl->Interface.add = &IntArrayList_Add;
39 impl->Interface.contains = &IntArrayList_Contains;
40 impl->Interface.destroy = &IntArrayList_Destroy;
41 impl->Interface.get = &IntArrayList_Get;
42 impl->Interface.getSize = &IntArrayList_GetSize;
43 impl->Interface.remove = &IntArrayList_Remove;
44 impl->Interface.removeAll = &IntArrayList_RemoveAll;
45 impl->Interface.set = &IntArrayList_Set;
46 impl->Interface.toStaticArray = &IntArrayList_ToStaticArray;
  /external/srec/srec/Semproc/src/
SemanticResultImpl.c 46 impl->Interface.destroy = &SR_SemanticResult_Destroy;
47 impl->Interface.getKeyCount = &SR_SemanticResult_GetKeyCount;
48 impl->Interface.getKeyList = &SR_SemanticResult_GetKeyList;
49 impl->Interface.getValue = &SR_SemanticResult_GetValue;
58 impl->Interface.destroy(&impl->Interface);
  /external/expat/amiga/
launch.c 48 DropInterface((struct Interface*)IExpat);
  /external/srec/shared/include/
LStringImpl.h 35 * Interface functions that must be implemented.
37 LString Interface;

Completed in 280 milliseconds

1 2 3 4 5 6