Home
last modified time | relevance | path

Searched defs:method (Results 1 – 25 of 48) sorted by relevance

12

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DMethodOverridesTest.java30 Method method = StringBuilder.class.getMethod("append", char.class); in testName() local
35 Method method = StringBuilder.class.getMethod("append", char.class); in testParameterTypes() local
41 Method method = StringBuilder.class.getMethod("append", char.class); in testDeclaringClass() local
46 Method method = StringBuilder.class.getMethod("append", char.class); in testReturnType() local
51 Method method = StringBuilder.class.getMethod("append", char.class); in testThrownExceptions() local
82 Method method = Sub.class.getMethod("returner"); in testGetMethodsIncludesSyntheticMethods() local
92 Method method = Sub.class.getMethod("returner"); in testGetDeclaredMethodsIncludesSyntheticMethods() local
109 Method method = Sub.class.getMethod("visibility"); in testSubclassChangesVisibility() local
126 Method method = PublicSub.class.getMethod("unchanged"); in testMoreVisibleSubclassChangesVisibility() local
160 private String signature(Method method) { in signature()
DGenericExceptionsTest.java31 Method method = Thrower.class.getMethod("parameterizedMethod"); in testGenericExceptionsOfMethodsWithTypeParameters() local
37 Method method = Thrower.class.getMethod("genericParameters", List.class); in testGenericExceptionsOfMethodsWithGenericParameters() local
63 Method method = ThrowerT.class.getMethod("throwsTypeVariable"); in testMethodThrowingTypeVariable() local
71 Method method = ThrowerT.class.getMethod("throwsMethodTypeParameter"); in testThrowingMethodTypeParameter() local
79 Method method = ThrowerT.class.getMethod("throwsEverything"); in testThrowingMethodThrowsEverything() local
DMethodTest.java24 Method method = MethodTestHelper.class.getMethod("m1", new Class[0]); in test_getExceptionTypes() local
37 Method method = MethodTestHelper.class.getMethod("m2", expectedParameters); in test_getParameterTypes() local
105 Method method = Super.class.getDeclaredMethod("a"); in testGetDeclaredMethodReturnsPrivateMethods() local
130 Method method = anonymous.getClass().getMethod("a"); in testImplementedInterfaceMethodOfAnonymousClass() local
139 Method method = anonymous.getClass().getMethod("a"); in testPublicMethodOfAnonymousClass() local
160 Method method = anonymous.getClass().getDeclaredMethod("a"); in testGetDeclaredMethodReturnsPrivateMethodOfAnonymousClass() local
DOldAndroidClassTest.java55 Method method = helloClass.getDeclaredMethod("method", (Class[]) null); in testGetDeclaredMethod() local
61 Method method = helloClass.getDeclaredMethod("methodWithArgs", Object.class); in testGetDeclaredMethodWithArgs() local
71 Method method = helloClass.getDeclaredMethod("privateMethod", (Class[]) null); in testGetDeclaredMethodPrivate() local
128 public void method() { in method() method in OldAndroidClassTest
DOldGenericReflectionCornerCases.java42 Method method = clazz.getDeclaredMethod("wildcardEquality", Pair.class); in testWildcardEquality() local
85 Method method = clazz.getDeclaredMethod("wildcardUnEquality", Pair.class); in testWildcardUnEquality() local
130 Method method = clazz.getDeclaredMethod("multipleBoundedWildcardUnEquality", Pair.class); in testMultipleBoundedWildcardUnEquality() local
182 Method method = clazz.getDeclaredMethod("multipleBoundedWildcardEquality", Pair.class); in testMultipleBoundedWildcard() local
DMissingClassesTest.java72 void method(Unloadable unloadable) {} in method() method in MissingClassesTest.Loadable
DClassLoaderReflectionTest.java115 Method method = fClass.getDeclaredMethod("method", bClass, List.class); in testMethodGenericReturnType() local
120 Method method = fClass.getDeclaredMethod("method", bClass, List.class); in testMethodGenericParameterTypes() local
164 B<String> method(B<String> parameter, List<A> anotherParameter) { in method() method in ClassLoaderReflectionTest.F
DOldGenericTypesTest.java80 Method method = clazz.getDeclaredMethod("staticMethodGenericType", Object.class); in testStaticMethodGenericType() local
93 Method method = clazz.getDeclaredMethod("hidingMethodGenericType", Object.class); in testHidingMethodGenericType() local
216 Method method = clazz.getDeclaredMethod("exceptionTest"); in testException() local
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DGenericMethodsTests.java55 private void checkTypeParameter(Method method) { in checkTypeParameter()
66 private void checkParameterType(Method method) { in checkParameterType()
79 private void checkReturnType(Method method) { in checkReturnType()
87 Method method = clazz.getMethod("noParamNoReturn"); in testNoParamNoReturn() local
92 Method method = clazz.getMethod("paramNoReturn", Object.class); in testParamNoReturn() local
98 Method method = clazz.getMethod("noParamReturn"); in testNoParamReturn() local
104 Method method = clazz.getMethod("paramReturn", Object.class); in testParamReturn() local
DBoundedGenericMethodsTests.java50 private void checkBoundedTypeParameter(Method method) { in checkBoundedTypeParameter()
68 private void parameterType(Method method) { in parameterType()
84 private void checkReturnType(Method method) { in checkReturnType()
108 Method method = clazz.getMethod("noParamNoReturn"); in testNoParamNoReturn() local
112 Method method = clazz.getMethod("paramNoReturn", BoundedGenericMethods.class); in testUnboundedParamNoReturn() local
117 Method method = clazz.getMethod("noParamReturn"); in testNoParamReturn() local
123 Method method = clazz.getMethod("paramReturn", BoundedGenericMethods.class); in testUnboundedParamReturn() local
DWildcardTypeTest.java57 private void checkBoundedTypeParameter(Method method) { in checkBoundedTypeParameter()
68 private void checkLowerBoundedParameter(Method method) { in checkLowerBoundedParameter()
89 private void checkUpperBoundedParameter(Method method) { in checkUpperBoundedParameter()
109 private void checkReturnType(Method method) { in checkReturnType()
125 …Method method = clazz.getMethod("upperBoundedParamNoReturn", BoundedWildcardsGenericMethods.class); in testUpperBoundedParamNoReturn() local
131 … Method method = clazz.getMethod("lowerBoundedParamReturn", BoundedWildcardsGenericMethods.class); in testLowerBoundedParamReturn() local
138 … Method method = clazz.getMethod("upperBoundedParamReturn", BoundedWildcardsGenericMethods.class); in testUpperBoundedParamReturn() local
145 …Method method = clazz.getMethod("lowerBoundedParamNoReturn", BoundedWildcardsGenericMethods.class); in testLowerBoundedParamNoReturn() local
DProxyTest.java51 public float method(float _number0, float _number1); in method() method
55 public Object invoke(Object proxy, Method method, Object[] args) in invoke()
303 public Object invoke(Object object, Method method, Object[] args) in invoke()
DMethodTest.java403 Method method = TestMethod.class.getDeclaredMethod( in test_getParameterAnnotations() local
435 Method method = TestMethod.class.getDeclaredMethod("annotatedMethod"); in test_getDeclaredAnnotations() local
452 Method method = TestAnno.class.getDeclaredMethod("value"); in test_getDefaultValue() local
461 Method method = ExceptionTest.class.getDeclaredMethod("exceptionTest"); in test_getGenericExceptionTypes() local
475 Method method = GenericReturnType.class in test_getGenericReturnType() local
491 Method method = GenericString.class.getDeclaredMethod("genericString", in test_toGenericString() local
DTypeVariableTest.java48 Method method = clazz.getDeclaredMethod("b"); in testSimpleTypeVariableOnMethod() local
96 Method method = clazz.getDeclaredMethod("e"); in testMultipleTypeVariablesOnMethod() local
DGenericReflectionTestsBase.java33 public TypeVariable<Method> getTypeParameter(Method method) { in getTypeParameter()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DSerializationTestClass.java240 public void method() { in method() method in SerializationTestClass.TestMethodPublic
246 private void method() { in method() method in SerializationTestClass.TestMethodPrivate
251 protected void method() { in method() method in SerializationTestClass.TestMethodProtected
256 strictfp void method() { in method() method in SerializationTestClass.TestMethodStrict
261 static void method() { in method() method in SerializationTestClass.TestMethodStatic
266 final void method() { in method() method in SerializationTestClass.TestMethodFinal
271 synchronized void method() { in method() method in SerializationTestClass.TestMethodSynchronized
276 native void method(); in method() method in SerializationTestClass.TestMethodNative
281 abstract void method(); in method() method in SerializationTestClass.TestMethodAbstractHelper
287 void method() { in method() method in SerializationTestClass.TestMethodAbstract
[all …]
/libcore/luni/src/test/java/libcore/java/nio/channels/
DFileIOInterruptTest.java189 private void testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method method) in testChannelRead_exceptionWhenAlreadyClosed()
221 private void testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method method) in testChannelRead_exceptionWhenAlreadyInterrupted()
258 private void testChannelRead_exceptionOnCloseWhenBlocked(ChannelReader.Method method) in testChannelRead_exceptionOnCloseWhenBlocked()
291 private void testChannelRead_exceptionOnInterrupt(ChannelReader.Method method) throws Exception { in testChannelRead_exceptionOnInterrupt()
322 private void testChannelWrite_exceptionWhenAlreadyClosed(ChannelWriter.Method method) in testChannelWrite_exceptionWhenAlreadyClosed()
353 private void testChannelWrite_exceptionWhenAlreadyInterrupted(ChannelWriter.Method method) in testChannelWrite_exceptionWhenAlreadyInterrupted()
390 private void testChannelWrite_exceptionOnCloseWhenBlocked(ChannelWriter.Method method) in testChannelWrite_exceptionOnCloseWhenBlocked()
424 private void testChannelWrite_exceptionOnInterrupt(ChannelWriter.Method method) throws Exception { in testChannelWrite_exceptionOnInterrupt()
531 private final Method method; field in FileIOInterruptTest.ChannelReader
536 ChannelReader(FileChannel channel, Method method) { in ChannelReader()
[all …]
/libcore/luni/src/main/java/java/lang/reflect/
DInvocationHandler.java59 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable; in invoke()
/libcore/luni/src/main/java/java/lang/
DVoid.java40 Method method = Runnable.class.getMethod("run", EmptyArray.CLASS); in lookupType() local
DStackTraceElement.java60 public StackTraceElement(String cls, String method, String file, int line) { in StackTraceElement()
/libcore/dalvik/src/main/java/dalvik/annotation/
DTestTargetNew.java39 String method() default ""; in method() method
/libcore/luni/src/main/java/java/util/zip/
DZipOutputStream.java267 int method = ze.getMethod(); in putNextEntry() local
382 public void setMethod(int method) { in setMethod()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
DMethodLogger.java41 public void add(String method, Object ... args) { in add()
/libcore/benchmarks/src/benchmarks/regression/
DAnnotatedElementBenchmark.java30 private Method method; field in AnnotatedElementBenchmark
154 @Marker public void method(@Marker String parameter) {} in method() method in AnnotatedElementBenchmark.Type
/libcore/libart/src/main/java/java/lang/reflect/
DProxy.java346 Method method = methods.get(i); in deduplicateAndGetExceptions() local
395 static Object invoke(Proxy proxy, ArtMethod method, Object[] args) throws Throwable { in invoke()

12