Searched defs:getMethod (Results 51 - 75 of 104) sorted by relevance

12345

/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DAndroidTranslator.java249 CtMethod equalsMethod = ctClass.getMethod("equals", "(Ljava/lang/Object;)Z");
250 CtMethod hashCodeMethod = ctClass.getMethod("hashCode", "()I");
251 CtMethod toStringMethod = ctClass.getMethod("toString", "()Ljava/lang/String;");
464 CtMethod ctMethod = getMethod(ctClass, "get" + fieldName, "");
491 private CtMethod getMethod(CtClass ctClass, String methodName, String desc) { method in class:AndroidTranslator
493 return ctClass.getMethod(methodName, desc);
H A DShadowWrangler.java99 return invocationPlan.getMethod().invoke(invocationPlan.getShadow(), params);
308 public Method getMethod() { method in class:ShadowWrangler.InvocationPlan
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) { method in class:ShadowWrangler.InvocationPlan
405 method = clazz.getMethod(methodName, paramClasses);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
H A DFakeHttpLayer.java111 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() { method in class:FakeHttpLayer.RequestMatcherBuilder
400 return request.getRequestLine().getMethod().equals(method) &&
/external/javassist/src/main/javassist/bytecode/
H A DClassFile.java612 public MethodInfo getMethod(String name) { method in class:ClassFile
629 return getMethod(MethodInfo.nameClinit);
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DSipUri.java325 public String getMethod() { method in class:SipUri
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java55 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("cal
1807 private Method getMethod() throws Exception { method in class:DexMakerTest
[all...]
/external/javassist/src/main/javassist/
H A DCtClass.java830 public CtMethod getMethod(String name, String desc) method in class:CtClass
H A DCtClassType.java768 return enc.getMethod(ema.methodName(), ema.methodDescriptor());
1122 public CtMethod getMethod(String name, String desc) method in class:CtClassType
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransaction.java390 this.method = newOriginalRequest.getMethod();
447 return getMethod().equals(Request.INVITE);
456 return getMethod().equals(Request.CANCEL);
465 return getMethod().equals(Request.BYE);
506 public final String getMethod() { method in class:SIPTransaction
943 || this.getOriginalRequest().getMethod().equals(Request.CANCEL))
H A DSIPDialog.java622 this.method = sipResponse.getCSeq().getMethod();
847 && SIPRequest.isTargetRefresh(sipResponse.getCSeq().getMethod())) {
938 if (!ackRequest.getMethod().equals(Request.ACK))
1090 "ackReceived for " + ((SIPTransaction) tr).getMethod());
1175 if (dialogRequest.getMethod().equals(Request.ACK))
1332 && SIPRequest.isTargetRefresh(sipRequest.getMethod())) {
1457 dialog.firstTransactionMethod = transaction.getMethod();
1482 && transaction.getMethod().equals(firstTransactionMethod)) {
1491 if (sipRequest.getMethod().equals(Request.SUBSCRIBE))
1501 this.method = sipRequest.getMethod();
2257 public String getMethod() { method in class:SIPDialog
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DGeneratedMessage.java920 /** Calls Class.getMethod and throws a RuntimeException if it fails. */
925 return clazz.getMethod(name, params);
1048 getMethod = getMethodOrDie(messageClass, "get" + camelCaseName);
1049 type = getMethod.getReturnType();
1060 protected final Method getMethod; field in class:GeneratedMessage.FieldAccessorTable.SingularFieldAccessor
1066 return invokeOrDie(getMethod, message);
1106 getMethod = getMethodOrDie(messageClass,
1124 protected final Method getMethod; field in class:GeneratedMessage.FieldAccessorTable.RepeatedFieldAccessor
1132 return invokeOrDie(getMethod, message);
/external/clang/include/clang/AST/
H A DExprObjC.h795 ObjCMethodDecl *getMethod,
804 GetAtIndexMethodDecl(getMethod),
814 ObjCMethodDecl *getMethod,
793 ObjCSubscriptRefExpr(Expr *base, Expr *key, QualType T, ExprValueKind VK, ExprObjectKind OK, ObjCMethodDecl *getMethod, ObjCMethodDecl *setMethod, SourceLocation RB) argument
/external/clang/lib/AST/
H A DDeclObjC.cpp68 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance, function in class:ObjCContainerDecl
561 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
571 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
738 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
743 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
749 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
755 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
761 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(),
773 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(),
780 if (ObjCMethodDecl *MD = CatD->getMethod(getSelecto
[all...]
H A DExpr.cpp4142 ObjCMethodDecl *getMethod,
4148 getMethod, setMethod, RB);
4139 Create(const ASTContext &C, Expr *base, Expr *key, QualType T, ObjCMethodDecl *getMethod, ObjCMethodDecl *setMethod, SourceLocation RB) argument
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
H A DNanoHTTPD.java285 Method method = session.getMethod();
833 Method getMethod(); method in interface:NanoHTTPD.IHTTPSession
1316 public final Method getMethod() { method in class:NanoHTTPD.HTTPSession
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/robolectric/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Djavax.servlet_2.5.0.v200910301333.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/include/clang/Sema/
H A DSema.h824 CXXMethodDecl *getMethod() const { return Pair.getPointer(); } function in class:clang::Sema::SpecialMemberOverloadResult
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...

Completed in 1448 milliseconds

12345