/external/srec/srec/Semproc/src/ |
LexicalAnalyzer.c | 31 LexicalAnalyzer* Interface; 39 Interface = NEW(LexicalAnalyzer, MTAG); 40 if (Interface == NULL) 45 *self = Interface;
|
SemanticProcessorImpl.c | 138 impl->Interface.destroy = &SR_SemanticProcessor_Destroy; 139 impl->Interface.checkParse = &SR_SemanticProcessor_CheckParse; 140 impl->Interface.checkParseByWordID = &SR_SemanticProcessor_CheckParseByWordID; 141 impl->Interface.setParam = &SR_SemanticProcessor_SetParam; 142 impl->Interface.flush = &SR_SemanticProcessor_Flush; 148 impl->Interface.destroy(&impl->Interface); [all...] |
ExpressionParser.c | 46 ExpressionParser* Interface; 54 Interface = NEW(ExpressionParser, MTAG); 55 if (Interface == NULL) 62 CHKLOG(rc, HashMapCreate(&Interface->pfunctions)); 65 Interface->next = &Interface->functions[0]; 66 CHKLOG(rc, EP_RegisterFunction(Interface, L("concat"), NULL, EE_concat)); 67 CHKLOG(rc, EP_RegisterFunction(Interface, L("conditional"), NULL, EE_conditional)); 68 CHKLOG(rc, EP_RegisterFunction(Interface, L("add"), NULL, EE_add)); 69 CHKLOG(rc, EP_RegisterFunction(Interface, L("subtract"), NULL, EE_subtract)) [all...] |
/external/dbus/test/name-test/ |
test-activation-forking.py | 19 bus_iface = dbus.Interface(bus.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus'), 'org.freedesktop.DBus') 22 i = dbus.Interface(o, 'org.freedesktop.TestSuite') 45 i = dbus.Interface(o, 'org.freedesktop.TestSuite')
|
/external/srec/portable/src/ |
ArrayListImpl.c | 41 impl->Interface.add = &ArrayList_Add; 42 impl->Interface.insertAt = &ArrayList_InsertAt; 43 impl->Interface.contains = &ArrayList_Contains; 44 impl->Interface.destroy = &ArrayList_Destroy; 45 impl->Interface.get = &ArrayList_Get; 46 impl->Interface.getSize = &ArrayList_GetSize; 47 impl->Interface.remove = &ArrayList_Remove; 48 impl->Interface.removeAtIndex = &ArrayList_RemoveAtIndex; 49 impl->Interface.removeAll = &ArrayList_RemoveAll; 50 impl->Interface.set = &ArrayList_Set [all...] |
/external/bluetooth/bluez/test/ |
test-device | 15 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager") 30 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path), 51 device = dbus.Interface(bus.get_object("org.bluez", path), 93 device = dbus.Interface(bus.get_object("org.bluez", path), 103 device = dbus.Interface(bus.get_object("org.bluez", path), 123 device = dbus.Interface(bus.get_object("org.bluez", path), 134 device = dbus.Interface(bus.get_object("org.bluez", path), 145 device = dbus.Interface(bus.get_object("org.bluez", path), 159 device = dbus.Interface(bus.get_object("org.bluez", path), 179 device = dbus.Interface(bus.get_object("org.bluez", path) [all...] |
test-discovery | 27 manager = dbus.Interface(bus.get_object("org.bluez", "/"), 43 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
|
test-health | 38 interface_keyword="interface") 50 hdp_manager = dbus.Interface(bus.get_object("org.bluez", "/org/bluez"), 132 manager = dbus.Interface(bus.get_object("org.bluez", "/"), 155 adapter = dbus.Interface(bus.get_object("org.bluez", select), 182 device = dbus.Interface(bus.get_object("org.bluez", select),
|
test-manager | 22 manager = dbus.Interface(bus.get_object('org.bluez', '/'),
|
/external/srec/shared/src/ |
Int8ArrayListImpl.c | 38 impl->Interface.add = &Int8ArrayList_Add; 39 impl->Interface.contains = &Int8ArrayList_Contains; 40 impl->Interface.destroy = &Int8ArrayList_Destroy; 41 impl->Interface.get = &Int8ArrayList_Get; 42 impl->Interface.getSize = &Int8ArrayList_GetSize; 43 impl->Interface.remove = &Int8ArrayList_Remove; 44 impl->Interface.removeAll = &Int8ArrayList_RemoveAll; 45 impl->Interface.set = &Int8ArrayList_Set; 46 impl->Interface.toStaticArray = &Int8ArrayList_ToStaticArray; 47 impl->Interface.clone = &Int8ArrayList_Clone [all...] |
CircularBuffer.c | 36 CircularBuffer* Interface; 40 Interface = (CircularBuffer *) MALLOC(sizeof(CircularBuffer) + capacity, mtag); 41 if (Interface == NULL) 43 Interface->capacity = capacity; 44 CircularBufferReset(Interface); 45 *buffer = Interface;
|
HashMapImpl.c | 47 impl->Interface.put = &HashMap_Put; 48 impl->Interface.remove = &HashMap_Remove; 49 impl->Interface.removeAndFree = &HashMap_RemoveAndFree; 50 impl->Interface.removeAll = &HashMap_RemoveAll; 51 impl->Interface.removeAndFreeAll = &HashMap_RemoveAndFreeAll; 52 impl->Interface.removeAtIndex = &HashMap_RemoveAtIndex; 53 impl->Interface.containsKey = &HashMap_ContainsKey; 54 impl->Interface.getKeyAtIndex = &HashMap_GetKeyAtIndex; 55 impl->Interface.get = &HashMap_Get; 56 impl->Interface.getValueAtIndex = &HashMap_GetValueAtIndex [all...] |
/build/tools/droiddoc/test/stubs/expected/com/android/stubs/ |
Types.java | 4 public static interface Interface
|
Parent.java | 5 public static interface Interface
|
/build/tools/droiddoc/test/stubs/expected/com/android/stubs/a/ |
A.java | 4 implements com.android.stubs.Parent.Interface, com.android.stubs.a.SomeInterface
|
/build/tools/droiddoc/test/stubs/src/com/android/stubs/ |
Parent.java | 35 public interface Interface {
|
Types.java | 61 public interface Interface {
|
/external/srec/portable/include/ |
PFileImpl.h | 34 * Interface functions that must be implemented. 36 PFile Interface;
|
/external/srec/srec/Nametag/include/ |
SR_NametagImpl.h | 34 * Interface functions that must be implemented. 36 SR_Nametag Interface;
|
/external/llvm/bindings/ocaml/analysis/ |
llvm_analysis.ml | 1 (*===-- llvm_analysis.ml - LLVM Ocaml Interface -----------------*- C++ -*-===*
|
/external/llvm/bindings/ocaml/bitreader/ |
llvm_bitreader.ml | 1 (*===-- llvm_bitreader.ml - LLVM Ocaml Interface ----------------*- C++ -*-===*
|
/external/srec/srec/Nametag/src/ |
NametagImpl.c | 143 impl->Interface.setID = &SR_Nametag_SetID; 144 impl->Interface.getID = &SR_Nametag_GetID; 145 impl->Interface.getValue = &SR_Nametag_GetValue; 146 impl->Interface.clone = &SR_Nametag_Clone; 147 impl->Interface.destroy = &SR_Nametag_Destroy; 163 rc = SR_NametagSetID(&impl->Interface, id); 173 impl->Interface.destroy(&impl->Interface);
|
/external/srec/srec/Vocabulary/src/ |
Vocabulary.c | 27 SR_Vocabulary* Interface; 31 CHK(rc, SR_VocabularyCreateImpl(&Interface)); 32 impl = (SR_VocabularyImpl*) Interface; 38 rc = SR_CreateG2P(Interface); 41 SR_VocabularyDestroyImpl(Interface); 46 *self = Interface; 54 SR_Vocabulary* Interface; 57 CHK(rc, SR_VocabularyLoadImpl(filename, &Interface)); 59 *self = Interface;
|
/external/wpa_supplicant_6/wpa_supplicant/examples/ |
wpas-test.py | 11 WPAS_DBUS_INTERFACES_INTERFACE = "fi.epitest.hostap.WPASupplicant.Interface" 27 print "Usage: wpas-test.py <interface>" 34 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE) 36 # See if wpa_supplicant already knows about this interface 41 if str(exc) != "wpa_supplicant knows nothing about this interface.": 46 if str(exc) != "wpa_supplicant already controls this interface.": 50 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE) 59 net = dbus.Interface(net_obj, WPAS_DBUS_BSSID_INTERFACE) 86 # Should fail here with unknown interface error
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-test.py | 11 WPAS_DBUS_INTERFACES_INTERFACE = "fi.epitest.hostap.WPASupplicant.Interface" 27 print "Usage: wpas-test.py <interface>" 34 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE) 36 # See if wpa_supplicant already knows about this interface 41 if str(exc) != "wpa_supplicant knows nothing about this interface.": 46 if str(exc) != "wpa_supplicant already controls this interface.": 50 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE) 59 net = dbus.Interface(net_obj, WPAS_DBUS_BSSID_INTERFACE) 86 # Should fail here with unknown interface error
|