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

12 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/util/
ExceptionUtils.java 33 import java.lang.reflect.Method;
50 /** A reference to Throwable's initCause method, or null if it's not there in this JVM */
51 static private final Method INIT_CAUSE_METHOD = getInitCauseMethod();
54 * Returns a <code>Method<code> allowing access to
55 * {@link Throwable#initCause(Throwable) initCause} method of {@link Throwable},
56 * or <code>null</code> if the method
59 * @return A <code>Method<code> for <code>Throwable.initCause</code>, or
62 static private Method getInitCauseMethod() {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
RobolectricTestRunnerInterface.java 6 import java.lang.reflect.Method;
11 void internalBeforeTest(Method method);
13 void internalAfterTest(Method method);
  /dalvik/dx/src/com/android/dx/cf/iface/
MethodList.java 41 * Get the {@code n}th method.
43 * @param n {@code n >= 0, n < size();} which method
44 * @return {@code non-null;} the method in question
46 public Method get(int n);
  /external/guava/guava/src/com/google/common/eventbus/
SubscriberExceptionContext.java 20 import java.lang.reflect.Method;
31 private final Method subscriberMethod;
38 * @param subscriberMethod the subscribed method.
41 Method subscriberMethod) {
71 * @return The subscribed method that threw the exception.
73 public Method getSubscriberMethod() {
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
OpenJdk6QueueTests.java 23 import java.lang.reflect.Method;
40 private static final List<Method> PQ_SUPPRESS = Arrays.asList(
43 @Override protected Collection<Method> suppressForPriorityBlockingQueue() {
47 @Override protected Collection<Method> suppressForPriorityQueue() {
  /external/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 7 import java.lang.reflect.Method;
13 private final Method method; field in class:DelegatingMethod
15 public DelegatingMethod(Method method) {
16 assert method != null : "Method cannot be null";
17 this.method = method;
21 return method.getExceptionTypes();
    [all...]
  /external/testng/src/main/java/org/testng/
IAnnotationTransformer2.java 8 import java.lang.reflect.Method;
27 * @param testMethod If the annotation was found on a method,
28 * this parameter represents this method (null otherwise).
31 Constructor testConstructor, Method testMethod);
36 * @param method The method annotated with the IDataProvider annotation.
38 public void transform(IDataProviderAnnotation annotation, Method method);
43 * @param method The method annotated with the IFactory annotation
    [all...]
  /external/testng/src/main/java/org/testng/internal/annotations/
BaseAnnotation.java 4 import java.lang.reflect.Method;
8 private Method m_method;
17 public Method getMethod() {
20 public void setMethod(Method method) {
21 m_method = method;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
AuthMatch.java 5 * None means that there is a distinct mismatch, i.e. realm, method or parameter is defined
15 public static final int Method = 0x02;
17 public static final int MethodParam = Method | Param;
18 public static final int Exact = Realm | Method | Param;
32 if ((match & Method) != 0) {
33 sb.append("Method");
  /libcore/ojluni/src/main/java/java/lang/reflect/
InvocationHandler.java 33 * When a method is invoked on a proxy instance, the method
35 * method of its invocation handler.
44 * Processes a method invocation on a proxy instance and returns
45 * the result. This method will be invoked on an invocation handler
46 * when a method is invoked on a proxy instance that it is
49 * @param proxy the proxy instance that the method was invoked on
51 * @param method the {@code Method} instance corresponding to
52 * the interface method invoked on the proxy instance. The declarin
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
GenericMethodsTests.java 20 import java.lang.reflect.Method;
52 * Tests whether the specified method declares a type parameter T.
53 * @param method the method
55 private void checkTypeParameter(Method method) {
56 TypeVariable<Method> typeParameter = getTypeParameter(method);
58 assertEquals(method, typeParameter.getGenericDeclaration());
62 * Tests whether the specified method declares a parameter with th
87 Method method = clazz.getMethod("noParamNoReturn"); local
92 Method method = clazz.getMethod("paramNoReturn", Object.class); local
98 Method method = clazz.getMethod("noParamReturn"); local
104 Method method = clazz.getMethod("paramReturn", Object.class); local
    [all...]
  /art/test/431-type-propagation/src/
Main.java 17 import java.lang.reflect.Method;
23 Method m = c.getMethod("method", int[].class);
  /art/test/448-multiple-returns/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("caller");
  /art/test/452-multiple-returns2/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("caller");
  /art/test/453-not-byte/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("notByte", byte.class);
  /art/test/459-dead-phi/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("equivalentPhi", float[].class);
  /art/test/460-multiple-returns3/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("caller");
  /art/test/471-uninitialized-locals/src/
Main.java 17 import java.lang.reflect.Method;
27 Method m = c.getMethod("ThrowException", (Class[]) null);
  /art/test/475-regression-inliner-ids/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("testCase", int.class);
  /art/test/498-type-propagation/src/
Main.java 17 import java.lang.reflect.Method;
24 Method m = c.getMethod("method", int[].class);
  /art/test/509-pre-header/src/
Main.java 17 import java.lang.reflect.Method;
24 Method m = c.getMethod("method");
  /art/test/515-dce-dominator/src/
Main.java 17 import java.lang.reflect.Method;
24 Method m = c.getMethod("method", int.class);
  /art/test/516-dead-move-result/src/
Main.java 17 import java.lang.reflect.Method;
25 Method m = c.getMethod("method");
  /art/test/520-equivalent-phi/src/
Main.java 17 import java.lang.reflect.Method;
25 Method m = c.getMethod("method", int[].class);
  /art/test/559-checker-irreducible-loop/src/
Main.java 17 import java.lang.reflect.Method;
26 Method m = c.getMethod("simpleLoop", int.class);
32 Method m = c.getMethod("lse", int.class, Main.class);
38 Method m = c.getMethod("dce", int.class);
44 Method m = c.getMethod("liveness", int.class);
50 Method m = c.getMethod("gvn");
56 Method m = c.getMethod("licm1", int.class);
62 Method m = c.getMethod("licm2", int.class);

Completed in 687 milliseconds

12 3 4 5 6 7 8 91011>>