Searched refs:resolve (Results 1 - 16 of 16) 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);
H A DURITest.java303 URI uri = base.resolve("another");
312 URI uri = base.resolve("#another");
326 assertEquals("http://host/another#fragment", base.resolve("another#fragment").toString());
331 assertEquals("http://host/a/d", base.resolve("../d").toString());
336 assertEquals("http://host/a/b/d/e", base.resolve("d/e").toString());
341 assertEquals("http://host/d", base.resolve("/d").toString());
346 assertEquals("http://host2/d/e", base.resolve("http://host2/d/e").toString());
347 assertEquals("https://host2/d/e", base.resolve("https://host2/d/e").toString());
352 assertEquals("https://host2/d/e", base.resolve("https://host2/d/e").toString());
357 assertEquals("http://another/d/e", base.resolve("//anothe
[all...]
H A DOldURITest.java121 b.resolve((URI) null);
130 b.resolve((String) null);
137 b.resolve("http://a/b/c/g?y/./x\n");
/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/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());
H A DFile.java73 * <code>java.io</code> package always resolve relative pathnames against the
247 this.path = fs.resolve(parent.path, child);
305 this.path = fs.resolve(fs.normalize(parent),
344 this.path = fs.resolve(fs.getDefaultParent(),
347 this.path = fs.resolve(parent.path,
524 return fs.resolve(this);
586 return fs.canonicalize(fs.resolve(this));
/libcore/support/src/test/java/tests/util/
H A DClassLoaderBuilder.java83 @Override protected Class<?> loadClass(String className, boolean resolve)
99 return super.loadClass(className, resolve);
/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
/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/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DURITest.java685 // registry based because they don't resolve properly to
1246 // registry based because they don't resolve properly to
1648 * java.net.URI#resolve(java.net.URI)
1653 uri2 = uri1.resolve(new URI(".."));
1664 * java.net.URI#resolve(java.net.URI)
1701 URI result = b.resolve(r);
1703 fail("Error: resolve, " + resolveData[i][0] + ", "
1704 + resolveData[i][1] + " returned: " + b.resolve(r)
1713 fail("Exception on resolve test on data " + resolveData[i][0]
/libcore/
H A DNativeCode.mk29 # Include a submakefile, resolve its source file locations,
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java256 * systemId is a URL, we should try to resolve it, but it doesn't
258 * how to resolve it.
262 * resolve it against the parent document's systemId. If anything goes
272 systemUri = baseUri.resolve(systemUri);
278 System.logI("Could not resolve '" + systemId + "' relative to"
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DNodeImpl.java329 // this node has a relative URI. Try to resolve it against the
336 return new URI(parentUri).resolve(uri).toString();

Completed in 421 milliseconds