Home
last modified time | relevance | path

Searched refs:signatures (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DMethodOverridesTest.java56 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsIncludesInheritedMethods() local
57 assertContains(signatures, "void notOverridden[] throws []"); in testGetMethodsIncludesInheritedMethods()
61 Set<String> signatures = signatures(Sub.class.getDeclaredMethods()); in testGetDeclaredMethodsDoesNotIncludeInheritedMethods() local
62 assertFalse(signatures.contains("void notOverridden[] throws []")); in testGetDeclaredMethodsDoesNotIncludeInheritedMethods()
71 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsDoesNotIncludeExceptionChanges() local
72 assertContains(signatures, "void thrower[] throws []"); in testGetMethodsDoesNotIncludeExceptionChanges()
73 assertFalse(signatures.contains("void thrower[] throws [java.lang.Exception]")); in testGetMethodsDoesNotIncludeExceptionChanges()
78 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsIncludesSyntheticMethods() local
79 assertContains(signatures, "java.lang.String returner[] throws []"); in testGetMethodsIncludesSyntheticMethods()
80 assertContains(signatures, "java.lang.Object returner[] throws []"); in testGetMethodsIncludesSyntheticMethods()
[all …]
/libcore/ojluni/src/test/java/lang/reflect/records/
DRecordReflectionTest.java136 String[] signatures) in testRecordReflection() argument
148 assertEquals(rc.getAccessor().getGenericReturnType().toString(), signatures[i], in testRecordReflection() local
150 rc.getAccessor().getGenericReturnType(), signatures[i])); in testRecordReflection()
/libcore/tools/openjdk-analyzer/src/libcore/tools/analyzer/openjdk/
DDependencyAnalyzer.java443 SignaturesCollection signatures; in getFilter() local
445 signatures = getSignatureCollection(internalClassName); in getFilter()
450 if (signatures == null) { in getFilter()
453 filter = new ExpectedUpstreamFilter(signatures); in getFilter()
577 public ExpectedUpstreamFilter(SignaturesCollection signatures) { in ExpectedUpstreamFilter() argument
578 this.mSignatures = signatures; in ExpectedUpstreamFilter()