/external/guava/guava-testlib/src/com/google/common/testing/ |
DummyProxy.java | 24 import com.google.common.reflect.Invokable; 72 Invokable<?, ?> invokable = interfaceType.method(method); local 73 ImmutableList<Parameter> params = invokable.getParameters();
|
ClassSanityTester.java | 35 import com.google.common.reflect.Invokable; 81 private static final Ordering<Invokable<?, ?>> BY_METHOD_NAME = 82 new Ordering<Invokable<?, ?>>() { 83 @Override public int compare(Invokable<?, ?> left, Invokable<?, ?> right) { 88 private static final Ordering<Invokable<?, ?>> BY_PARAMETERS = 89 new Ordering<Invokable<?, ?>>() { 90 @Override public int compare(Invokable<?, ?> left, Invokable<?, ?> right) { 95 private static final Ordering<Invokable<?, ?>> BY_NUMBER_OF_PARAMETERS 394 Invokable<?, ?> invokable = Invokable.from(method); local 687 Invokable<?, ?> invokable = type.method(method); local 699 Invokable<T, T> invokable = type.constructor(constructor); local [all...] |
/external/guava/guava-tests/test/com/google/common/reflect/ |
InvokableTest.java | 37 * Unit tests for {@link Invokable}. 58 Invokable<?, ?> factory = Invokable.from(constructor); 81 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); 95 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); 102 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class) 110 Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class); 118 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); 123 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class); 128 Invokable<?, ?> delegate = Prepender.method("prepend", String.class, Iterable.class) 299 Invokable<String, String> invokable = Invokable.from(String.class.getConstructor()); local 304 Invokable<?, ?> invokable = Invokable.from(String.class.getMethod("length")); local 344 Invokable<?, ?> invokable = Invokable.from(constructor); local 357 Invokable<?, ?> invokable = Invokable.from(constructor); local 370 Invokable<?, ?> invokable = Invokable.from(constructor); local 501 Invokable<?, ?> invokable = Invokable.from(constructor); local 513 Invokable<?, ?> invokable = Invokable.from(constructor); local 525 Invokable<?, ?> invokable = Invokable.from(constructor); local 589 Invokable<Prepender, Object> invokable = (Invokable<Prepender, Object>) local [all...] |
TypeTokenTest.java | 1243 Invokable<T, String> invokable = new TypeToken<T>(getClass()) {} local 1252 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.method(setMethod); local 1279 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.method(failMethod); local 1330 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor); local 1345 Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor); local [all...] |
/external/guice/lib/build/ |
guava-testlib-16.0.1.jar | |
/prebuilts/tools/common/m2/repository/nl/jqno/equalsverifier/equalsverifier/2.1.5/ |
equalsverifier-2.1.5.jar | |