Home
last modified time | relevance | path

Searched refs:getMethods (Results 1 – 25 of 108) sorted by relevance

12345

/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliMethodTest.java95 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testStaticRegisterCount()
135 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testMethodParams()
178 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testVarArgsMethod()
185 smaliMethod = smaliClass.getMethods()[1]; in testVarArgsMethod()
241 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testGetInstructions()
261 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testGetSourcePositionForCodeOffset()
284 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testThrowsList()
303 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testPrimitiveReturnType()
DSmaliCodeFragmentFactoryTest.java111 PsiElement context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(0); in testCompletion()
115 context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(2); in testCompletion()
119 context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(6); in testCompletion()
DSmaliAnnotationTest.java168 SmaliMethod method = smaliClass.getMethods()[0]; in testMethodAnnotation()
266 SmaliMethod method = smaliClass.getMethods()[0]; in testDefaultValue()
/external/javassist/src/main/javassist/
DCtArray.java89 public CtMethod[] getMethods() { in getMethods() method in CtArray
91 return getSuperclass().getMethods(); in getMethods()
94 return super.getMethods(); in getMethods()
/external/testng/src/test/java/test/assertion/
DAssertionTest.java29 assertThat(rawAssertion.getMethods()) in test2()
41 assertThat(rawAssertion.getMethods()) in test2_fails()
DMyRawAssertion.java44 public List<String> getMethods() { in getMethods() method in MyRawAssertion
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
DSmalideaClassDef.java178 Arrays.asList(psiClass.getMethods())),
196 Iterables.filter(Arrays.asList(psiClass.getMethods()), new Predicate<PsiMethod>() {
211 @Nonnull @Override public Iterable<? extends Method> getMethods() {
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DServiceTest.java64 TestService.getDescriptor().getMethods().get(0);
66 TestService.getDescriptor().getMethods().get(1);
269 assertEquals(1, file.getServices().get(0).getMethods().size()); in testNoGenericServices()
271 file.getServices().get(0).getMethods().get(0).getName()); in testNoGenericServices()
/external/smali/smalidea/src/test/java/org/jf/smalidea/dexlib/
DSmalideaMethodTest.java92 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testSmalideaMethod()
346 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testCatchBlocks()
418 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testPackedSwitch()
484 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testSparseSwitch()
559 SmaliMethod smaliMethod = smaliClass.getMethods()[0]; in testArrayData()
/external/emma/core/java12/com/vladium/emma/report/
DClassItem.java52 final MethodDescriptor [] methods = m_cls.getMethods (); in getFirstLine()
118 final MethodDescriptor [] methoddescs = m_cls.getMethods (); in getAggregate()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DIClassCoverage.java83 public Collection<IMethodCoverage> getMethods(); in getMethods() method
/external/mockito/src/main/java/org/mockito/internal/runners/util/
DTestMethodsFinder.java16 Method[] methods = klass.getMethods(); in hasTestMethods()
/external/testng/src/main/java/org/testng/junit/
DJUnit4TestRecognizer.java23 for (Method m : c.getMethods()) { in isTest()
DJUnit3TestRecognizer.java20 for (Method m : c.getMethods()) { in isTest()
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DBiMapTestSuiteBuilder.java91 .suppressing(SetCreationTester.class.getMethods()) in createDerivedSuites()
103 .suppressing(SetCreationTester.class.getMethods()) in createDerivedSuites()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
DClassDef.java165 @Nonnull Iterable<? extends Method> getMethods(); in getMethods() method
/external/emma/core/java12/com/vladium/jcd/cls/
DAbstractClassDefVisitor.java27 visit (cls.getMethods (), ctx); in visit()
/external/nist-sip/java/gov/nist/javax/sip/header/
DAllowList.java78 public ListIterator<String> getMethods() { in getMethods() method in AllowList
DAllowEventsList.java78 public ListIterator<String> getMethods() { in getMethods() method in AllowEventsList
/external/mockito/src/main/java/org/mockito/internal/invocation/
DTypeSafeMatching.java47 Method[] methods = argumentMatcher.getClass().getMethods(); in getArgumentType()
/external/vogar/src/vogar/target/junit/
DJunit4.java74 for (Method m : klass.getMethods()) { in isJunit4Test()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DClassAnalyzerTest.java57 assertEquals(0, coverage.getMethods().size()); in testMethodFilter_Empty()
/external/javassist/src/main/javassist/util/proxy/
DProxyFactory.java774 HashMap allMethods = getMethods(superClass, interfaces); in makeSortedMethodList()
1013 private static HashMap getMethods(Class superClass, Class[] interfaceTypes) { in getMethods() method in ProxyFactory
1016 getMethods(hash, interfaceTypes[i]); in getMethods()
1018 getMethods(hash, superClass); in getMethods()
1022 private static void getMethods(HashMap hash, Class clazz) { in getMethods() method in ProxyFactory
1025 getMethods(hash, ifs[i]); in getMethods()
1029 getMethods(hash, parent); in getMethods()
/external/junit-params/src/main/java/junitparams/internal/
DParameterisedFrameworkMethod.java56 public List<InstanceFrameworkMethod> getMethods() { in getMethods() method in ParameterisedFrameworkMethod
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DClassCoverageImpl.java141 public Collection<IMethodCoverage> getMethods() { in getMethods() method in ClassCoverageImpl

12345