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

1 2 3 45 6 7 8 91011>>

  /libcore/junit/src/main/java/junit/framework/
TestCase.java 141 // use getMethod to get all public inherited
145 runMethod= getClass().getMethod(fName, (Class[]) null);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ProxyTest.java 54 assertEquals("foo", proxy.getClass().getMethod("echo", String.class).invoke(proxy, "foo"));
AnnotationsTest.java 53 Method method = Type.class.getMethod("method", String.class, String.class);
58 Method method = Type.class.getMethod("method", String.class, String.class);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 236 Method method = clazz.getMethod("setDataSource", String.class);
241 return (Bitmap) clazz.getMethod("captureFrame").invoke(instance);
243 byte[] data = (byte[]) clazz.getMethod("getEmbeddedPicture").invoke(instance);
248 return (Bitmap) clazz.getMethod("getFrameAtTime").invoke(instance);
267 clazz.getMethod("release").invoke(instance);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 622 this.method = sipResponse.getCSeq().getMethod();
    [all...]
  /dalvik/tests/046-reflect/src/
Main.java 65 meth = target.getMethod("myMethod", new Class[] { int.class });
71 meth = target.getMethod("myMethod", new Class[] { float.class });
74 meth = target.getMethod("myNoargMethod", (Class[]) null);
77 meth = target.getMethod("myMethod",
95 meth = target.getMethod("myNoargMethod", (Class[]) null);
99 meth = target.getMethod("throwingMethod", (Class[]) null);
  /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]));
  /frameworks/base/tests/CoreTests/android/core/
MiscRegressionTest.java 96 Method m1 = Object.class.getMethod("notify", new Class[] { });
97 Method m2 = Object.class.getMethod("toString", new Class[] { });
98 Method m3 = Object.class.getMethod("wait", new Class[] { long.class, int.class });
99 Method m4 = Object.class.getMethod("equals", new Class[] { Object.class });
100 Method m5 = String.class.getMethod("valueOf", new Class[] { char[].class });
101 Method m6 = Runtime.class.getMethod("exec", new Class[] { String[].class });
  /external/javassist/src/main/javassist/expr/
MethodCall.java 113 public CtMethod getMethod() throws NotFoundException {
114 return getCtClass().getMethod(getMethodName(), getSignature());
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 54 super(request.getMethod(), new URL(request.getURI().toString()));
97 StringBuilder request = new StringBuilder(httpRequest.getMethod());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 69 public static Method getMethod(Class<?> targetClass, String name,
73 return targetClass.getMethod(name, parameterTypes);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 66 public ApiMethod getMethod(String name, List<String> parameterTypes, String returnType) {
DexDepsXmlHandler.java 87 ApiMethod apiMethod = apiClass.getMethod(mCurrentMethodName,
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MethodAnnotationStruct.java 110 public CstMethodRef getMethod() {
  /dalvik/dx/src/com/android/dx/dex/file/
MethodAnnotationStruct.java 110 public CstMethodRef getMethod() {
  /dalvik/tests/086-null-super/src/
Main.java 84 getMethod("loadClass",
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ModifierTest.java 410 .getMethod("publicAbstractMethod", new Class[0]).getModifiers());
412 .getMethod("publicStaticMethod", new Class[0]).getModifiers());
415 .getMethod("publicFinalMethod", new Class[0]).getModifiers());
418 MethodClass.class.getMethod("publicStaticFinalMethod",
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 180 if (sipRequest.getMethod().equals(Request.ACK)
262 if (eventWrapper.transaction.getOriginalRequest().getMethod()
327 if (sipResponse.getCSeq().getMethod()
353 && !ct.getOriginalRequest().getMethod().equals(
SipProviderImpl.java 285 if ( sipRequest.getMethod().equals(Request.ACK)) {
318 if (request.getMethod().equalsIgnoreCase(Request.CANCEL)) {
406 if (sipStack.isDialogCreated(request.getMethod())) {
465 if ( request.getMethod().equals(Request.ACK)) {
473 if (sipRequest.getMethod().equals(Request.NOTIFY)
490 if (sipStack.isDialogCreated(sipRequest.getMethod())) {
520 if (sipRequest.getMethod().equals(Request.INVITE) && this.isDialogErrorsAutomaticallyHandled()) {
672 && request.getMethod().equals(Request.ACK)) {
730 "done sending " + request.getMethod() + " to hop "
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.h 53 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDocumentBuilderFactory.java 54 tidyClass.getMethod("parseDOM",
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ForegroundService.java 121 mStartForeground = getClass().getMethod("startForeground",
123 mStopForeground = getClass().getMethod("stopForeground",
131 mSetForeground = getClass().getMethod("setForeground",
  /external/clang/lib/AST/
DeclObjC.cpp 63 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance) const {
290 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
304 if ((MethodDecl = CatDecl->getMethod(Sel, isInstance)))
421 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
425 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
430 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
435 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
440 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(),
452 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(),
459 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector()
    [all...]
  /cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java 99 DexMethod method = getMethod(clazz, "publicStringMethodInt", "I");
101 method = getMethod(clazz, "protectedStringMethodInt", "I");/** a.b.C */
103 method = getMethod(clazz, "defaultStringMethodInt", "I");
105 method = getMethod(clazz, "privateStringMethodInt", "I");
330 DexMethod method = getMethod(A, "m", "I");
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipEntryTest.java 141 * @tests java.util.zip.ZipEntry#getMethod()
144 // Test for method int java.util.zip.ZipEntry.getMethod()
147 java.util.zip.ZipEntry.STORED, zentry.getMethod());
150 java.util.zip.ZipEntry.DEFLATED, zentry.getMethod());
152 assertEquals("Incorrect Method Returned.", -1, zentry.getMethod());
315 ZipEntry.STORED, zentry.getMethod());
318 ZipEntry.DEFLATED, zentry.getMethod());

Completed in 492 milliseconds

1 2 3 45 6 7 8 91011>>