HomeSort by relevance Sort by last modified time
    Searched refs:getMethod (Results 376 - 400 of 1665) sorted by null

<<11121314151617181920>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
UserManagerCompatUtils.java 41 METHOD_isUserUnlocked = CompatUtils.getMethod(UserManager.class, "isUserUnlocked");
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
ShadowWrangler.java 99 return invocationPlan.getMethod().invoke(invocationPlan.getShadow(), params);
308 public Method getMethod() {
323 Method m = (annos[i]).getClass().getMethod("i18nSafe");
350 method = getMethod(shadow.getClass(), methodName, paramClasses);
353 method = getMethod(findShadowClass(clazz, classLoader), methodName, paramClasses);
402 private Method getMethod(Class<?> clazz, String methodName, Class<?>[] paramClasses) {
405 method = clazz.getMethod(methodName, paramClasses);
  /art/test/432-optimizing-cmp/src/
Main.java 161 Method m = c.getMethod("$opt$CmpLong", long.class, long.class);
168 Method m = c.getMethod("$opt$CmpGtFloat", float.class, float.class);
175 Method m = c.getMethod("$opt$CmpLtFloat", float.class, float.class);
182 Method m = c.getMethod("$opt$CmpGtDouble", double.class, double.class);
189 Method m = c.getMethod("$opt$CmpLtDouble", double.class, double.class);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
AbstractMultisetSetCountTester.java 401 getMethod("testSetCount_threeToThree_removeSupported"),
402 getMethod("testSetCount_threeToZero_supported"),
403 getMethod("testSetCount_threeToOne_supported"));
407 private static Method getMethod(String methodName) {
408 return Helpers.getMethod(AbstractMultisetSetCountTester.class, methodName);
  /external/junit-params/src/main/java/junitparams/internal/
InvokeParameterisedMethod.java 71 if (testMethod.getMethod().getParameterTypes()[0].isArray()) {
77 resultParam = testMethod.getMethod().getParameterTypes()[0].getConstructor(typesOfParameters).newInstance(paramset);
80 throw new IllegalStateException("While trying to create object of class " + testMethod.getMethod().getParameterTypes()[0]
95 Class<?>[] expectedParameterTypes = testMethod.getMethod().getParameterTypes();
101 Annotation[][] parameterAnnotations = testMethod.getMethod().getParameterAnnotations();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
FakeHttpLayer.java 111 httpRequest.getRequestLine().getMethod() + " " + httpRequest.getRequestLine().getUri());
244 return request.getRequestLine().getMethod().equals(method) &&
321 if (method != null && !method.equals(request.getRequestLine().getMethod())) {
384 String getMethod() {
400 return request.getRequestLine().getMethod().equals(method) &&
  /external/testng/src/main/java/org/testng/reporters/
TestHTMLReporter.java 82 ITestNGMethod method = tr.getMethod();
330 String c1 = o1.getMethod().getMethodName();
331 String c2 = o2.getMethod().getMethodName();
341 ITestNGMethod tm1= o1.getMethod();
342 ITestNGMethod tm2= o2.getMethod();
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 622 this.method = sipResponse.getCSeq().getMethod();
    [all...]
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
ProxyBuilder.java 437 MethodId<InvocationHandler, Object> methodInvoke = handlerType.getMethod(TypeId.OBJECT,
492 MethodId<T, ?> superMethod = superclassType.getMethod(resultType, name, argTypes);
493 MethodId<?, ?> methodId = generatedType.getMethod(resultType, name, argTypes);
564 MethodId<G, ?> callsSuperMethod = generatedType.getMethod(
601 .getMethod(superMethodName(method), method.getParameterTypes())
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 43 CtMethod method = ClassPool.getDefault().getMethod(
47 method = ClassPool.getDefault().getMethod(
51 method = ClassPool.getDefault().getMethod(
57 CtMethod method = ClassPool.getDefault().getMethod(
61 method = ClassPool.getDefault().getMethod(
67 CtMethod method = ClassPool.getDefault().getMethod(
267 //System.out.println(clazz.toClass().getMethod("foo", new Class[0]).invoke(null, new Object[0]));
  /art/test/046-reflect/src/
Main.java 87 meth = target.getMethod("publicMethod");
91 meth = target.getMethod("packageMethod");
100 meth = target.getMethod("innerMethod");
130 meth = target.getMethod("myMethod", int.class);
136 meth = target.getMethod("myMethod", float.class);
139 meth = target.getMethod("myNoargMethod");
142 meth = target.getMethod("myMethod", String[].class, float.class, char.class);
159 meth = target.getMethod("myNoargMethod");
163 meth = target.getMethod("throwingMethod");
489 Method method = niuClass.getMethod("staticMethod")
    [all...]
  /art/test/656-checker-simd-opt/src/
Main.java 72 Method m = c.getMethod("stencilAddInt",
85 Method m = c.getMethod("stencilSubInt",
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 117 ApiMethod apiMethod = getMethod(name, parameterTypes, returnType);
160 private ApiMethod getMethod(String name, List<String> parameterTypes, String returnType) {
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
GASMifierMethodVisitor.class 
  /external/annotation-tools/asmx/test/perf/org/objectweb/asm/
BCELPerfTest.java 94 cg.replaceMethod(ms[j], mg.getMethod());
136 cg.replaceMethod(ms[j], mg.getMethod());
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/examples/
FibonacciMaker.java 40 MethodId<?, Integer> fib = fibonacci.getMethod(TypeId.INT, "fib", TypeId.INT);
69 Method fibMethod = fibonacciClass.getMethod("fib", int.class);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapEntrySetTester.java 104 return Helpers.getMethod(MapEntrySetTester.class, "testContainsEntryWithIncomparableKey");
109 return Helpers.getMethod(MapEntrySetTester.class, "testContainsEntryWithIncomparableValue");
  /external/guice/extensions/persist/lib/
aopalliance.jar 
  /external/guice/lib/
aopalliance.jar 
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
NamePrepTransform.java 192 Method createMethod = cls.getMethod("createFromRules", String.class, String.class, Integer.TYPE);
194 translitMethod = cls.getMethod("transliterate", String.class);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
NamePrepTransform.java 189 Method createMethod = cls.getMethod("createFromRules", String.class, String.class, Integer.TYPE);
191 translitMethod = cls.getMethod("transliterate", String.class);
  /external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
CurrencyNameTest.java 34 mGetDisplayName = Currency.class.getMethod("getDisplayName", new Class[] {Locale.class});
35 Method mGetAvailableCurrencies = Currency.class.getMethod("getAvailableCurrencies", (Class[]) null);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
ValidationTestBase.java 84 targetClass.getMethod("main", String[].class).invoke(null,
140 loader).getMethod("getLogEvents");
  /external/javassist/src/main/javassist/expr/
MethodCall.java 113 public CtMethod getMethod() throws NotFoundException {
114 return getCtClass().getMethod(getMethodName(), getSignature());
  /external/junit-params/src/test/java/junitparams/internal/
TestMethodTest.java 24 plainTestMethod = new TestMethod(new FrameworkMethod(TestMethodTest.class.getMethod("forOthersToWork", new Class[]{String.class})),
26 arrayTestMethod = new TestMethod(new FrameworkMethod(TestMethodTest.class.getMethod("forOthersToWorkWithArray",

Completed in 806 milliseconds

<<11121314151617181920>>