Searched refs:resolve (Results 1 - 25 of 36) sorted by relevance

12

/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/ojluni/src/main/java/sun/nio/fs/
H A DAbstractPath.java52 public final Path resolve(String other) { method in class:AbstractPath
53 return resolve(getFileSystem().getPath(other));
61 return (parent == null) ? other : parent.resolve(other);
H A DUnixSecureDirectoryStream.java104 UnixPath child = ds.directory().resolve(file);
159 String pathToCheck = ds.directory().resolve(file).getPathForPermissionCheck();
188 ds.directory().resolve(file).checkDelete();
253 this.ds.directory().resolve(from).checkWrite();
254 that.ds.directory().resolve(to).checkWrite();
353 ds.directory().resolve(file).checkWrite();
375 ds.directory().resolve(file).checkRead();
469 ds.directory().resolve(file).checkRead();
H A DUnixPath.java166 // resolve against default directory if required (chdir allowed or
169 return resolve(getFileSystem().defaultDirectory(), path);
374 private static byte[] resolve(byte[] base, byte[] child) { method in class:UnixPath
396 public UnixPath resolve(Path obj) { method in class:UnixPath
400 byte[] result = resolve(path, other);
404 UnixPath resolve(byte[] other) { method in class:UnixPath
405 return resolve(new UnixPath(getFileSystem(), other));
815 // The path is relative so need to resolve against default directory,
822 resolve(getFileSystem().defaultDirectory(), path));
869 result = result.resolve(elemen
[all...]
H A DUnixDirectoryStream.java197 Path entry = dir.resolve(nameAsBytes);
/libcore/ojluni/src/test/java/nio/file/
H A DTestUtil.java99 dir = dir.resolve(name).resolve(".");
109 Path link = dir.resolve("testlink");
110 Path target = dir.resolve("testtarget");
/libcore/ojluni/src/main/java/java/nio/file/
H A DPath.java53 * defines the {@link #resolve(Path) resolve} and {@link #resolveSibling(Path)
352 * the path to resolve against this path
358 Path resolve(Path other); method in interface:Path
363 * #resolve(Path) resolve} method. For example, suppose that the name
369 * the path string to resolve against this path
378 Path resolve(String other); method in interface:Path
393 * the path to resolve against this path's parent
397 * @see #resolve(Pat
[all...]
H A DTempFileHelper.java64 return dir.resolve(name);
/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/time/temporal/
H A DTemporalField.java311 * This method is invoked during the resolve phase of parsing.
322 * The map is mutable and must be mutated to resolve the field and
330 * complete {@code ChronoLocalDate}. If a resolve is successful,
337 * complete {@code LocalDate}. The resolve method will remove all three
350 * If no resolution is possible, the resolve method must return null.
367 * @param resolverStyle the requested type of resolve, not null
369 * changed the map, or no resolve occurred
374 default TemporalAccessor resolve( method in interface:TemporalField
H A DJulianFields.java291 public ChronoLocalDate resolve( method in class:JulianFields.Field
/libcore/ojluni/src/main/java/java/io/
H A DFileSystem.java66 public abstract String resolve(String parent, String child); method in class:FileSystem
95 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.java77 * <code>java.io</code> package always resolve relative pathnames against the
267 this.path = fs.resolve(parent.path, child);
325 this.path = fs.resolve(fs.normalize(parent),
364 this.path = fs.resolve(fs.getDefaultParent(),
367 this.path = fs.resolve(parent.path,
544 return fs.resolve(this);
606 return fs.canonicalize(fs.resolve(this));
/libcore/ojluni/src/test/java/nio/file/attribute/
H A DBasicFileAttributeViewTest.java111 Path file = dir.resolve("foo");
121 Path link = dir.resolve("link");
H A DBasicFileAttributeViewCreationTimeTest.java65 Path file = Files.createFile(top.resolve("foo"));
H A DPosixFileAttributeViewTest.java137 Path file = dir.resolve("foo");
180 Path link = dir.resolve("link");
208 Path file = dir.resolve("foo");
244 Path file = dir.resolve("gus");
/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/luni/src/test/java/libcore/java/nio/file/
H A DLinuxPathTest.java221 assertEquals(p1p, p1.resolve(p));
222 assertEquals(p.toAbsolutePath(), p1.resolve(p.toAbsolutePath()));
223 assertEquals(p1p.toAbsolutePath(), p1.toAbsolutePath().resolve(p));
228 dummyPath.resolve((Path)null);
236 assertEquals(p1p, p1.resolve("p"));
237 assertEquals(p1p.toAbsolutePath(), p1.toAbsolutePath().resolve("p"));
242 dummyPath.resolve((String)null);
/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
359 protected Class<?> loadClass(String name, boolean resolve) argument
1410 protected Class<?> loadClass(String className, boolean resolve) argument
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DAsynchronousFileChannelTest.java58 Path newFile = tempDir.resolve("newFile");
70 Path newFile = tempDir.resolve("newFile");
97 Path nonExistent = tempDir.resolve("nonExistentFile");
/libcore/ojluni/src/main/java/java/time/format/
H A DDateTimeParseContext.java331 return parsed.resolve(resolverStyle, resolverFields);

Completed in 6522 milliseconds

12