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

1 2

  /art/test/430-live-register-slow-path/src/
Main.java 30 doCall(o instanceof Interface[], o);
38 static interface Interface {}
  /external/gmock/test/
gmock_link_test.h 104 // This test requires identical definitions of Interface and Mock to be
109 // definitions of Interface and Mock tests MUST be kept in the SAME
191 class Interface {
193 virtual ~Interface() {}
205 class Mock: public Interface {
  /external/google-breakpad/src/testing/test/
gmock_link_test.h 104 // This test requires identical definitions of Interface and Mock to be
109 // definitions of Interface and Mock tests MUST be kept in the SAME
191 class Interface {
193 virtual ~Interface() {}
205 class Mock: public Interface {
  /external/libchrome/dbus/
object_manager.h 18 // Newer D-Bus services implement the Object Manager interface to inform other
24 // This interface is very closely tied to the Properties interface, and uses
28 // the classes implemented here make dealing with this interface simpler.
34 // dbus::ObjectManager::Interface class, and defining a Properties structure as
38 // class ExampleClient : public dbus::ObjectManager::Interface {
60 // itself as the implementation class for its interface.
77 // The object manager interface class has one abstract method that must be
105 // interface or from the Object Manager interface. You may also wish t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
usbdlib.h 9 PUSBD_INTERFACE_INFORMATION Interface;
68 (urb)->UrbSelectInterface.Interface.AlternateSetting = (alternateSetting); \
69 (urb)->UrbSelectInterface.Interface.InterfaceNumber = (interfaceNumber); \
70 (urb)->UrbSelectInterface.Interface.Length = \
92 #define UsbBuildOsFeatureDescriptorRequest(urb, length, interface, index, transferBuffer, transferBufferMDL, transferBufferLength, link) \
99 (urb)->UrbOSFeatureDescriptorRequest.InterfaceNumber = (interface); \
swenum.h 33 INTERFACE Interface;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comip.h 35 typedef _Interface Interface;
44 typedef typename _IIID::Interface Interface;
73 template<typename _X> _com_ptr_t(Interface *pInterface) throw() : m_pInterface(pInterface) { _AddRef(); }
74 _com_ptr_t(Interface *pInterface,bool fAddRef) throw() : m_pInterface(pInterface) {
103 template<typename _X> _com_ptr_t &operator=(Interface *pInterface) throw() {
105 Interface *pOldInterface = m_pInterface;
115 return operator=(reinterpret_cast<Interface*>(NULL));
123 void Attach(Interface *pInterface) throw() {
127 void Attach(Interface *pInterface,bool fAddRef) throw()
    [all...]
madcapcl.h 39 IPNG_ADDRESS Interface;
dsconf.h 111 LPSTR Interface;
122 LPWSTR Interface;
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
Parent.java 5 public static interface Interface
Types.java 4 public static interface Interface
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
Parent.java 35 public interface Interface {
Types.java 61 public interface Interface {
  /external/dbus-binding-generator/chromeos-dbus-bindings/
interface.h 13 struct Interface {
66 Interface() = default;
67 Interface(const std::string& name_in,
  /external/guice/core/test/com/google/inject/
RequireAtInjectOnConstructorsTest.java 71 bind(Interface.class).to(NoCxtors.class);
194 private static interface Interface {}
195 private static class NoCxtors implements Interface {}
MethodInterceptionTest.java 260 bind(Interface.class).to(Impl.class);
268 Interface intf = injector.getInstance(Interface.class);
279 public interface Interface {
282 public static class Impl extends Superclass<RetType> implements Interface {
ProvisionListenerTest.java 314 bind(Interface.class).toInstance(new Implementation());
325 ImmutableSet.of(Key.get(Interface.class), Key.get(String.class, named("constant"))),
411 interface Interface {}
412 class Implementation implements Interface {}
417 @ImplementedBy(Foo.class) static interface JitFoo {}
419 static interface LinkedFoo {}
691 private interface B {}
695 private interface C {}
696 private interface D {
    [all...]
  /art/test/122-npe/src/
Main.java 509 Interface i = null;
587 interface Interface {
  /external/autotest/client/common_lib/cros/network/
interface.py 20 # A tuple describing a default route, consisting of an interface name,
60 class Interface:
69 INTERFACE_NAME_ETHERNET = 'eth0' # Assume this is `the` ethernet interface.
74 """Get an interface object representing a connected ethernet device.
76 Raises an exception if no such interface exists.
80 @return an Interface object except under the conditions described above.
85 ethernet_if = Interface(device_name)
93 raise error.TestFail('Failed to find ethernet interface.')
105 """@return name of the interface (e.g. 'wlan0')."""
111 """@return the addresses (MAC, IP) associated with interface.""
    [all...]
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 1 //===--- CodeCompleteConsumer.cpp - Code Completion Interface ---*- C++ -*-===//
308 const ObjCInterfaceDecl *Interface = Cat->getClassInterface();
309 if (!Interface) {
316 OS << Interface->getName() << '(' << Cat->getName() << ')';
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
TransitiveDependencyVisitorTest.java 86 Binding<?> binding = getBinding(Key.get(Interface.class), new HasDependenciesModule());
96 Binding<?> binding = getBinding(Key.get(Interface.class), new LinkedKeyModule());
99 // Dependency should be to the class this interface is bound to.
150 private static interface Interface {}
152 private static class ConstructedClass implements Interface {
170 private static class HasDependenciesClass implements Interface, HasDependencies {
196 bind(Interface.class).to(ConstructedClass.class);
210 bind(Interface.class).toInstance(new HasDependenciesClass());
  /external/tpm2/generator/
structure_generator.py 372 Interface objects.
399 # interface.
629 class Interface(TPMType):
630 """Represents a TPM interface type definition.
633 old_type: The base type of the interface (e.g. 'TPM_HANDLE').
723 """Initializes an Interface instance.
729 old_type: The base type of the interface.
732 super(Interface, self).__init__()
742 """Returns true if Interface has a valid conditional_value."""
750 """Writes marshal implementation for Interface to |out_file|
    [all...]
tpm_table.py 17 from structure_generator import Interface
483 new_if = Interface(self._title_type, new_name)
497 new_if = Interface(self._title_type, type_name)
  /external/deqp/scripts/khr_util/
registry.py 82 class Interface(Object): pass
219 class Interface(Object):
365 # midpoints might not be included in the interface even though
379 return Interface(
412 def interface(registry, api, **kwargs): function
  /art/test/450-checker-types/src/
Main.java 17 interface SuperInterface {
21 interface OtherInterface extends SuperInterface {
24 interface Interface extends SuperInterface {
28 class Super implements Interface {
587 /// CHECK-START: SuperInterface Main.getWiderType(boolean, Interface, OtherInterface) builder (after)
590 private SuperInterface getWiderType(boolean cond, Interface a, OtherInterface b) {
594 /// CHECK-START: void Main.testInlinerWidensReturnType(boolean, Interface, OtherInterface) inliner (before)
599 /// CHECK-START: void Main.testInlinerWidensReturnType(boolean, Interface, OtherInterface) inliner (after)
603 private void testInlinerWidensReturnType(boolean cond, Interface a, OtherInterface b)
    [all...]

Completed in 572 milliseconds

1 2