Home
last modified time | relevance | path

Searched defs:interfaceType (Results 1 – 25 of 43) sorted by relevance

12

/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DProviderChecker.java20 Class<P> interfaceType, Optional<? extends Type> valueType) { in checkInterface()
25 interfaceType); in checkInterface() local
32 interfaceType); in checkInterface() local
51 interfaceType, in checkInterface() local
57 interfaceType, in checkInterface() local
63 interfaceType, in checkInterface() local
95 interfaceType, in checkInterface() local
101 interfaceType, in checkInterface() local
DThrowingProviderBinder.java119 Class<P> interfaceType, Type clazz) { in bind()
125 Class<P> interfaceType, Class<T> clazz) { in bind()
131 Class<P> interfaceType, TypeLiteral<T> typeLiteral) { in bind()
136 private final Class<P> interfaceType; field in ThrowingProviderBinder.SecondaryBinder
146 public SecondaryBinder(Class<P> interfaceType, Type valueType) { in SecondaryBinder()
/external/guava/guava-testlib/src/com/google/common/testing/
DForwardingWrapperTester.java81 Class<T> interfaceType, Function<? super T, ? extends T> wrapperFunction) { in testForwarding()
83 checkArgument(interfaceType.isInterface(), "%s isn't an interface", interfaceType); in testForwarding() local
130 Class<T> interfaceType, Method method, Function<? super T, ? extends T> wrapperFunction) { in testSuccessfulForwarding()
135 Class<T> interfaceType, Method method, Function<? super T, ? extends T> wrapperFunction) { in testExceptionPropagation()
161 Class<T> interfaceType, Function<? super T, ? extends T> wrapperFunction) { in testEquals()
172 Class<T> interfaceType, Function<? super T, ? extends T> wrapperFunction) { in testToString()
192 private final Class<T> interfaceType; field in ForwardingWrapperTester.InteractionTester
198 InteractionTester(Class<T> interfaceType, Method method) { in InteractionTester()
DDummyProxy.java50 final <T> T newProxy(TypeToken<T> interfaceType) { in newProxy()
69 private final TypeToken<?> interfaceType; field in DummyProxy.DummyHandler
71 DummyHandler(TypeToken<?> interfaceType) { in DummyHandler()
DFreshValueGenerator.java198 final <T> T newFreshProxy(final Class<T> interfaceType) { in newFreshProxy()
273 private <T> T newProxy(final Class<T> interfaceType) { in newProxy()
291 private final Class<?> interfaceType; field in FreshValueGenerator.FreshInvocationHandler
293 FreshInvocationHandler(Class<?> interfaceType) { in FreshInvocationHandler()
325 Object interfaceMethodCalled(Class<?> interfaceType, Method method) { in interfaceMethodCalled()
/external/guava/android/guava-testlib/src/com/google/common/testing/
DForwardingWrapperTester.java81 Class<T> interfaceType, Function<? super T, ? extends T> wrapperFunction) { in testForwarding()
83 checkArgument(interfaceType.isInterface(), "%s isn't an interface", interfaceType); in testForwarding() local
130 Class<T> interfaceType, Method method, Function<? super T, ? extends T> wrapperFunction) { in testSuccessfulForwarding()
135 Class<T> interfaceType, Method method, Function<? super T, ? extends T> wrapperFunction) { in testExceptionPropagation()
161 Class<T> interfaceType, Function<? super T, ? extends T> wrapperFunction) { in testEquals()
172 Class<T> interfaceType, Function<? super T, ? extends T> wrapperFunction) { in testToString()
192 private final Class<T> interfaceType; field in ForwardingWrapperTester.InteractionTester
198 InteractionTester(Class<T> interfaceType, Method method) { in InteractionTester()
DDummyProxy.java50 final <T> T newProxy(TypeToken<T> interfaceType) { in newProxy()
69 private final TypeToken<?> interfaceType; field in DummyProxy.DummyHandler
71 DummyHandler(TypeToken<?> interfaceType) { in DummyHandler()
DFreshValueGenerator.java194 final <T> T newFreshProxy(final Class<T> interfaceType) { in newFreshProxy()
269 private <T> T newProxy(final Class<T> interfaceType) { in newProxy()
287 private final Class<?> interfaceType; field in FreshValueGenerator.FreshInvocationHandler
289 FreshInvocationHandler(Class<?> interfaceType) { in FreshInvocationHandler()
321 Object interfaceMethodCalled(Class<?> interfaceType, Method method) { in interfaceMethodCalled()
/external/libchrome/mojo/public/js/
Dbindings.js39 function InterfacePtrController(interfaceType, ptrInfoOrHandle) { argument
183 function Binding(interfaceType, impl, requestOrHandle) { argument
265 function BindingSetEntry(bindingSet, interfaceType, bindingType, impl, argument
281 function BindingSet(interfaceType) { argument
360 function AssociatedInterfacePtrController(interfaceType, associatedPtrInfo) { argument
464 function AssociatedBinding(interfaceType, impl, associatedInterfaceRequest) { argument
533 function AssociatedBindingSet(interfaceType) { argument
/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/
DMapModel.java22 private String interfaceType; field in MapModel
36 String interfaceType, in MapModel()
62 public void setInterfaceType(String interfaceType) { in setInterfaceType()
DListModel.java26 private String interfaceType; field in ListModel
42 String interfaceType, in ListModel()
72 public void setInterfaceType(String interfaceType) { in setInterfaceType()
/external/guava/android/guava/src/com/google/common/reflect/
DReflection.java80 public static <T> T newProxy(Class<T> interfaceType, InvocationHandler handler) { in newProxy()
82 checkArgument(interfaceType.isInterface(), "%s is not an interface", interfaceType); in newProxy() local
/external/guava/guava/src/com/google/common/reflect/
DReflection.java80 public static <T> T newProxy(Class<T> interfaceType, InvocationHandler handler) { in newProxy()
82 checkArgument(interfaceType.isInterface(), "%s is not an interface", interfaceType); in newProxy() local
/external/ow2-asm/asm-analysis/src/test/java/org/objectweb/asm/tree/analysis/
DSimpleVerifierTest.java82 Type interfaceType = Type.getObjectType("I"); in testIsAssignableFrom_subclassWithInterfaces() local
120 Type interfaceType = Type.getObjectType("I"); in testIsAssignableFrom_interface() local
/external/guava/android/guava/src/com/google/common/util/concurrent/
DSimpleTimeLimiter.java77 T target, Class<T> interfaceType, long timeoutDuration, TimeUnit timeoutUnit) { in newProxy()
108 private static <T> T newProxy(Class<T> interfaceType, InvocationHandler handler) { in newProxy()
246 private static Set<Method> findInterruptibleMethods(Class<?> interfaceType) { in findInterruptibleMethods()
DTimeLimiter.java83 <T> T newProxy(T target, Class<T> interfaceType, long timeoutDuration, TimeUnit timeoutUnit); in newProxy()
DFakeTimeLimiter.java45 T target, Class<T> interfaceType, long timeoutDuration, TimeUnit timeoutUnit) { in newProxy()
/external/guava/guava/src/com/google/common/util/concurrent/
DSimpleTimeLimiter.java77 T target, Class<T> interfaceType, long timeoutDuration, TimeUnit timeoutUnit) { in newProxy()
108 private static <T> T newProxy(Class<T> interfaceType, InvocationHandler handler) { in newProxy()
246 private static Set<Method> findInterruptibleMethods(Class<?> interfaceType) { in findInterruptibleMethods()
DTimeLimiter.java85 <T> T newProxy(T target, Class<T> interfaceType, long timeoutDuration, TimeUnit timeoutUnit); in newProxy()
126 default <T> T newProxy(T target, Class<T> interfaceType, Duration timeout) { in newProxy()
DFakeTimeLimiter.java45 T target, Class<T> interfaceType, long timeoutDuration, TimeUnit timeoutUnit) { in newProxy()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DForwardingObjectTester.java56 Class<? super T> interfaceType = in testForwardingObject() local
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DForwardingObjectTester.java56 Class<? super T> interfaceType = in testForwardingObject() local
/external/pytorch/aten/src/ATen/test/
Dtype_test.cpp144 auto interfaceType = importType(cu, "__torch__.OneForward", interfaceSrc); in TEST() local
162 auto interfaceType = importType(cu, "__torch__.OneForward", interfaceSrc); in TEST() local
/external/libese/ready_se/google/keymint/KM300/Applet/AndroidSEProviderLib/src/com/android/javacard/seprovider/
DKMSEProvider.java580 byte interfaceType, in initSymmetricOperation()
743 void onSave(Element element, byte interfaceType, Object object); in onSave()
760 short getBackupPrimitiveByteCount(byte interfaceType); in getBackupPrimitiveByteCount()
769 short getBackupObjectCount(byte interfaceType); in getBackupObjectCount()
/external/libese/ready_se/google/keymint/KM200/Applet/AndroidSEProviderLib/src/com/android/javacard/seprovider/
DKMSEProvider.java580 byte interfaceType, in initSymmetricOperation()
745 void onSave(Element element, byte interfaceType, Object object); in onSave()
762 short getBackupPrimitiveByteCount(byte interfaceType); in getBackupPrimitiveByteCount()
771 short getBackupObjectCount(byte interfaceType); in getBackupObjectCount()

12