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

12

/external/r8/src/test/examples/shaking4/
H A DInterface.java6 public interface Interface { interface
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dgmock-expected.cc9 class Interface { class in namespace:blink
14 class MockedInterface : public Interface {
H A Dgmock-original.cc9 class Interface { class in namespace:blink
14 class MockedInterface : public Interface {
/external/r8/src/test/examples/shaking2/
H A DInterface.java6 public interface Interface extends SuperInterface1, SuperInterface2 { interface in inherits:SuperInterface1,SuperInterface2
/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.hpp136 template <typename Context, typename Interface, typename Type>
138 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:
84 @return an Interface object except under the conditions described above.
89 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/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmGraphicsShaderTestUtil.hpp100 // Interface data type.
132 typedef std::pair<IFDataType, BufferSp> Interface; typedef in namespace:vkt::SpirVAssembly
134 // Interface variables used by graphics-pipeline-based tests.
148 void setInputOutput (const Interface& input, const Interface& output)
194 // vector<Interface> acts as a null-able Interface here. Canonically we should use
200 std::vector<Interface> inputs;
201 std::vector<Interface> outputs;

Completed in 1101 milliseconds

12