Searched defs:getResources (Results 1 - 4 of 4) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
H A DDelegateLastClassLoader.java140 public Enumeration<URL> getResources(String name) throws IOException { method in class:DelegateLastClassLoader
143 Object.class.getClassLoader().getResources(name),
145 (getParent() == null) ? null : getParent().getResources(name) };
/libcore/libart/src/main/java/java/lang/
H A DVMClassLoader.java78 static List<URL> getResources(String name) { method in class:VMClassLoader
93 * Boot class path manipulation, for getResources().
/libcore/ojluni/src/main/java/java/lang/
H A DClassLoader.java774 * #getResources(java.lang.String) getResources(String)} method.
831 public Enumeration<URL> getResources(String name) throws IOException { method in class:ClassLoader
835 tmp[0] = parent.getResources(name);
951 return system.getResources(name);
1357 return Collections.enumeration(VMClassLoader.getResources(resName));
1413 public Enumeration<URL> getResources(String resName) throws IOException { method in class:BootClassLoader
/libcore/ojluni/src/main/java/sun/misc/
H A DURLClassPath.java302 public Enumeration<Resource> getResources(final String name, method in class:URLClassPath
339 public Enumeration<Resource> getResources(final String name) { method in class:URLClassPath
340 return getResources(name, true);

Completed in 124 milliseconds