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

1 2 3 4 56 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/header/
CSeq.java 93 && this.getMethod().equals( o.getMethod() );
123 public String getMethod() {
  /external/testng/src/main/java/org/testng/reporters/
TextReporter.java 40 result[i++] = tr.getMethod();
61 Utils.detailedMethodName(tr.getMethod(), false),
62 tr.getMethod().getDescription(),
65 tr.getMethod().getMethod().getParameterTypes()
72 Utils.detailedMethodName(tr.getMethod(), false),
73 tr.getMethod().getDescription(),
76 tr.getMethod().getMethod().getParameterTypes()
125 logResult(status, tr.getName(), tr.getMethod().getDescription(), stackTrace
    [all...]
  /external/volley/src/test/java/com/android/volley/toolbox/
NetworkImageViewTest.java 81 assertNotNull(NetworkImageView.class.getMethod("setImageUrl", String.class, ImageLoader.class));
82 assertNotNull(NetworkImageView.class.getMethod("setDefaultImageResId", int.class));
83 assertNotNull(NetworkImageView.class.getMethod("setErrorImageResId", int.class));
  /libcore/luni/src/test/java/libcore/java/math/
RunCSVTestsStrict.java 27 Method m = mathClass.getMethod(func, new Class[] { Double.TYPE });
49 m = mathClass.getMethod(func, new Class[] { Double.TYPE, Integer.TYPE });
52 m = mathClass.getMethod(func, new Class[] { Double.TYPE, Double.TYPE });
  /external/guava/guava-tests/test/com/google/common/eventbus/
EventSubscriberTest.java 88 Method charAt = String.class.getMethod("charAt", int.class);
89 Method concat = String.class.getMethod("concat", String.class);
110 method = getClass().getMethod("recordingMethod", Object.class);
133 method = getClass().getMethod("exceptionThrowingMethod", Object.class);
156 method = getClass().getMethod("errorThrowingMethod", Object.class);
  /external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
ReturnsArgumentAt.java 57 if (wantedArgIndexIsVarargAndSameTypeAsReturnType(invocation.getMethod(), argumentPosition)) {
113 if (!invocation.getMethod().isVarArgs()) {
121 Class<?>[] parameterTypes = invocation.getMethod().getParameterTypes();
124 if (!invocation.getMethod().isVarArgs()) {
143 if (wantedArgIndexIsVarargAndSameTypeAsReturnType(invocation.getMethod(), argumentIndex)) {
  /external/mockito/src/test/java/org/mockitousage/spies/
SpyingOnInterfacesTest.java 79 when(type.getMethod("foo").invoke(object)).thenCallRealMethod();
81 Assertions.assertThat(type.getMethod("foo").invoke(object)).isEqualTo((Object) "bar");
82 type.getMethod("foo").invoke(verify(object));
106 Assertions.assertThat(impl.getMethod("foo").invoke(object)).isEqualTo((Object) "bar");
108 impl.getMethod("foo").invoke(verify(object));
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
OptionalMethod.java 55 return getMethod(target.getClass()) != null;
67 Method m = getMethod(target.getClass());
107 Method m = getMethod(target.getClass());
148 private Method getMethod(Class<?> clazz) {
166 method = clazz.getMethod(methodName, parameterTypes);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
XMLReaderAdapterTest.java 140 assertEquals("startDocument", logger.getMethod());
167 assertEquals("parse", logger.getMethod(0));
182 assertEquals("parse", logger.getMethod());
191 assertEquals("setDocumentLocator", logger.getMethod());
207 assertEquals("startDocument", logger.getMethod());
219 assertEquals("endDocument", logger.getMethod());
245 assertEquals("startElement", logger.getMethod());
259 assertEquals("endElement", logger.getMethod());
273 assertEquals("characters", logger.getMethod());
287 assertEquals("ignorableWhitespace", logger.getMethod());
    [all...]
XMLFilterImplTest.java 195 assertEquals("parse", logger.getMethod());
221 assertEquals("parse", logger.getMethod());
279 assertEquals("notationDecl", logger.getMethod());
292 assertEquals("unparsedEntityDecl", logger.getMethod());
303 assertEquals("setDocumentLocator", logger.getMethod());
309 assertEquals("setDocumentLocator", logger.getMethod());
321 assertEquals("startDocument", logger.getMethod());
333 assertEquals("endDocument", logger.getMethod());
345 assertEquals("startPrefixMapping", logger.getMethod());
358 assertEquals("endPrefixMapping", logger.getMethod());
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SmallStructsTest.java 118 return ScriptC_small_structs.class.getMethod(name, getUnwrappedClassForType(type));
157 Allocation alloc = (Allocation) scriptFieldClass.getMethod("getAllocation")
161 Method set_bytes = scriptFieldClass.getMethod("set_bytes",
174 Method modify = ScriptC_small_structs.class.getMethod(
178 Method verify = ScriptC_small_structs.class.getMethod(
217 Allocation alloc = (Allocation) scriptFieldClass.getMethod("getAllocation")
224 Method fieldASetter = scriptFieldClass.getMethod("set_a",
230 Method fieldBSetter = scriptFieldClass.getMethod("set_b",
236 Method modify = ScriptC_small_structs.class.getMethod(
240 Method verify = ScriptC_small_structs.class.getMethod(
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/invocation/
InvocationMatcher.java 58 public Method getMethod() {
59 return invocation.getMethod();
89 String wantedMethodName = getMethod().getName();
90 String candidateMethodName = candidate.getMethod().getName();
112 Method m1 = invocation.getMethod();
113 Method m2 = candidate.getMethod();
  /external/droiddriver/src/io/appium/droiddriver/instrumentation/
RootFinder.java 46 Method getMethod = clazz.getMethod(instanceMethod);
47 windowManagerObj = getMethod.invoke(null);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
BiMapInverseTester.java 76 return Collections.singletonList(getMethod("testInverseSerialization"));
80 private static Method getMethod(String methodName) {
81 return Helpers.getMethod(BiMapInverseTester.class, methodName);
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConfigurationException.java 144 Method m = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
156 Method m1 = this.getClass().getMethod("getCause", new Class[] {});
162 Method m2 = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
  /art/test/032-concrete-sub/src/
ConcreteSub.java 46 meth = absClass.getMethod("redefineMe");
  /art/test/157-void-class/src-art/
Main.java 32 Runnable.class.getMethod("run", EmptyArray.CLASS).getReturnType();
  /art/test/1912-get-set-local-primitive/src/art/
Test1912.java 218 public static Method getMethod(String name) throws Exception {
225 new TestCase(getMethod("IntMethod")),
226 new TestCase(getMethod("LongMethod")),
227 new TestCase(getMethod("FloatMethod")),
228 new TestCase(getMethod("DoubleMethod")),
249 new TestCase(getMethod("BooleanMethod")).exec(
251 new TestCase(getMethod("ByteMethod")).exec(
254 new TestCase(getMethod("CharMethod")).exec(
256 new TestCase(getMethod("ShortMethod")).exec(
  /art/test/530-checker-regression-reftyp-final/src/
Main.java 56 Method m = c.getMethod("testInliner");
  /art/test/543-env-long-ref/src/
Main.java 26 Method m = c.getMethod("testCase");
  /art/test/550-checker-regression-wide-store/src/
Main.java 26 Method m = c.getMethod(name, long.class);
  /art/test/552-checker-primitive-typeprop/src/
Main.java 32 Method m = c.getMethod("environmentPhi", boolean.class, int[].class);
  /art/test/574-irreducible-and-constant-area/src/
Main.java 25 Method m = c.getMethod("simpleLoop", int.class);
  /art/test/593-checker-shift-and-simplifier/src/
Main.java 60 Method m = c.getMethod(name);
  /art/test/802-deoptimization/src/
Main.java 33 Method m = c.getMethod("catchHandlerOnEntry", int.class);

Completed in 1064 milliseconds

1 2 3 4 56 7 8 91011>>