Searched refs:isAbsolute (Results 1 - 25 of 86) sorted by relevance

1234

/openjdk9/jdk/src/java.instrument/share/native/libinstrument/
H A DFileSystemSupport.h62 int isAbsolute(const char * path);
/openjdk9/jdk/make/src/classes/build/tools/generatenimbus/
H A DTypeface.java52 public boolean isAbsolute() { method in class:Typeface
57 if (isAbsolute()) {
H A DMatte.java47 public boolean isAbsolute() { method in class:Matte
52 if (isAbsolute()) {
64 if (isAbsolute()) {
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/
H A DSearchPath.java44 if (isAbsolute(entry)) {
72 private boolean isAbsolute(Path entry) { method in class:SearchPath
73 return fileSupport.isAbsolute(entry);
H A DFileSupport.java76 public boolean isAbsolute(Path entry) { method in class:FileSupport
77 return entry.isAbsolute();
/openjdk9/jdk/test/java/io/File/
H A DIsAbsolute.java26 @summary General test for isAbsolute
36 boolean x = f.isAbsolute();
H A DUnicode.java64 if ( f.isAbsolute()) fail(" f.isAbsolute()");
/openjdk9/nashorn/test/script/nosecurity/
H A DJDK-8050964.js45 if (! nashornJar.isAbsolute()) {
/openjdk9/hotspot/src/share/vm/runtime/
H A Dpark.hpp65 void park(bool isAbsolute, jlong time);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/util/
H A DUri.java153 if (!isAbsolute(s))
167 if (!isAbsolute(uriReference) && baseUri != null && isAbsolute(baseUri)) {
180 public static boolean isAbsolute(String uri) { method in class:Uri
/openjdk9/jdk/src/java.base/unix/classes/sun/nio/fs/
H A DUnixPath.java382 public boolean isAbsolute() { method in class:UnixPath
428 if (this.isAbsolute() != child.isAbsolute())
519 boolean isAbsolute = isAbsolute();
579 if (isAbsolute) {
604 return isAbsolute ? getFileSystem().rootDirectory() : emptyPath();
609 if (isAbsolute)
620 if (isAbsolute)
648 if (thatOffsetCount == 0 && this.isAbsolute()) {
[all...]
/openjdk9/nashorn/test/script/currently-failing/
H A DJDK-8055034.js43 if (! nashornJar.isAbsolute()) {
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/xml/sax/
H A DXmlBaseHandler.java99 if (Uri.isAbsolute(baseUri))
/openjdk9/jdk/src/java.base/share/classes/java/io/
H A DFileSystem.java88 public abstract boolean isAbsolute(File f); method in class:FileSystem
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.options/src/org/graalvm/compiler/options/
H A DUniquePathUtilities.java92 if (result.isAbsolute() || defaultDirectory == null) {
/openjdk9/hotspot/test/compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/collect/
H A DFakeFileSupport.java85 public boolean isAbsolute(Path entry) { method in class:FakeFileSupport
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/jrtfs/
H A DJrtPath.java82 if (this.isAbsolute()) {
165 if (isAbsolute())
216 if (jrtfs != o.jrtfs || isAbsolute() != o.isAbsolute()) {
264 public final boolean isAbsolute() { method in class:JrtPath
271 if (this.path.length() == 0 || o.isAbsolute()) {
299 if (isAbsolute() != o.isAbsolute() || !tp.startsWith(op)) {
328 if ((o.isAbsolute() && (!t.isAbsolute() || olas
[all...]
/openjdk9/jdk/src/jdk.zipfs/share/classes/jdk/nio/zipfs/
H A DZipPath.java75 if (this.isAbsolute())
174 if (isAbsolute()) {
229 if (this.zfs != o.zfs || this.isAbsolute() != o.isAbsolute())
271 public boolean isAbsolute() { method in class:ZipPath
280 if (o.isAbsolute() || this.path.length == 0)
314 if (o.isAbsolute() != this.isAbsolute() ||
339 if ((o.isAbsolute() &&(!this.isAbsolute() || olas
[all...]
/openjdk9/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsPath.java178 if (isAbsolute() && path.length() <= MAX_PATH)
218 if (isAbsolute())
365 public boolean isAbsolute() { method in class:WindowsPath
535 if (isAbsolute() || type == WindowsPathType.DIRECTORY_RELATIVE) {
583 if (other.isAbsolute())
872 if (isAbsolute())
H A DWindowsUriSupport.java119 if (!uri.isAbsolute())
/openjdk9/jdk/src/java.base/share/classes/java/nio/file/
H A DPath.java117 boolean isAbsolute(); method in interface:Path
357 * <p> If the {@code other} parameter is an {@link #isAbsolute() absolute}
412 * or {@code other} is {@link #isAbsolute() absolute}, then this method
468 * This method attempts to construct a {@link #isAbsolute relative} path
564 * <p> If this path is already {@link Path#isAbsolute absolute} then this
587 * in general it derives from this path, an {@link #isAbsolute absolute}
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/sax/
H A DSystemIdResolver.java100 return file.isAbsolute();
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DAbstractReferenceFinderImpl.java82 if (relRefURI.isAbsolute())
/openjdk9/jdk/src/java.base/share/classes/sun/security/util/
H A DPropertyExpander.java115 !(new URI(val)).isAbsolute()) {
/openjdk9/jdk/src/java.instrument/unix/native/libinstrument/
H A DFileSystemSupport_md.c61 int isAbsolute(const char* path) { function

Completed in 223 milliseconds

1234