Searched defs:invokable (Results 1 – 5 of 5) sorted by relevance
/external/guava/guava-tests/test/com/google/common/reflect/ |
D | InvokableTest.java | 299 Invokable<String, String> invokable = Invokable.from(String.class.getConstructor()); in testGetOwnerType_constructor() local 304 Invokable<?, ?> invokable = Invokable.from(String.class.getMethod("length")); in testGetOwnerType_method() local 344 Invokable<?, ?> invokable = Invokable.from(constructor); in testInnerClassWithOneParameterConstructor() local 357 Invokable<?, ?> invokable = Invokable.from(constructor); in testInnerClassWithAnnotatedConstructorParameter() local 370 Invokable<?, ?> invokable = Invokable.from(constructor); in testInnerClassWithGenericConstructorParameter() local 501 Invokable<?, ?> invokable = Invokable.from(constructor); in testLocalClassWithOneParameterConstructor() local 513 Invokable<?, ?> invokable = Invokable.from(constructor); in testLocalClassWithAnnotatedConstructorParameter() local 525 Invokable<?, ?> invokable = Invokable.from(constructor); in testLocalClassWithGenericConstructorParameter() local 589 Invokable<Prepender, Object> invokable = (Invokable<Prepender, Object>) in method() local
|
D | TypeTokenTest.java | 1244 Invokable<T, String> invokable = new TypeToken<T>(getClass()) {} in testMethod_returnType_resolvedAgainstTypeBound() local 1253 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.method(setMethod); in testMethod_parameterTypes() local 1280 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.method(failMethod); in testMethod_exceptionTypes() local 1331 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor); in testConstructor_parameterTypes() local 1346 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor); in testConstructor_exceptionTypes() local
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | ClassSanityTester.java | 394 Invokable<?, ?> invokable = Invokable.from(method); in forAllPublicStaticMethods() local 687 Invokable<?, ?> invokable = type.method(method); in getFactories() local 699 Invokable<T, T> invokable = type.constructor(constructor); in getFactories() local 715 private List<Object> getDummyArguments(Invokable<?, ?> invokable) in getDummyArguments()
|
D | NullPointerTester.java | 331 private void testParameter(Object instance, Invokable<?, ?> invokable, in testParameter() 358 TypeToken type, int position, Invokable<?, ?> invokable) { in bestAvailableString() 368 private Object[] buildParamList(Invokable<?, ?> invokable, int indexOfParamToSetToNull) { in buildParamList()
|
D | DummyProxy.java | 72 Invokable<?, ?> invokable = interfaceType.method(method); in handleInvocation() local
|