HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 51 - 75 of 1620) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/test/564-checker-irreducible-loop/src/
Main.java 17 import java.lang.reflect.Method;
25 Method m = c.getMethod("simpleLoop", int.class);
  /art/test/571-irreducible-loop/src/
Main.java 17 import java.lang.reflect.Method;
25 Method m = c.getMethod("test1", int.class, float.class);
  /art/test/596-checker-dead-phi/src/
Main.java 17 import java.lang.reflect.Method;
26 // method, so this is just a sanity check that part of the code we
27 // generated for that method is correct.
28 Method m = c.getMethod("liveness", int.class);
  /art/test/599-checker-irreducible-loop/src/
Main.java 17 import java.lang.reflect.Method;
25 Method m = c.getMethod("test", int.class);
  /external/easymock/src/org/easymock/internal/
ILegacyMatcherMethods.java 18 import java.lang.reflect.Method;
26 void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher);
  /external/guava/guava/src/com/google/common/eventbus/
SynchronizedEventSubscriber.java 20 import java.lang.reflect.Method;
23 * Wraps a single-argument subscriber method on a specific object, and ensures
24 * that only one thread may enter the method at a time.
33 * Creates a new SynchronizedEventSubscriber to wrap {@code method} on
36 * @param target object to which the method applies.
37 * @param method subscriber method.
39 public SynchronizedEventSubscriber(Object target, Method method) {
40 super(target, method);
    [all...]
  /external/guice/core/src/com/google/inject/spi/
ProvidesMethodBinding.java 23 import java.lang.reflect.Method;
34 /** Returns the method this binding uses. */
35 Method getMethod();
37 /** Returns the instance of the object the method is defined in. */
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DuplicatesPredicate.java 18 import java.lang.reflect.Method;
25 return unique.add(MethodWrapper.create((Method)arg));
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastMethod.java 19 import java.lang.reflect.Method;
23 FastMethod(FastClass fc, Method method) {
24 super(fc, method, helper(fc, method));
27 private static int helper(FastClass fc, Method method) {
28 int index = fc.getIndex(method.getName(), method.getParameterTypes());
30 Class[] types = method.getParameterTypes()
    [all...]
  /external/mockito/src/org/mockito/invocation/
InvocationOnMock.java 9 import java.lang.reflect.Method;
14 * A placeholder for mock, the method that was called and the arguments that were passed.
26 * returns the method
28 * @return method
30 Method getMethod();
33 * returns arguments passed to the method
40 * calls real method
44 * @return whatever the real method returns / throws
45 * @throws Throwable in case real method throws
  /external/replicaisland/src/com/replica/replicaisland/
UIConstants.java 20 import java.lang.reflect.Method;
27 // If this method isn't null, we can use them.
29 public static Method mOverridePendingTransition;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
WithoutTestDefaultsRunner.java 5 import java.lang.reflect.Method;
12 @Override public void internalBeforeTest(Method method) {
  /external/testng/src/main/java/org/testng/
IAnnotationTransformer.java 6 import java.lang.reflect.Method;
11 * This method will be invoked by TestNG to give you a chance
25 * @param testMethod If the annotation was found on a method,
26 * this parameter represents this method (null otherwise).
29 Constructor testConstructor, Method testMethod);
  /external/testng/src/main/java/org/testng/internal/annotations/
DefaultAnnotationTransformer.java 7 import java.lang.reflect.Method;
15 Constructor testConstructor, Method testMethod)
  /external/testng/src/test/java/test/annotationtransformer/
MyTimeOutTransformer.java 7 import java.lang.reflect.Method;
13 Constructor testConstructor, Method testMethod)
ConfigurationTransformer.java 10 import java.lang.reflect.Method;
16 Constructor testConstructor, Method testMethod)
22 Constructor testConstructor, Method testMethod)
30 public void transform(IDataProviderAnnotation annotation, Method testMethod) {
34 public void transform(IFactoryAnnotation annotation, Method testMethod) {
DataProviderTransformer.java 10 import java.lang.reflect.Method;
16 Constructor testConstructor, Method testMethod)
21 public void transform(IDataProviderAnnotation annotation, Method testMethod) {
27 Constructor testConstructor, Method testMethod)
32 public void transform(IFactoryAnnotation annotation, Method testMethod) {
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
NullDispatcher.java 19 import java.lang.reflect.Method;
35 public Object dispatch(Method method, Object[] args) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
ConnectivityManagerCompatUtils.java 21 import java.lang.reflect.Method;
26 private static final Method METHOD_isActiveNetworkMetered = CompatUtils.getMethod(
InputMethodServiceCompatUtils.java 21 import java.lang.reflect.Method;
26 private static final Method METHOD_enableHardwareAcceleration =
LooperCompatUtils.java 21 import java.lang.reflect.Method;
32 private static final Method METHOD_quitSafely = CompatUtils.getMethod(
  /external/junit/src/org/junit/internal/runners/
TestClass.java 5 import java.lang.reflect.Method;
29 public List<Method> getTestMethods() {
33 List<Method> getBefores() {
37 List<Method> getAfters() {
41 public List<Method> getAnnotatedMethods(Class<? extends Annotation> annotationClass) {
42 List<Method> results= new ArrayList<Method>();
44 Method[] methods= eachClass.getDeclaredMethods();
45 for (Method eachMethod : methods) {
60 private boolean isShadowed(Method method, List<Method> results)
    [all...]
  /external/mockito/src/org/mockito/internal/util/
ObjectMethodsGuru.java 11 import java.lang.reflect.Method;
17 public boolean isToString(Method method) {
18 return isToString(new DelegatingMethod(method));
21 public boolean isToString(MockitoMethod method) {
22 return method.getReturnType() == String.class
23 && method.getParameterTypes().length == 0
24 && method.getName().equals("toString");
27 public boolean isEqualsMethod(Method method) {
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
StackMapFrameVisitor.java 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame);
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame);
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame);
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame);
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeVisitor.java 49 public void visitDeprecatedAttribute( Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute);
53 public void visitSyntheticAttribute( Clazz clazz, Method method, SyntheticAttribute syntheticAttribute);
57 public void visitSignatureAttribute( Clazz clazz, Method method, SignatureAttribute signatureAttribute);
65 public void visitMethodParametersAttribute( Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute);
66 public void visitExceptionsAttribute( Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
    [all...]

Completed in 502 milliseconds

1 23 4 5 6 7 8 91011>>