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

123

/openjdk7/jdk/src/share/instrument/
H A DFileSystemSupport.h62 int isAbsolute(const char * path);
/openjdk7/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()");
H A DCons.java262 if (! f.isAbsolute()) throw new Exception(f + " should be absolute");
265 if (f.isAbsolute()) throw new Exception(f + " should not be absolute");
/openjdk7/jaxws/src/share/jaxws_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
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DUri.java143 if (!isAbsolute(s))
157 if (isAbsolute(uriReference))
163 if(!isAbsolute(baseUri))
173 public static boolean isAbsolute(String uri) { method in class:Uri
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixPath.java369 public boolean isAbsolute() { method in class:UnixPath
415 if (this.isAbsolute() != other.isAbsolute())
492 boolean isAbsolute = isAbsolute();
552 if (isAbsolute) {
577 return isAbsolute ? getFileSystem().rootDirectory() : emptyPath();
582 if (isAbsolute)
593 if (isAbsolute)
621 if (thatOffsetCount == 0 && this.isAbsolute()) {
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DPaint.java53 public boolean isAbsolute() { method in class:Matte
58 if (isAbsolute()) {
70 if (isAbsolute()) {
H A DSynthModel.java102 public boolean isAbsolute() { method in class:Typeface
107 if (isAbsolute()) {
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPath.java116 boolean isAbsolute(); method in interface:Path
340 * <p> If the {@code other} parameter is an {@link #isAbsolute() absolute}
387 * or {@code other} is {@link #isAbsolute() absolute}, then this method
422 * This method attempts to construct a {@link #isAbsolute relative} path
517 * <p> If this path is already {@link Path#isAbsolute absolute} then this
540 * in general it derives from this path, an {@link #isAbsolute absolute}
/openjdk7/hotspot/src/share/vm/runtime/
H A Dpark.hpp65 void park(bool isAbsolute, jlong time);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/xml/sax/
H A DXmlBaseHandler.java99 if (Uri.isAbsolute(baseUri))
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DExtern.java248 if (! ((new File(pkgListPath)).isAbsolute() || linkoffline)){
255 ! ((new File(path)).isAbsolute() || isUrl(path)));
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotVirtualMachine.java50 * If isAbsolute is true then the agent library is the absolute path
52 * if isAbsolute is false then the agent library is just a library
55 private void loadAgentLibrary(String agentLibrary, boolean isAbsolute, String options) argument
60 isAbsolute ? "true" : "false",
/openjdk7/jdk/src/share/classes/java/io/
H A DFileSystem.java94 public abstract boolean isAbsolute(File f); method in class:FileSystem
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java81 if (this.isAbsolute())
174 if (isAbsolute()) {
237 this.isAbsolute() != o.isAbsolute()) {
276 public boolean isAbsolute() { method in class:ZipPath
283 if (o.isAbsolute())
310 if (o.isAbsolute() != this.isAbsolute() ||
335 if ((o.isAbsolute() &&(!this.isAbsolute() || olas
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPath.java180 if (isAbsolute() && path.length() <= MAX_PATH)
220 if (isAbsolute())
367 public boolean isAbsolute() { method in class:WindowsPath
480 if (isAbsolute() || type == WindowsPathType.DIRECTORY_RELATIVE) {
528 if (other.isAbsolute())
817 if (isAbsolute())
H A DWindowsUriSupport.java119 if (!uri.isAbsolute())
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSystemIdResolver.java100 return file.isAbsolute();
/openjdk7/jdk/src/solaris/instrument/
H A DFileSystemSupport_md.c61 int isAbsolute(const char* path) { function
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DPropertyExpander.java115 !(new URI(val)).isAbsolute()) {
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DVmIdentifier.java144 if (u.isAbsolute()) {
H A DHostIdentifier.java117 if (u.isAbsolute()) {
422 return uri.isAbsolute() ? uri.getScheme() : null;
/openjdk7/jdk/src/solaris/classes/java/io/
H A DUnixFileSystem.java127 public boolean isAbsolute(File f) { method in class:UnixFileSystem
132 if (isAbsolute(f)) return f.getPath();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DWalkerFactory.java1421 && !isAbsolute(analysis)
1481 && !isAbsolute(analysis)
1485 public static boolean isAbsolute(int analysis) method in class:WalkerFactory
1498 && (!isAbsolute(analysis) || isSet(analysis, BIT_ROOT))
1508 && (!isAbsolute(analysis) || isSet(analysis, BIT_ROOT))
1518 && (!isAbsolute(analysis) || isSet(analysis, BIT_ROOT))
1528 && !isAbsolute(analysis)
1538 && !isAbsolute(analysis)
1547 && !isAbsolute(analysis)
1556 && !isAbsolute(analysi
[all...]

Completed in 100 milliseconds

123