/external/chromium_org/third_party/skia/src/utils/ |
SkOSFile.cpp | 18 SkString SkOSPath::Basename(const char* fullPath) { 19 if (!fullPath) { 22 const char* filename = strrchr(fullPath, SkPATH_SEPARATOR); 24 filename = fullPath; 31 SkString SkOSPath::Dirname(const char* fullPath) { 32 if (!fullPath) { 35 const char* end = strrchr(fullPath, SkPATH_SEPARATOR); 39 if (end == fullPath) { 40 SkASSERT(fullPath[0] == SkPATH_SEPARATOR); 43 return SkString(fullPath, end - fullPath) [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
EntrySync.cpp | 84 String parentPath = DOMFilePath::getDirectory(fullPath()); 88 EntrySync::EntrySync(DOMFileSystemBase* fileSystem, const String& fullPath) 89 : EntryBase(fileSystem, fullPath)
|
EntrySync.h | 62 EntrySync(DOMFileSystemBase*, const String& fullPath);
|
DirectoryEntrySync.cpp | 43 DirectoryEntrySync::DirectoryEntrySync(DOMFileSystemBase* fileSystem, const String& fullPath) 44 : EntrySync(fileSystem, fullPath)
|
EntrySync.idl | 38 readonly attribute DOMString fullPath;
|
DOMFileSystemBase.cpp | 133 return createFileSystemURL(entry->fullPath()); 136 KURL DOMFileSystemBase::createFileSystemURL(const String& fullPath) const 138 ASSERT(DOMFilePath::isAbsolute(fullPath)); 149 result.append(encodeWithURLEscapeSequences(fullPath.substring(1))); 153 // For regular types we can just append the entry's fullPath to the m_filesystemRootURL that should look like 'filesystem:<origin>/<typePrefix>'. 157 url.setPath(url.path() + encodeWithURLEscapeSequences(fullPath.substring(1))); 166 path = DOMFilePath::append(base->fullPath(), path); 236 if (source->isDirectory() && isSameFileSystem && DOMFilePath::isParentOf(source->fullPath(), parent->fullPath())) 240 if (isSameFileSystem && (newName.isEmpty() || source->name() == newName) && DOMFilePath::getDirectory(source->fullPath()) == parent->fullPath() [all...] |
Entry.h | 62 Entry(DOMFileSystemBase*, const String& fullPath);
|
DirectoryReaderSync.cpp | 93 DirectoryReaderSync::DirectoryReaderSync(DOMFileSystemBase* fileSystem, const String& fullPath) 94 : DirectoryReaderBase(fileSystem, fullPath)
|
Entry.idl | 38 readonly attribute DOMString fullPath;
|
DirectoryReader.cpp | 86 DirectoryReader::DirectoryReader(DOMFileSystemBase* fileSystem, const String& fullPath) 87 : DirectoryReaderBase(fileSystem, fullPath)
|
/external/deqp/external/ |
fetch_sources.py | 31 fullPath = os.path.join(srcPath, entry) 33 if os.path.isfile(fullPath): 34 os.unlink(fullPath) 35 elif os.path.isdir(fullPath): 36 shutil.rmtree(fullPath, ignore_errors=False)
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
Interp.java | 109 public static String getTestsuiteDir(String fullPath, String fileName) { 110 return fullPath.substring(0, fullPath.length()-fileName.length());
|
/external/lzma/CPP/7zip/UI/Common/ |
ArchiveOpenCallback.cpp | 97 UString fullPath = _folderPrefix + name;
98 if (!_fileInfo.Find(fullPath))
104 if (!inFile->Open(fullPath))
|
ArchiveExtractCallback.cpp | 110 void CArchiveExtractCallback::CreateComplexDirectory(const UStringVector &dirPathParts, UString &fullPath)
112 fullPath = _directoryPath;
116 fullPath += wchar_t(NFile::NName::kDirDelimiter);
117 fullPath += dirPathParts[i];
118 NFile::NDirectory::MyCreateDirectory(fullPath);
160 UString fullPath;
163 RINOK(_arc->GetItemPath(index, fullPath));
166 _filePath = fullPath;
186 if (!_wildcardCensor->CheckPath(fullPath, !_fi.IsDir))
221 SplitPathToParts(fullPath, pathParts); [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
GeeTest.java | 115 String fullPath = NATIVE_TESTS_DIRECTORY + ANDROID_PATH_SEPARATOR + mExeName; 117 CLog.v("Running gtest %s %s on %s", fullPath, flags, mDevice.getSerialNumber()); 119 CLog.v("%s", mDevice.executeShellCommand(String.format("chmod 755 %s", fullPath))); 122 mDevice.executeShellCommand(String.format("%s %s", fullPath, flags), resultParser,
|
/external/chromium_org/extensions/renderer/resources/ |
entry_id_manager.js | 11 return entry.filesystem.name + ':' + entry.fullPath; 20 return fileSystemId + ':' + $String.slice(entry.fullPath, 1);
|
/external/chromium_org/ppapi/tests/extensions/media_galleries/ |
test.js | 23 'fullPath': '/test.jpg', 31 'fullPath': '/test.jpg',
|
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
ResourceLoaderAdaptor.java | 196 String fullPath; 198 fullPath = file.getCanonicalPath(); 200 fullPath = file.getAbsolutePath(); 202 return String.format("%s@%s", fullPath, file.lastModified());
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
image_writer_private_custom_bindings.js | 15 var relativePath = $String.slice(fileEntry.fullPath, 1);
|
developer_private_custom_bindings.js | 17 var relativePath = $String.slice(directoryEntry.fullPath, 1);
|
/external/chromium_org/third_party/skia/bench/ |
SkipZeroesBench.cpp | 55 SkString fullPath = SkOSPath::Join(resourcePath.c_str(), fFilename.c_str()); 56 SkFILEStream fileStream(fullPath.c_str());
|
/external/chromium_org/third_party/skia/include/core/ |
SkOSFile.h | 140 * Behaves like python's os.path.basename. If the fullPath is 142 * @param fullPath Full path to the file. 146 static SkString Basename(const char* fullPath); 150 * Behaves like python's os.path.dirname. If the fullPath is 152 * @param fullPath Full path to the file. 156 static SkString Dirname(const char* fullPath);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/ |
IsolatedFileSystem.js | 141 if (this._manager.mapping().isFileExcluded(this._path, entry.fullPath)) 143 fileCallback(entry.fullPath.substr(1)); 146 if (this._manager.mapping().isFileExcluded(this._path, entry.fullPath + "/")) 149 this._requestEntries(domFileSystem, entry.fullPath, innerCallback.bind(this)); 195 callback(entry.fullPath.substr(1)); 560 console.error(errorMessage + " when reading directory '" + dirEntry.fullPath + "'");
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
WebKitHitTestTest.java | 153 String fullPath = mWebServer.getResponseUrl("/hittest.html"); 157 pollForHitTestDataOnUiThread(HitTestResult.SRC_ANCHOR_TYPE, fullPath); 158 pollForHrefAndImageSrcOnUiThread(fullPath, ANCHOR_TEXT, null); 175 String fullPath = mWebServer.getResponseUrl(relPath); 179 pollForHitTestDataOnUiThread(HitTestResult.SRC_ANCHOR_TYPE, fullPath); 180 pollForHrefAndImageSrcOnUiThread(fullPath, ANCHOR_TEXT, null); 289 String fullPath = mWebServer.getResponseUrl(relPath); 296 pollForHrefAndImageSrcOnUiThread(fullPath, null, fullImageSrc);
|
/external/deqp/executor/tools/ |
xeCommandLineExecutor.cpp | 253 const std::string fullPath = child->getFullPath(); 255 if (checkCasePathPatternMatch(filter, fullPath.c_str(), isGroup)) 277 const std::string fullPath = child->getFullPath(); 279 if (checkCasePathPatternMatch(filter, fullPath.c_str(), isGroup)) 362 std::string fullPath; 364 testCase->getFullPath(fullPath); 367 if (batchResult.hasTestCaseResult(fullPath.c_str())) 369 xe::ConstTestCaseResultPtr resultData = batchResult.getTestCaseResult(fullPath.c_str());
|