Searched defs:resolve (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/javax/xml/transform/
H A DURIResolver.java37 * and the processor should try to resolve the URI itself.
40 * resolve the URI.
42 public Source resolve(String href, String base) method in interface:URIResolver
/libcore/luni/src/test/java/libcore/java/net/
H A DOldAndroidURITest.java39 resolve("http://www.google.com/your",
44 private static void resolve(String base, String uri, String expected) { method in class:OldAndroidURITest
46 URI resolved = b.resolve(uri);
/libcore/luni/src/main/java/libcore/reflect/
H A DTypeVariableImpl.java79 // resolve() looks up the next level only, if null is returned
102 void resolve() { method in class:TypeVariableImpl
120 resolve();
125 resolve();
/libcore/ojluni/src/main/java/java/net/
H A DURLClassLoader.java775 public final Class loadClass(String name, boolean resolve) argument
787 return super.loadClass(name, resolve);
H A DURI.java219 * <i>u</i><tt>.relativize(</tt><i>u</i><tt>.resolve(</tt><i>v</i><tt>)).equals(</tt><i>v</i><tt>)</tt>&nbsp;&nbsp;and<br>
220 * <i>u</i><tt>.resolve(</tt><i>u</i><tt>.relativize(</tt><i>v</i><tt>)).equals(</tt><i>v</i><tt>)</tt>&nbsp;&nbsp;.<br>
542 * href="#resolve-frag">resolved</a> against a base URI.
967 * <p><a name="resolve-frag"></a> If the given URI's fragment component is
1015 public URI resolve(URI uri) { method in class:URI
1016 return resolve(this, uri);
1024 * evaluating the expression <tt>{@link #resolve(java.net.URI)
1025 * resolve}(URI.{@link #create(String) create}(str))</tt>. </p>
1036 public URI resolve(String str) { method in class:URI
1037 return resolve(UR
2012 private static URI resolve(URI base, URI child) { method in class:URI
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DFileSystem.java72 public abstract String resolve(String parent, String child); method in class:FileSystem
101 public abstract String resolve(File f); method in class:FileSystem
H A DUnixFileSystem.java94 public String resolve(String parent, String child) { method in class:UnixFileSystem
128 public String resolve(File f) { method in class:UnixFileSystem
130 return resolve(System.getProperty("user.dir"), f.getPath());
/libcore/ojluni/src/main/java/java/lang/
H A DClassLoader.java299 * machine to resolve class references. Invoking this method is equivalent
335 * <tt>resolve</tt> flag is true, this method will then invoke the {@link
345 * @param resolve
346 * If <tt>true</tt> then resolve the class
358 protected Class<?> loadClass(String name, boolean resolve) argument
1401 protected Class<?> loadClass(String className, boolean resolve) argument

Completed in 427 milliseconds