HomeSort by relevance Sort by last modified time
    Searched refs:isAbsolute (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
WindowsFakeFileSystemTest.groovy 135 assert fileSystem.isAbsolute("c:\\")
136 assert fileSystem.isAbsolute("x:\\Documents")
137 assert fileSystem.isAbsolute("a:/")
138 assert fileSystem.isAbsolute("\\\\shared\\docs")
140 assert !fileSystem.isAbsolute("abc")
141 assert !fileSystem.isAbsolute("/usr")
142 assert !fileSystem.isAbsolute("c:usr")
144 shouldFailWithMessageContaining("path") { fileSystem.isAbsolute(null) }
UnixFakeFileSystemTest.groovy 113 assert fileSystem.isAbsolute("/")
114 assert fileSystem.isAbsolute("/abc")
116 assert !fileSystem.isAbsolute("abc")
117 assert !fileSystem.isAbsolute("c:\\usr")
119 shouldFailWithMessageContaining("path") { fileSystem.isAbsolute(null) }
  /external/swiftshader/third_party/LLVM/lib/MC/
MCValue.cpp 18 if (isAbsolute()) {
MCSymbol.cpp 57 assert((isUndefined() || (isAbsolute() && isa<MCConstantExpr>(Value))) &&
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCSymbol.h 95 return isDefined() && !isAbsolute();
103 /// isAbsolute - Check if this is an absolute symbol.
104 bool isAbsolute() const {
MCValue.h 46 /// isAbsolute - Is this an absolute (as opposed to relocatable) value.
47 bool isAbsolute() const { return !SymA && !SymB; }
  /external/llvm/include/llvm/MC/
MCValue.h 52 bool isAbsolute() const { return !SymA && !SymB; }
  /external/llvm/lib/MC/
MCValue.cpp 19 if (isAbsolute()) {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystem.java 125 public boolean isAbsolute(String path);
  /libcore/luni/src/test/java/libcore/java/net/
OldAndroidURITest.java 35 assertEquals(absolute, uri.isAbsolute());
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixPath.java 369 public boolean isAbsolute() {
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...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.cpp 62 if (!Value.isAbsolute())
101 if (Value.isAbsolute()) {
  /frameworks/compile/mclinker/include/mcld/LD/
StaticResolver.h 112 if (pInfo.isAbsolute() && pInfo.isDyn())
114 if (pInfo.isAbsolute())
  /external/droiddriver/src/io/appium/droiddriver/util/
FileUtils.java 61 if (!file.isAbsolute()) {
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMWinCOFFObjectWriter.cpp 46 Target.isAbsolute() ? MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
  /libcore/ojluni/src/main/java/java/nio/file/
Path.java 116 boolean isAbsolute();
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}
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileTest.java 123 .isAbsolute());
126 .isAbsolute());
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/
JvmPlatform.java 169 if (potentialHomeDir.isAbsolute()) {
189 checkConfiguration(baseDirectory.isAbsolute(), "base directory cannot be a relative path");
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86WinCOFFObjectWriter.cpp 48 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
  /libcore/ojluni/src/main/java/java/io/
FileSystem.java 89 public abstract boolean isAbsolute(File f);
  /external/emma/core/java12/com/vladium/util/
Files.java 207 if ((dir == null) || file.isAbsolute ()) return file;
223 if ((dir == null) || fileFile.isAbsolute ()) return fileFile;
239 if ((dir == null) || fileFile.isAbsolute ()) return fileFile;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 104 String fragment, Boolean isAbsolute, String actual) {
183 if (isAbsolute != null) {
186 assertEquals(assertID, isAbsolute.booleanValue(), actualPath
  /external/proguard/src/proguard/ant/
ClassPathElement.java 122 new ClassPathEntry(file.isAbsolute() ? file : new File(baseDir, fileName),
  /libcore/ojluni/src/main/java/sun/security/util/
PropertyExpander.java 115 !(new URI(val)).isAbsolute()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkCommandLauncher.java 60 if (!commandPath.isAbsolute())

Completed in 843 milliseconds

1 2 3 4 5 6 7 8