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

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/message/
Request.java 23 String getMethod();
  /frameworks/base/core/java/com/android/internal/util/
WithFramework.java 45 Method mainMethod = mainClass.getMethod("main", String[].class);
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 33 sApplyMethod = cls.getMethod("apply");
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
BoundedGenericMethodsTests.java 108 Method method = clazz.getMethod("noParamNoReturn");
112 Method method = clazz.getMethod("paramNoReturn", BoundedGenericMethods.class);
117 Method method = clazz.getMethod("noParamReturn");
123 Method method = clazz.getMethod("paramReturn", BoundedGenericMethods.class);
  /packages/apps/Music/src/com/android/music/
SharedPreferencesCompat.java 34 return cls.getMethod("apply");
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodManagerCompatWrapper.java 28 private static final Method METHOD_switchToNextInputMethod = CompatUtils.getMethod(
TextViewCompatUtils.java 28 CompatUtils.getMethod(TextView.class, "setCompoundDrawablesRelativeWithIntrinsicBounds",
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 55 private static MethodId<Callable, Object> CALL = CALLABLE.getMethod(TypeId.OBJECT, "call");
79 MethodId<?, Constructable> methodId = GENERATED.getMethod(
90 Constructable constructed = (Constructable) getMethod().invoke(null, 5L, false);
109 MethodId<?, Void> methodId = GENERATED.getMethod(TypeId.VOID, "call");
117 Method method = generatedClass.getMethod("call");
128 MethodId<?, Integer> methodId = GENERATED.getMethod(TypeId.INT, "call", TypeId.INT);
133 = TEST_TYPE.getMethod(TypeId.INT, "staticMethod", TypeId.INT);
137 assertEquals(10, getMethod().invoke(null, 4));
146 MethodId<?, Void> methodId = GENERATED.getMethod(TypeId.VOID, "call", TypeId.INT);
157 Method method = generatedClass.getMethod("call", int.class)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 561 String method = messageToTest.getCSeq().getMethod();
596 transactionMatches = this.getMethod().equals(Request.CANCEL)
636 if (messageToTest.getCSeq().getMethod().equalsIgnoreCase(Request.CANCEL)
637 && !getOriginalRequest().getCSeq().getMethod().equalsIgnoreCase(
648 && ((!messageToTest.getCSeq().getMethod().equals(Request.CANCEL)) || getOriginalRequest()
649 .getMethod().equals(messageToTest.getCSeq().getMethod()))
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 202 assertEquals("parse", logger.getMethod());
217 assertEquals("parse", logger.getMethod());
227 assertEquals("setDocumentLocator", logger.getMethod());
233 assertEquals("setDocumentLocator", logger.getMethod());
245 assertEquals("startDocument", logger.getMethod());
257 assertEquals("endDocument", logger.getMethod());
272 assertEquals("startElement", logger.getMethod());
291 assertEquals("endElement", logger.getMethod());
305 assertEquals("characters", logger.getMethod());
319 assertEquals("ignorableWhitespace", logger.getMethod());
    [all...]
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MediaButtonHelper.java 26 sMethodRegisterMediaButtonEventReceiver = AudioManager.class.getMethod(
29 sMethodUnregisterMediaButtonEventReceiver = AudioManager.class.getMethod(
RemoteControlHelper.java 42 sRegisterRemoteControlClientMethod = AudioManager.class.getMethod(
44 sUnregisterRemoteControlClientMethod = AudioManager.class.getMethod(
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SetHashCodeTester.java 70 Platform.getMethod(SetHashCodeTester.class, "testHashCode"),
71 Platform.getMethod(SetHashCodeTester.class, "testHashCode_containingNull") };
  /external/mockito/src/org/mockito/internal/stubbing/answers/
MethodInfo.java 20 this.method = theInvocation.getMethod();
59 public Method getMethod() {
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsSmartNulls.java 47 Class<?> type = invocation.getMethod().getReturnType();
65 if (new ObjectMethodsGuru().isToString(currentInvocation.getMethod())) {
ReturnsEmptyValues.java 64 if (methodsGuru.isToString(invocation.getMethod())) {
72 } else if (methodsGuru.isCompareToMethod(invocation.getMethod())) {
79 Class<?> returnType = invocation.getMethod().getReturnType();
  /external/smack/src/org/jivesoftware/smack/compression/
JzlibInputOutputStream.java 60 Method method = ziClass.getMethod("setFlushMode", Integer.TYPE);
71 Method method = zoClass.getMethod("setFlushMode", Integer.TYPE);
  /frameworks/support/v4/ics/android/support/v4/text/
ICUCompatIcs.java 35 sGetScriptMethod = clazz.getMethod("getScript",
37 sAddLikelySubtagsMethod = clazz.getMethod("addLikelySubtags",
  /libcore/dom/src/test/java/org/w3c/domts/
LSDocumentBuilderFactory.java 136 Method domConfigMethod = parser.getClass().getMethod("getDomConfig",
139 Method setParameterMethod = domConfig.getClass().getMethod(
154 Method domConfigMethod = parser.getClass().getMethod("getDomConfig",
157 Method getParameterMethod = domConfig.getClass().getMethod("getParameter",
275 Method newInstanceMethod = domImplRegistryClass.getMethod("newInstance", (Class<?>) null);
277 Method getDOMImplementationMethod = domImplRegistryClass.getMethod(
281 Method createLSParserMethod = impl.getClass().getMethod("createLSParser",
285 parseURIMethod = parser.getClass().getMethod("parseURI",
DOM4JTestDocumentBuilderFactory.java 71 Method getInstance = domFactoryClass.getMethod("getInstance", new Class[] {});
79 Method getReaderMethod = saxReaderClass.getMethod("getXMLReader",
83 readMethod = saxReaderClass.getMethod("read", new Class[] {java.net.URL.class});
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
MethodTest.java 144 m1 = TestMethod.class.getMethod("invokeInstanceTest", new Class[0]);
145 m2 = TestMethodSub.class.getMethod("invokeInstanceTest",
150 m1 = TestMethod.class.getMethod("invokeStaticTest", new Class[0]);
152 .getMethod("invokeStaticTest", new Class[0]);
179 Method mth = TestMethod.class.getMethod("voidMethod", new Class[0]);
185 mth = TestMethod.class.getMethod("intMethod", new Class[0]);
201 mth = cl.getMethod("pustatic", new Class[0]);
236 mth = TestMethod.class.getMethod("voidMethod", new Class[0]);
255 mth = cl.getMethod("voidMethod", new Class[0]);
259 mth = cl.getMethod("parmTest", plist)
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
GenericExceptionsTest.java 31 Method method = Thrower.class.getMethod("parameterizedMethod");
37 Method method = Thrower.class.getMethod("genericParameters", List.class);
63 Method method = ThrowerT.class.getMethod("throwsTypeVariable");
71 Method method = ThrowerT.class.getMethod("throwsMethodTypeParameter");
79 Method method = ThrowerT.class.getMethod("throwsEverything");
  /external/android-mock/tests/com/google/android/testing/mocking/
AndroidMockGeneratorTest.java 205 Method method = Object.class.getMethod("equals", Object.class);
227 Method method = Object.class.getMethod("toString");
234 Method method = Thread.class.getMethod("run");
239 Method method = Object.class.getMethod("notify");
249 Method method = Thread.class.getMethod("currentThread");
271 Method method = Object.class.getMethod("equals", Object.class);
285 Method method = AllTypes.class.getMethod(returnTypes[i] + "Foo");
291 Method method = AllTypes.class.getMethod("objectFoo");
295 method = AllTypes.class.getMethod("voidFoo");
373 String.class.getMethod("getChars", Integer.TYPE, Integer.TYPE, char[].class, Integer.TYPE)
    [all...]
  /frameworks/base/core/java/android/util/
ReflectiveProperty.java 53 mGetter = propertyHolder.getMethod(getterName, (Class<?>[])null);
58 mGetter = propertyHolder.getMethod(getterName, (Class<?>[])null);
84 mSetter = propertyHolder.getMethod(setterName, getterType);
  /external/apache-http/src/org/apache/http/client/utils/
CloneUtils.java 48 m = clazz.getMethod("clone", (Class[]) null);

Completed in 1638 milliseconds

1 23 4 5 6 7 8 91011>>