HomeSort by relevance Sort by last modified time
    Searched refs:Interface (Results 51 - 75 of 182) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/dbus/
mock_object_manager.h 26 Interface*));
object_manager.h 15 // Newer D-Bus services implement the Object Manager interface to inform other
21 // This interface is very closely tied to the Properties interface, and uses
25 // the classes implemented here make dealing with this interface simpler.
31 // dbus::ObjectManager::Interface class, and defining a Properties structure as
35 // class ExampleClient : public dbus::ObjectManager::Interface {
57 // itself as the implementation class for its interface.
74 // The object manager interface class has one abstract method that must be
102 // interface or from the Object Manager interface. You may also wish t
    [all...]
  /external/chromium_org/v8/src/
variables.h 32 #include "interface.h"
83 Interface* interface = Interface::NewValue());
151 Interface* interface() const { return interface_; } function in class:v8::internal::Variable
184 Interface* interface_;
scopes.h 53 Interface* interface = Interface::NewValue());
157 Interface* interface = Interface::NewValue());
169 Interface* interface = Interface::NewValue(),
176 factory->NewVariableProxy(name, false, interface, position)
361 Interface* interface() const { return interface_; } function in class:v8::internal::Scope
    [all...]
  /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;
SR_NametagsImpl.h 38 * Interface functions that must be implemented.
40 SR_Nametags Interface;
  /external/v8/src/
variables.h 32 #include "interface.h"
83 Interface* interface = Interface::NewValue());
158 Interface* interface() const { return interface_; } function in class:v8::internal::Variable
191 Interface* interface_;
scopes.h 53 Interface* interface = Interface::NewValue());
150 Interface* interface = Interface::NewValue());
163 Interface* interface = Interface::NewValue()) {
169 factory->NewVariableProxy(name, false, position, interface);
344 Interface* interface() const { return interface_; } function in class:v8::internal::Scope
    [all...]
  /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/wpa_supplicant_8/wpa_supplicant/examples/
dbus-listen-preq.py 12 WPAS_DBUS_INTERFACES_INTERFACE = "fi.w1.wpa_supplicant1.Interface"
47 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
54 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
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
wpas-dbus-new-wps.py 13 WPAS_DBUS_INTERFACES_INTERFACE = "fi.w1.wpa_supplicant1.Interface"
14 WPAS_DBUS_WPS_INTERFACE = "fi.w1.wpa_supplicant1.Interface.WPS"
46 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
73 wps = dbus.Interface(if_obj, WPAS_DBUS_WPS_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;
VocabularyImpl.c 162 impl->Interface.save = &SR_VocabularySaveImpl;
163 impl->Interface.getPronunciation = &SR_VocabularyGetPronunciationImpl;
164 impl->Interface.getLanguage = &SR_VocabularyGetLanguageImpl;
165 impl->Interface.destroy = &SR_VocabularyDestroyImpl;
237 SR_Vocabulary* Interface;
241 CHK(rc, SR_VocabularyCreateImpl(&Interface));
242 impl = (SR_VocabularyImpl*) Interface;
254 *self = Interface;
257 Interface->destroy(Interface);
    [all...]
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
Parent.java 5 public static interface Interface
  /external/chromium_org/chrome/test/pyautolib/chromeos/
enable_testing.py 6 """Enable chrome testing interface on ChromeOS.
10 The path to named testing interface automation socket is printed out.
25 """Helper to enable chrome testing interface on ChromeOS.
45 manager = dbus.Interface(system_bus.get_object(self.SESSION_MANAGER_SERVICE,
  /external/srec/shared/include/
IntArrayListImpl.h 34 * Interface functions that must be implemented.
36 IntArrayList Interface;
  /external/srec/srec/AcousticState/include/
SR_AcousticStateImpl.h 39 * Interface functions that must be implemented.
41 SR_AcousticState Interface;
  /external/srec/srec/Semproc/include/
SR_SemanticProcessorImpl.h 45 * Interface functions that must be implemented.
47 SR_SemanticProcessor Interface;
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 1 (*===-- llvm_bitwriter.ml - LLVM Ocaml Interface ----------------*- C++ -*-===*
10 * This interface provides an ocaml API for the LLVM intermediate
  /external/srec/shared/src/
SessionTypeImpl.c 41 ESR_SessionType* Interface;
50 Interface = NEW(ESR_SessionType, MTAG);
51 if (Interface == NULL)
64 Interface->addListener = &ESR_SessionTypeAddListenerImpl;
65 Interface->contains = &ESR_SessionTypeContainsImpl;
66 Interface->convertToBool = &ESR_SessionTypeConvertToBoolImpl;
67 Interface->convertToFloat = &ESR_SessionTypeConvertToFloatImpl;
68 Interface->convertToInt = &ESR_SessionTypeConvertToIntImpl;
69 Interface->convertToUint16_t = &ESR_SessionTypeConvertToUint16_tImpl;
70 Interface->convertToSize_t = &ESR_SessionTypeConvertToSize_tImpl
    [all...]
  /external/srec/srec/Grammar/src/
SR_GrammarImpl.c 48 impl->Interface.addNametagToSlot = &SR_Grammar_AddNametagToSlot;
49 impl->Interface.addWordToSlot = &SR_Grammar_AddWordToSlot;
50 impl->Interface.checkParse = &SR_Grammar_CheckParse;
51 impl->Interface.compile = &SR_Grammar_Compile;
52 impl->Interface.destroy = &SR_Grammar_Destroy;
53 impl->Interface.getParameter = &SR_Grammar_GetParameter;
54 impl->Interface.getSize_tParameter = &SR_Grammar_GetSize_tParameter;
55 impl->Interface.resetAllSlots = &SR_Grammar_ResetAllSlots;
56 impl->Interface.save = &SR_Grammar_Save;
57 impl->Interface.setDispatchFunction = &SR_Grammar_SetDispatchFunction
    [all...]

Completed in 1152 milliseconds

1 23 4 5 6 7 8