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

1 2 3 4 5 67 8 91011>>

  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 82 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/dexmaker/src/dx/java/com/android/dx/dex/file/
MethodAnnotationStruct.java 110 public CstMethodRef getMethod() {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListAddTester.java 80 return Platform.getMethod(ListAddTester.class, "testAdd_supportedNullPresent");
  /external/mockito/src/org/mockito/internal/reporting/
PrintSettings.java 48 String qualifiedName = new MockUtil().getMockName(invocation.getMock()) + "." + invocation.getMethod().getName();
  /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/smack/src/org/jivesoftware/smack/compression/
Java7ZlibInputOutputStream.java 46 m = Deflater.class.getMethod("deflate", byte[].class, int.class, int.class, int.class);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PostInstructionRegisterInfoMethodItem.java 87 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
PreInstructionRegisterInfoMethodItem.java 159 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
174 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
238 ClassDataItem.EncodedMethod encodedMethod = methodAnalyzer.getMethod();
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.h 53 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
  /frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
CoverageListener.java 71 Method dumpCoverageMethod = emmaRTClass.getMethod("dumpCoverageData",
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDocumentBuilderFactory.java 54 tidyClass.getMethod("parseDOM",
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ProxyTest.java 55 assertEquals("foo", proxy.getClass().getMethod("echo", String.class).invoke(proxy, "foo"));
  /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/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 246 Method ruleName = lexer.getMethod("m"+testRuleName, new Class[0]);
259 Method ruleName2 = lexer.getMethod("getCharIndex", new Class[0]);
334 Method _setTreeAdaptor = parser.getMethod("setTreeAdaptor", parArgTypes);
339 Method ruleName = parser.getMethod(testRuleName);
362 Method returnName = _return.getMethod("getTree");
367 Method returnName = _return.getMethod("getTemplate");
476 Method _setTreeAdaptor = parser.getMethod("setTreeAdaptor", parArgTypes);
482 Method ruleName = parser.getMethod(testRuleName);
497 Method returnName = _return.getMethod("getTree");
517 Method treeRuleName = treeParser.getMethod(testTreeRuleName)
    [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());
  /external/littlemock/src/com/google/testing/littlemock/
LittleMock.java 593 sEqualsMethod = Object.class.getMethod("equals", Object.class);
594 sHashCodeMethod = Object.class.getMethod("hashCode");
595 sToStringMethod = Object.class.getMethod("toString");
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 68 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance) const {
393 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance)))
408 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
560 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
564 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod());
569 Redecl = IFD->getMethod(getSelector(), isInstanceMethod());
574 Redecl = CatD->getMethod(getSelector(), isInstanceMethod());
579 return cast<ObjCContainerDecl>(CtxD)->getMethod(getSelector(),
591 if (ObjCMethodDecl *MD = IFD->getMethod(getSelector(),
598 if (ObjCMethodDecl *MD = CatD->getMethod(getSelector()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 390 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() {
943 || this.getOriginalRequest().getMethod().equals(Request.CANCEL))
    [all...]

Completed in 3370 milliseconds

1 2 3 4 5 67 8 91011>>