Home
last modified time | relevance | path

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

12345678910>>...19

/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()
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()
DJackDexTask.java90 Jack jack = Jack.getJackCommand(run.log).outputDexZip(localDex.getPath()); in execute()
116 jack.importResource(resourcesDir.getPath()); in execute()
130 jack.importFile(classpathElement.getPath()); in addClassPathEntryToJack()
139 .args(run.javaPath("jar"), "xf", classpathEntry.getPath()) in unpackJar()
/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()
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()
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()
/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/mockftpserver/tags/2.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()
/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/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java80 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/
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.4/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.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()
/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.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/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/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/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/src/test/groovy/org/mockftpserver/fake/filesystem/
DAbstractFileSystemEntryTest.groovy39 assertNull("path", entry.getPath())
41 assert entry.getPath() == PATH
49 assertEquals("path", PATH, entry.getPath())
51 assert entry.getPath() == ""

12345678910>>...19