/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CLDRPaths.java | 21 …public static final String BASE_DIRECTORY = CldrUtility.getPath(CldrUtility.getProperty("CLDR_DIR"… 22 …public static final String LOCAL_DIRECTORY = CldrUtility.getPath(CldrUtility.getProperty("LOCAL_DI… 23 …public static final String EXTERNAL_DIRECTORY = CldrUtility.getPath(CldrUtility.getProperty("UCD_D… 28 public static final String COMMON_DIRECTORY = CldrUtility.getPath(BASE_DIRECTORY, "common/"); 29 …public static final String COLLATION_DIRECTORY = CldrUtility.getPath(COMMON_DIRECTORY, "collation/… 30 public static final String CASING_DIRECTORY = CldrUtility.getPath(COMMON_DIRECTORY, "casing/"); 32 CldrUtility.getPath(CLDRPaths.COMMON_DIRECTORY, "main")); 34 …public static final String RBNF_DIRECTORY = CldrUtility.getPath(CLDRPaths.COMMON_DIRECTORY, "rbnf/… 35 …public static final String TRANSFORMS_DIRECTORY = CldrUtility.getPath(CLDRPaths.COMMON_DIRECTORY, … 36 …public static final String ANNOTATIONS_DIRECTORY = CldrUtility.getPath(CLDRPaths.COMMON_DIRECTORY,… [all …]
|
D | CachingEntityResolver.java | 188 System.out.println("Using existing: " + t.getPath()); in resolveEntity() 201 return new InputSource(aFile.getPath()); in resolveEntity() 207 System.out.println(t.getPath() + " doesn't exist. fetching."); in resolveEntity() 213 BufferedWriter w = new BufferedWriter(new FileWriter(t.getPath())); in resolveEntity() 222 System.err.println(th.toString() + " trying to fetch " + t.getPath()); in resolveEntity() 227 System.out.println(t.getPath() + " fetched."); in resolveEntity() 231 return new InputSource(t.getPath()); in resolveEntity()
|
/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | FileWritingTest.java | 54 Path path = fs.getPath("/foo/bar"); in pathNotDirectory() 75 "path " + file.getPath() + " exists but is not a directory."); in fileNotDirectory() 109 Path fooPath = fsRoot.resolve(fs.getPath("foo", "Test.java")); in pathNestedClasses() 110 Path barPath = fsRoot.resolve(fs.getPath("foo", "bar", "Test.java")); in pathNestedClasses() 111 Path bazPath = fsRoot.resolve(fs.getPath("foo", "bar", "baz", "Test.java")); in pathNestedClasses() 140 Path fooPath = fsRoot.resolve(fs.getPath("foo", "Test.java")); in filerNestedClasses() 141 Path barPath = fsRoot.resolve(fs.getPath("foo", "bar", "Test.java")); in filerNestedClasses() 142 Path bazPath = fsRoot.resolve(fs.getPath("foo", "bar", "baz", "Test.java")); in filerNestedClasses() 164 Path testPath1 = fsRoot.resolve(fs.getPath("example", "Test1.java")); in filerPassesOriginatingElements() 166 Path testPath2 = fsRoot.resolve(fs.getPath("example", "Test2.java")); in filerPassesOriginatingElements() [all …]
|
/external/deqp/framework/delibs/decpp/ |
D | deFilePath.cpp | 153 return FilePath(components).getPath(); in getDirName() 175 int result = stat(normPath.getPath(), &st); in exists() 183 int result = stat(normPath.getPath(), &st); in getType() 226 DE_TEST_ASSERT(string(".") == FilePath(".//.").normalize().getPath()); in FilePath_selfTest() 227 DE_TEST_ASSERT(string(".") == FilePath(".").normalize().getPath()); in FilePath_selfTest() 228 …("..") + FilePath::separator + "test") == FilePath("foo/../bar/../../test").normalize().getPath()); in FilePath_selfTest() 229 …ePath::separator + "foo.txt") == FilePath("/foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest() 230 …ath::separator + "foo.txt") == FilePath("c:/foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest() 231 …th::separator + "foo.txt") == FilePath("\\\\foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath()); in FilePath_selfTest() 282 createPaths.push_back(curPath.getPath()); in createDirectoryAndParents() [all …]
|
/external/vogar/src/vogar/android/ |
D | DeviceFilesystem.java | 50 while (dir != null && !dir.getPath().equals("/sdcard") && !dir.getPath().equals("/")) { in mkdirs() 70 args.add(name.getPath()); in mkdir() 86 args.add(dir.getPath()); in ls() 99 if (fileString.contains(dir.getPath() + ": No such file or directory")) { in ls() 102 if (fileString.equals(dir.getPath())) { in ls()
|
D | AndroidSdk.java | 176 desugarJarPath = desugarJar.getPath(); in createAndroidSdk() 419 builder.args("--bootclasspath_entry", f.getPath()); in desugar() 425 builder.args("--classpath_entry", f.getPath()); in desugar() 440 "outputTempDir must be a directory: " + outputTempDir.getPath()); in desugar() 443 String desugarTempDirPath = outputTempDir.getPath() + "/desugar"; in desugar() 465 String desugarOutputPath = desugarTempDir.getPath() + "/" + tmpName; in desugar() 468 builder.args("-i", desugarInput.getPath()) in desugar() 480 "-F", apk.getPath(), in packageApk() 481 "-M", manifest.getPath(), in packageApk() 488 new Command(log, "aapt", "add", "-k", apk.getPath(), dex.getPath()).execute(); in addToApk() [all …]
|
D | AdbTarget.java | 76 String pathArgument = directory.getPath() + "/"; in ensureDirectory() 149 new Command.Builder(log).args("adb", "shell", "rm", "-r", file.getPath()) in rm() 165 Command fallback = new Command(log, "adb", "push", local.getPath(), remote.getPath()); in push() 184 new Command(log, "adb", "pull", remote.getPath(), local.getPath()).execute(); in pull()
|
D | DeviceFileCache.java | 75 new Command(log, "adb", "shell", "mv", temporary.getPath(), cachedFile.getPath()).execute(); in mv() 80 new Command(log, "adb", "shell", "cat", source.getPath(), ">", temporary.getPath()) in cp()
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/res/ |
D | FileFsFileTest.java | 33 final String path = FileFsFile.from("foo", "bar", "baz").getPath(); in from_shouldConstructPath() 39 final String path = FileFsFile.from(null, "", "foo", "bar").getPath(); in from_shouldIgnoreNullOrMissingComponents() 44 final String path = FileFsFile.from(".").getPath(); in from_shouldAllowSingleDotPart() 49 final String path = FileFsFile.from(safe("/some/path")).getPath(); in from_shouldAllowLeadingSlash() 55 final String path = FileFsFile.from(safe("/some/path/./to/here")).getPath(); in from_shouldIgnoreDotParts() 61 …final String path = FileFsFile.from(".").join(safe("some/./path"), ".", safe("to/here")).getPath(); in join_shouldIgnoreDotParts()
|
/external/swiftshader/third_party/LLVM/tools/llvm-ar/ |
D | llvm-ar.cpp | 359 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) { in doPrint() 369 outs() << "Printing " << I->getPath().str() << "\n"; in doPrint() 410 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) { in doDisplayTable() 428 outs() << " " << I->getPath().str() << "\n"; in doDisplayTable() 430 outs() << I->getPath().str() << "\n"; in doDisplayTable() 448 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) { in doExtract() 452 sys::Path dirs(I->getPath()); in doExtract() 461 std::ofstream file(I->getPath().c_str(), io_mode); in doExtract() 474 I->getPath().setStatusInfoOnDisk(I->getFileStatus()); in doExtract() 493 if (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end()) { in doDelete() [all …]
|
/external/vogar/src/vogar/ |
D | SshTarget.java | 69 .args("rm", "-r", file.getPath()) in rm() 102 local.getPath(), host + ":" + remote.getPath()).execute(); in push() 111 host + ":" + remote.getPath(), local.getPath()).execute(); in pull()
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
D | BasicPathHandler.java | 66 "Illegal path attribute \"" + cookie.getPath() in validate() 67 + "\". Path of origin: \"" + origin.getPath() + "\""); in validate() 78 String targetpath = origin.getPath(); in match() 79 String topmostPath = cookie.getPath(); in match()
|
/external/parameter-framework/upstream/test/functional-tests/include/ |
D | ConfigFiles.hpp | 52 mConfigFile(format(mConfigTemplate, {{"structurePath", mStructureFile.getPath()}, 53 {"domainsPath", mDomainsFile.getPath()}, 58 std::string getPath() { return mConfigFile.getPath(); } in getPath() function in parameterFramework::ConfigFiles
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestIdentity.java | 61 .getPath() in TestIdentityVsFilename() 74 .getPath() in TestIdentityVsFilename() 87 .getPath() in TestIdentityVsFilename() 99 .getPath() in TestIdentityVsFilename() 115 .getPath() in TestIdentityVsFilename()
|
/external/parameter-framework/upstream/parameter/ |
D | DomainConfiguration.cpp | 85 " referred to by Configuration " + getPath() + in parseSettings() 125 xmlConfigurableElementSettingsElement.setAttribute("Path", pConfigurableElement->getPath()); in composeSettings() 146 " in Configuration " + getPath()); in importOneConfigurableElementSettings() 171 " " + destination->getName() + " for Configuration " + getPath()); in importOneConfigurableElementSettings() 265 return a + conf->getConfigurableElement()->getPath() + "\n"; in getElementSequence() 394 << getPath() << " since area configuration list does not have the same size" in validateAgainst() 469 return conf->getConfigurableElement()->getPath() == configurableElementPath; in findAreaConfigurationByPath()
|
D | Element.cpp | 164 childElement.getPath()); in fromXml() 313 childElement.getPath()); in createChild() 368 strChildList += pChild->getPath() + "\n"; in listChildrenPaths() 516 string CElement::getPath() const in getPath() function in CElement 521 return _pParent->getPath() + "/" + getPathName(); in getPath() 528 return getPath() + " [" + getKind() + "]"; in getQualifiedPath()
|
D | ElementHandle.cpp | 104 string ElementHandle::getPath() const in getPath() function in ElementHandle 106 return mElement.getPath(); in getPath() 348 error = "Can not set element " + getPath() + " as it is not a parameter."; in checkGetValidity() 355 error = "Can not get \"" + getPath() + "\" as " + toStr(asArray) + " because it is " + in checkGetValidity() 373 error = "Can not set parameter \"" + getPath() + "\" as it is not rogue."; in checkSetValidity() 380 error = "Array length mismatch for \"" + getPath() + "\", expected: " + in checkSetValidity()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | DexFileFactory.java | 89 return new DexEntryFinder(file.getPath(), container).findEntry("classes.dex", true); in loadDexFile() 135 …throw new UnsupportedFileTypeException("%s is not an apk, dex, odex or oat file.", file.getPath()); in loadDexFile() 186 return new DexEntryFinder(file.getPath(), container).findEntry(dexEntry, exactMatch); in loadDexEntry() 211 return new DexEntryFinder(file.getPath(), oatFile).findEntry(dexEntry, exactMatch); in loadDexEntry() 217 throw new UnsupportedFileTypeException("%s is not an apk or oat file.", file.getPath()); in loadDexEntry() 247 return new SingletonMultiDexContainer(file.getPath(), dexFile); in loadDexContainer() 254 return new SingletonMultiDexContainer(file.getPath(), odexFile); in loadDexContainer() 280 …throw new UnsupportedFileTypeException("%s is not an apk, dex, odex or oat file.", file.getPath()); in loadDexContainer()
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFileSystemEntryTest.groovy | 38 assertNull("path", entry.getPath()) 40 assert entry.getPath() == PATH 51 assertEquals("path", PATH, entry.getPath()) 53 assert entry.getPath() == ""
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/ |
D | Fs.java | 27 return new JarFs(new File(fixFileURL(url).getPath())); in fromJar() 34 return new File(u.getPath()).toURI(); in fixFileURL() 54 return new FileFsFile(new File(url.getPath())); in fromURL() 56 String[] parts = url.getPath().split("!", 0); in fromURL() 223 @Override public String getPath() { in getPath() method in Fs.JarFs.JarFsFile 255 return getPath(); in toString()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
D | ClassPath.java | 168 list.add(ext_dir.getPath() + File.separatorChar + extension); in getClassPath() 340 public String getPath( String name ) throws IOException { in getPath() method in ClassPath 347 return getPath(name, suffix); in getPath() 356 public String getPath( final String name, final String suffix ) throws IOException { in getPath() method in ClassPath 357 return getClassFile(name, suffix).getPath(); in getPath() 378 String getPath(); in getPath() method 441 public String getPath() { in getClassFile() method in ClassPath.Dir 522 public String getPath() {
|
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/command/ |
D | AbstractStoreFileCommandHandler.java | 83 LOG.error("Error writing to file [" + file.getPath() + "]", e); in handle() 84 throw new FileSystemException(file.getPath(), null, e); in handle() 90 LOG.error("Error closing OutputStream for file [" + file.getPath() + "]", e); in handle()
|
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/command/ |
D | AbstractStoreFileCommandHandler.java | 80 LOG.error("Error writing to file [" + file.getPath() + "]", e); in handle() 81 throw new FileSystemException(file.getPath(), null, e); in handle() 87 LOG.error("Error closing OutputStream for file [" + file.getPath() + "]", e); in handle()
|
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/command/ |
D | AbstractStoreFileCommandHandler.java | 83 LOG.error("Error writing to file [" + file.getPath() + "]", e); in handle() 84 throw new FileSystemException(file.getPath(), null, e); in handle() 90 LOG.error("Error closing OutputStream for file [" + file.getPath() + "]", e); in handle()
|
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/command/ |
D | AbstractStoreFileCommandHandler.java | 83 LOG.error("Error writing to file [" + file.getPath() + "]", e); in handle() 84 throw new FileSystemException(file.getPath(), null, e); in handle() 90 LOG.error("Error closing OutputStream for file [" + file.getPath() + "]", e); in handle()
|