Home
last modified time | relevance | path

Searched refs:getPath (Results 1 – 25 of 433) sorted by relevance

12345678910>>...18

/external/deqp/framework/delibs/decpp/
DdeFilePath.cpp153 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/
DDeviceFilesystem.java50 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()
96 if (fileString.equals(dir.getPath() + ": No such file or directory")) { in ls()
99 if (fileString.equals(dir.getPath())) { in ls()
DAndroidSdk.java175 desugarJarPath = desugarJar.getPath(); in createAndroidSdk()
411 builder.args("--bootclasspath_entry", f.getPath()); in desugar()
417 builder.args("--classpath_entry", f.getPath()); in desugar()
432 "outputTempDir must be a directory: " + outputTempDir.getPath()); in desugar()
435 String desugarTempDirPath = outputTempDir.getPath() + "/desugar"; in desugar()
457 String desugarOutputPath = desugarTempDir.getPath() + "/" + tmpName; in desugar()
460 builder.args("-i", desugarInput.getPath()) in desugar()
472 "-F", apk.getPath(), in packageApk()
473 "-M", manifest.getPath(), in packageApk()
480 new Command(log, "aapt", "add", "-k", apk.getPath(), dex.getPath()).execute(); in addToApk()
[all …]
DAdbTarget.java76 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()
DDeviceFileCache.java72 new Command(log, "adb", "shell", "mv", temporary.getPath(), cachedFile.getPath()).execute(); in mv()
77 new Command(log, "adb", "shell", "cat", source.getPath(), ">", temporary.getPath()) in cp()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/res/
DFileFsFileTest.java33 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/
Dllvm-ar.cpp359 (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/
DSshTarget.java69 .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/
DBasicPathHandler.java66 "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/
DConfigFiles.hpp52 mConfigFile(format(mConfigTemplate, {{"structurePath", mStructureFile.getPath()},
53 {"domainsPath", mDomainsFile.getPath()},
58 std::string getPath() { return mConfigFile.getPath(); } in getPath() function in parameterFramework::ConfigFiles
/external/parameter-framework/upstream/parameter/
DDomainConfiguration.cpp85 " 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()
DElementHandle.cpp104 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()
DElement.cpp163 childElement.getPath()); in fromXml()
309 childElement.getPath()); in createChild()
364 strChildList += pChild->getPath() + "\n"; in listChildrenPaths()
512 string CElement::getPath() const in getPath() function in CElement
517 return _pParent->getPath() + "/" + getPathName(); in getPath()
524 return getPath() + " [" + getKind() + "]"; in getQualifiedPath()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DDexFileFactory.java89 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/
DAbstractFileSystemEntryTest.groovy38 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/
DFs.java27 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("!"); in fromURL()
210 @Override public String getPath() { in getPath() method in Fs.JarFs.JarFsFile
237 return getPath(); in toString()
/external/libmojo/base/android/java/src/org/chromium/base/
DPathUtils.java102 sDataDirectorySuffix, Context.MODE_PRIVATE).getPath(); in setPrivateDataDirectorySuffixInternal()
104 THUMBNAIL_DIRECTORY_NAME, Context.MODE_PRIVATE).getPath(); in setPrivateDataDirectorySuffixInternal()
107 paths[CACHE_DIRECTORY] = appContext.getCacheDir().getPath(); in setPrivateDataDirectorySuffixInternal()
192 Environment.DIRECTORY_DOWNLOADS).getPath(); in getDownloadsDirectory()
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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.1/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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.5/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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.2/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java83 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()

12345678910>>...18