Home
last modified time | relevance | path

Searched refs:resName (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DClassLoader.java1368 protected Enumeration<URL> findResources(String resName) throws IOException { in findResources() argument
1369 return Collections.enumeration(VMClassLoader.getResources(resName)); in findResources()
1408 public URL getResource(String resName) { in getResource() argument
1409 return findResource(resName); in getResource()
1425 public Enumeration<URL> getResources(String resName) throws IOException { in getResources() argument
1426 return findResources(resName); in getResources()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/x500/
DX500PrincipalTest.java52 String resName = xpr.getName(); in test_X500Principal_01() local
53 assertEquals(name, resName); in test_X500Principal_01()
153 String resName = xpr.getName(); in test_getName() local
154 assertEquals(name, resName); in test_getName()
168 String resName = xpr.getName(X500Principal.CANONICAL); in test_getName_Format() local
169 assertEquals(expectedName, resName); in test_getName_Format()
176 String resName = xpr.getName(X500Principal.RFC1779); in test_getName_Format() local
177 assertEquals(expectedName, resName); in test_getName_Format()
183 String resName = xpr.getName(X500Principal.RFC2253); in test_getName_Format() local
184 assertEquals(name, resName); in test_getName_Format()
[all …]