Searched defs:Interface (Results 1 - 25 of 30) sorted by relevance

12

/external/google-breakpad/src/testing/test/
H A Dgmock_link_test.h104 // 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 { class
193 virtual ~Interface() {}
205 class Mock: public Interface {
/external/googletest/googlemock/test/
H A Dgmock_link_test.h104 // 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 { class
193 virtual ~Interface() {}
205 class Mock: public Interface {
/external/libchrome/dbus/
H A Dobject_manager.h34 // dbus::ObjectManager::Interface class, and defining a Properties structure as
38 // class ExampleClient : public dbus::ObjectManager::Interface {
141 // ObjectManager::Interface must be implemented by any class wishing to have
143 class Interface { class in class:dbus::ObjectManager
145 virtual ~Interface() {}
195 Interface* interface);
331 typedef std::map<std::string, Interface*> InterfaceMap;
/external/v8/testing/gmock/test/
H A Dgmock_link_test.h104 // 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 { class
193 virtual ~Interface() {}
205 class Mock: public Interface {
/external/guice/core/test/com/google/inject/
H A DRequireAtInjectOnConstructorsTest.java71 bind(Interface.class).to(NoCxtors.class);
194 private static interface Interface {} interface in class:RequireAtInjectOnConstructorsTest
195 private static class NoCxtors implements Interface {}
H A DInjectorTest.java222 requestStaticInjection(Interface.class);
230 "1) " + Interface.class.getName()
237 private static interface Interface {} interface in class:InjectorTest
H A DMethodInterceptionTest.java260 bind(Interface.class).to(Impl.class);
268 Interface intf = injector.getInstance(Interface.class);
279 public interface Interface { interface in class:MethodInterceptionTest
282 public static class Impl extends Superclass<RetType> implements Interface {
H A DProvisionListenerTest.java314 bind(Interface.class).toInstance(new Implementation());
325 ImmutableSet.of(Key.get(Interface.class), Key.get(String.class, named("constant"))),
411 interface Interface {} interface in class:ProvisionListenerTest
412 class Implementation implements Interface {}
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DBindingsTestUtils.java99 public static <I extends Interface, P extends Interface.Proxy> P newProxyOverPipe( argument
100 Interface.Manager<I, P> manager, I impl, List<Closeable> toClose) {
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkQueryUtil.hpp115 template <typename Context, typename Interface, typename Type>
117 bool validateInitComplete(Context context, void (Interface::*Function)(Context, Type*)const, const Interface& interface, const QueryMemberTableEntry* queryMemberTableEntry) argument
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dast.py196 class Interface(Definition): class in inherits:Definition
202 super(Interface, self).__init__(name, **kwargs)
207 return super(Interface, self).__eq__(other) and \
/external/autotest/client/common_lib/cros/network/
H A Dinterface.py66 class Interface: class in inherits:
86 @return an Interface object except under the conditions described above.
91 ethernet_if = Interface(device_name)
/external/guice/extensions/grapher/test/com/google/inject/grapher/
H A DTransitiveDependencyVisitorTest.java86 Binding<?> binding = getBinding(Key.get(Interface.class), new HasDependenciesModule());
96 Binding<?> binding = getBinding(Key.get(Interface.class), new LinkedKeyModule());
150 private static interface Interface {} interface in class:TransitiveDependencyVisitorTest
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/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DInterface.java8 import org.chromium.mojo.bindings.Interface.AbstractProxy.HandlerImpl;
19 public interface Interface extends ConnectionErrorHandler, Closeable { interface in inherits:ConnectionErrorHandler,Closeable
31 * Interface and each time a method is called, the parameters are serialized and sent to the
34 public interface Proxy extends Interface {
165 * @see Interface.Proxy.Handler#passHandle()
232 * @see Interface#close()
263 abstract class Stub<I extends Interface> implements MessageReceiverWithResponder {
316 abstract class Manager<I extends Interface, P extends Proxy> {
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
H A DFieldInitializerTest.java32 private Interface interfaceType;
35 private Interface instantiatedInterfaceType = new ConcreteStaticClass();
197 interface Interface { interface in class:FieldInitializerTest
201 static class ConcreteStaticClass extends AbstractStaticClass implements Interface {
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dhand.c25 OUT VOID **Interface
36 *Interface = NULL;
44 Status = uefi_call_wrapper(BS->HandleProtocol, 3, Handles[Index], ProtocolGuid, Interface);
447 VOID *Interface; local
478 Interface = va_arg(args, VOID *);
484 DEBUG((D_INFO, "LibInstallProtocolInterface: %d %x\n", Protocol, Interface));
485 Status = uefi_call_wrapper(BS->InstallProtocolInterface, 4, Handle, Protocol, EFI_NATIVE_INTERFACE, Interface);
503 Interface = va_arg(args, VOID *);
504 uefi_call_wrapper(BS->UninstallProtocolInterface, 3, *Handle, Protocol, Interface);
530 VOID *Interface; local
[all...]
/external/tpm2/generator/
H A Dstructure_generator.py372 Interface objects.
629 class Interface(TPMType): class in inherits:TPMType
723 """Initializes an Interface instance.
732 super(Interface, self).__init__()
742 """Returns true if Interface has a valid conditional_value."""
750 """Writes marshal implementation for Interface to |out_file|.
809 """Writes marshal declarations for Interface to |out_file|.
811 Outputted declaration depends on whether Interface type has a
834 """Write a call to Unmarshal function for Interface type to |out_file|.
836 Override TPMType OutputUnmarshalCall because when an Interface typ
[all...]
H A Dtpm_table.py17 from structure_generator import Interface namespace
483 new_if = Interface(self._title_type, new_name)
497 new_if = Interface(self._title_type, type_name)
/external/deqp/scripts/khr_util/
H A Dregistry.py82 class Interface(Object): pass class in inherits:Object
219 class Interface(Object): class in inherits:Object
379 return Interface(
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp1 //===--- CodeCompleteConsumer.cpp - Code Completion Interface ---*- C++ -*-===//
308 const ObjCInterfaceDecl *Interface = Cat->getClassInterface(); local
309 if (!Interface) {
316 OS << Interface->getName() << '(' << Cat->getName() << ')';
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py459 if not isinstance(kind, Interface):
461 "Interface request requires %r to be an interface." % kind.spec)
544 class Interface(ReferenceKind): class in inherits:ReferenceKind
586 if not isinstance(kind, Interface):
661 interface = Interface(name, self, attributes)
734 return isinstance(kind, Interface)
/external/selinux/python/sepolgen/src/sepolgen/
H A Drefpolicy.py71 of their childre (see Interface for example).
93 return filter(lambda x: isinstance(x, Interface), walktree(self))
119 """Iterate over all of the TypeAttribute children of this Interface."""
123 """Iterate over all of the RoleAttribute children of this Interface."""
739 class Interface(Node): class in inherits:Node
749 return "[Interface name: %s]" % self.name
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp557 const ObjCInterfaceDecl *Interface = IvarDecl->getContainingInterface(); local
562 if (classHasSeparateTeardown(Interface))
565 ObjCImplDecl *ImplDecl = Interface->getImplementation();
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedSetTest.java190 * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
212 Interface a = new Impl();
213 Interface b = new Impl();
214 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b);
219 interface Interface extends Comparable<Interface> { interface in class:ImmutableSortedSetTest
221 static class Impl implements Interface {
225 @Override public int compareTo(Interface other) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSortedSetTest.java316 * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
338 Interface a = new Impl();
339 Interface b = new Impl();
340 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b);
345 interface Interface extends Comparable<Interface> { interface in class:ImmutableSortedSetTest
347 static class Impl implements Interface {
351 @Override public int compareTo(Interface other) {

Completed in 1214 milliseconds

12