Home
last modified time | relevance | path

Searched defs: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
61 Set<String> signatures = signatures(Sub.class.getDeclaredMethods()); in testGetDeclaredMethodsDoesNotIncludeInheritedMethods() local
71 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsDoesNotIncludeExceptionChanges() local
78 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsIncludesSyntheticMethods() local
88 Set<String> signatures = signatures(Sub.class.getDeclaredMethods()); in testGetDeclaredMethodsIncludesSyntheticMethods() local
166 private Set<String> signatures(Method[] methods) { in signatures() method in MethodOverridesTest
167 Set<String> signatures = new HashSet<String>(); in signatures() local
/libcore/ojluni/src/test/java/lang/reflect/records/
DRecordReflectionTest.java136 String[] signatures) in testRecordReflection()
148 assertEquals(rc.getAccessor().getGenericReturnType().toString(), signatures[i], in testRecordReflection() local
/libcore/tools/openjdk-analyzer/src/libcore/tools/analyzer/openjdk/
DDependencyAnalyzer.java443 SignaturesCollection signatures; in getFilter() local
577 public ExpectedUpstreamFilter(SignaturesCollection signatures) { in ExpectedUpstreamFilter()