HomeSort by relevance Sort by last modified time
    Searched refs:getMethod (Results 101 - 125 of 439) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/easymock/src/org/easymock/internal/
Result.java 78 return invocation.getMethod().invoke(value,
84 + invocation.getMethod() + "]", e);
RecordState.java 78 return emptyReturnValueFor(invocation.getMethod().getReturnType());
251 Class<?> returnType = lastInvocation.getMethod().getReturnType();
288 Class<?> returnedType = lastInvocation.getMethod().getReturnType();
346 Class<?> returnType = lastInvocation.getMethod().getReturnType();
357 Class<?>[] exceptions = lastInvocation.getMethod().getExceptionTypes();
387 behavior.setMatcher(lastInvocation.getMethod(), matcher);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionAddTester.java 105 return Platform.getMethod(CollectionAddTester.class, "testAdd_nullSupported");
118 return Platform.getMethod(CollectionAddTester.class, "testAdd_nullUnsupported");
CollectionIteratorTester.java 124 return Platform.getMethod(
134 return Platform.getMethod(
159 return Platform.getMethod(
ListListIteratorTester.java 118 return Platform.getMethod(
128 return Platform.getMethod(
  /external/javassist/src/main/javassist/
CtArray.java 98 public CtMethod getMethod(String name, String desc)
101 return getSuperclass().getMethod(name, desc);
  /libcore/luni/src/main/java/java/util/zip/
ZipOutputStream.java 130 if (currentEntry.getMethod() == DEFLATED) {
135 if (currentEntry.getMethod() == STORED) {
146 if (currentEntry.getMethod() != STORED) {
155 int flags = currentEntry.getMethod() == STORED ? 0 : ZipFile.GPBF_DATA_DESCRIPTOR_FLAG;
164 writeShort(cDir, currentEntry.getMethod());
168 if (currentEntry.getMethod() == DEFLATED) {
265 int method = ze.getMethod();
413 if (currentEntry.getMethod() == STORED) {
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java 201 m1 = TestMethod.class.getMethod("invokeInstanceTest", new Class[0]);
202 m2 = TestMethodSub.class.getMethod("invokeInstanceTest",
210 m1 = TestMethod.class.getMethod("invokeStaticTest", new Class[0]);
212 .getMethod("invokeStaticTest", new Class[0]);
220 * java.lang.Class#getMethod(java.lang.String, java.lang.Class[])
223 // Check that getMethod treats null parameterTypes the same as an empty array.
224 Method m1 = TestMethod.class.getMethod("invokeInstanceTest", new Class[0]);
225 Method m2 = TestMethod.class.getMethod("invokeInstanceTest", (Class[]) null);
267 Method mth = TestMethod.class.getMethod("voidMethod", new Class[0]);
273 mth = TestMethod.class.getMethod("intMethod", new Class[0])
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.java 119 if (sipRequest.getMethod().equals(Request.INVITE)) {
149 if (sipRequest.getMethod().equals(Request.INVITE)) {
180 if (sipRequest.getMethod().equals(Request.INVITE)) {
392 if (sipRequest.getMethod().equals(Request.REFER) && dialog != null
415 && lastRequest.getMethod().equals(Request.INVITE)) {
421 String method = lastRequest.getMethod();
429 } else if (sipRequest.getMethod().equals(Request.UPDATE)) {
439 } else if (sipRequest.getMethod().equals(Request.ACK)) {
536 if (sipRequest.getMethod().equals(Request.INVITE)
559 } else if (sipRequest.getMethod().equals(Request.PRACK))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 248 if (getMethod().equals(Request.NOTIFY)) {
255 } else if (getMethod().equals(Request.PUBLISH)) {
276 if (requestLine.getMethod().equals(Request.INVITE)
277 || requestLine.getMethod().equals(Request.SUBSCRIBE)
278 || requestLine.getMethod().equals(Request.REFER)) {
302 && (this.getMethod().equals(Request.INVITE)
303 || this.getMethod().equals(Request.REFER) || this.getMethod().equals(
308 if (requestLine != null && requestLine.getMethod() != null
309 && getCSeq().getMethod() != nul
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
AbstractMultisetSetCountTester.java 340 getMethod("testSetCount_threeToThree_removeSupported"),
341 getMethod("testSetCount_threeToZero_supported"),
342 getMethod("testSetCount_threeToOne_supported"));
345 private static Method getMethod(String methodName) {
346 return Platform.getMethod(AbstractMultisetSetCountTester.class, methodName);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 199 Method method = clazz.getMethod("setDataSource", String.class);
204 return (Bitmap) clazz.getMethod("captureFrame").invoke(instance);
206 byte[] data = (byte[]) clazz.getMethod("getEmbeddedPicture").invoke(instance);
211 return (Bitmap) clazz.getMethod("getFrameAtTime").invoke(instance);
230 clazz.getMethod("release").invoke(instance);
HttpClientFactory.java 59 Method newInstance = clazz.getMethod("newInstance", String.class);
95 Method method = clazz.getMethod("close", (Class<?>[]) null);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitBaseTest.java 92 Method ruleName = lexer.getMethod("m"+testRuleName, new Class[0]);
105 Method ruleName2 = lexer.getMethod("getCharIndex", new Class[0]);
196 Method _setTreeAdaptor = parser.getMethod("setTreeAdaptor", parArgTypes);
201 Method ruleName = parser.getMethod(testRuleName);
224 Method returnName = _return.getMethod("getTree");
229 Method returnName = _return.getMethod("getTemplate");
342 Method _setTreeAdaptor = parser.getMethod("setTreeAdaptor", parArgTypes);
348 Method ruleName = parser.getMethod(testRuleName);
363 Method returnName = _return.getMethod("getTree");
383 Method treeRuleName = treeParser.getMethod(testTreeRuleName)
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
FibonacciMaker.java 39 MethodId<?, Integer> fib = fibonacci.getMethod(TypeId.INT, "fib", TypeId.INT);
68 Method fibMethod = fibonacciClass.getMethod("fib", int.class);
74 Method method = environmentClass.getMethod("getDataDirectory");
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 75 public abstract String getMethod();
86 String method = getMethod();
HttpOptions.java 84 public String getMethod() {
  /external/jmdns/src/javax/jmdns/impl/
NetworkTopologyDiscoveryImpl.java 37 isUp = NetworkInterface.class.getMethod("isUp", (Class<?>[]) null);
45 supportsMulticast = NetworkInterface.class.getMethod("supportsMulticast", (Class<?>[]) null);
  /external/mockito/src/org/mockito/internal/invocation/
InvocationImpl.java 57 public Method getMethod() {
105 if (this.getMethod().getDeclaringClass().isInterface()) {
  /frameworks/support/v7/mediarouter/jellybean-mr1/android/support/v7/media/
MediaRouterJellybeanMr1.java 75 mScanWifiDisplaysMethod = DisplayManager.class.getMethod("scanWifiDisplays");
139 android.media.MediaRouter.RouteInfo.class.getMethod("getStatusCode");
  /libcore/dom/src/test/java/org/w3c/domts/
BatikTestDocumentBuilderFactory.java 94 domFactoryClass.getMethod(
159 svgDomImplClass.getMethod(
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 41 public static Method getMethod(final Class<?> targetClass, final String name,
45 return targetClass.getMethod(name, parameterTypes);
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 51 (byte[]) fillArrayData.getMethod("newByteArray").invoke(null)));
54 (char[]) fillArrayData.getMethod("newCharArray").invoke(null)));
57 (long[]) fillArrayData.getMethod("newLongArray").invoke(null)));
105 Method method = annotated.getMethod("method", String.class, String.class);
  /external/apache-http/src/org/apache/http/impl/
DefaultHttpRequestFactory.java 87 String method = requestline.getMethod();
  /external/apache-http/src/org/apache/http/message/
BasicHttpRequest.java 77 this.method = requestline.getMethod();

Completed in 1677 milliseconds

1 2 3 45 6 7 8 91011>>