Searched refs:fullPath (Results 1 - 25 of 97) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dsvn-unapply146 my $fullPath = $diffHashRef->{indexPath};
150 $directoriesToCheck{dirname($fullPath)} = 1;
160 if (basename($fullPath) eq "ChangeLog") {
161 my $changeLogDotOrigExisted = -f "${fullPath}.orig";
163 unapplyPatch(unsetChangeLogDate($fullPath, $changeLogHash->{patch}), $fullPath, ["--fuzz=3"]);
164 unlink("${fullPath}.orig") if (! $changeLogDotOrigExisted);
166 unapplyPatch($patch, $fullPath);
171 my $escapedFullPath = escapeSubversionPath($fullPath);
175 unlink($fullPath) i
[all...]
H A Dsvn-apply226 my ($fullPath, $contents) = @_;
232 open FILE, ">", $fullPath or die "Failed to open $fullPath.";
235 if (!scmKnowsOfFile($fullPath)) {
237 scmAdd($fullPath);
241 scmRemove($fullPath);
247 my ($fullPath, $diffHashRef) = @_;
251 my ($binaryChunkType, $binaryChunk, $reverseBinaryChunkType, $reverseBinaryChunk) = decodeGitBinaryPatch($contents, $fullPath);
257 if (open FILE, $fullPath) {
258 die "$fullPath alread
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DEntryBase.cpp43 EntryBase::EntryBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 , m_fullPath(fullPath)
46 , m_name(DOMFilePath::getName(fullPath))
H A DDirectoryReaderSync.h50 static PassRefPtr<DirectoryReaderSync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
52 return adoptRef(new DirectoryReaderSync(fileSystem, fullPath));
58 DirectoryReaderSync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDirectoryReader.cpp41 DirectoryReader::DirectoryReader(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
42 : DirectoryReaderBase(fileSystem, fullPath)
H A DFileEntrySync.cpp40 FileEntrySync::FileEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
41 : EntrySync(fileSystem, fullPath)
H A DDirectoryReader.h49 static PassRefPtr<DirectoryReader> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
51 return adoptRef(new DirectoryReader(fileSystem, fullPath));
59 DirectoryReader(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DFileEntry.h44 static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
46 return adoptRef(new FileEntry(fileSystem, fullPath));
55 FileEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DFileEntrySync.h47 static PassRefPtr<FileEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
49 return adoptRef(new FileEntrySync(fileSystem, fullPath));
59 FileEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDirectoryReaderBase.h47 DirectoryReaderBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
49 , m_fullPath(fullPath)
H A DDirectoryReaderSync.cpp44 DirectoryReaderSync::DirectoryReaderSync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 : DirectoryReaderBase(fileSystem, fullPath)
H A DFileEntry.cpp42 FileEntry::FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
43 : Entry(fileSystem, fullPath)
H A DDirectoryEntry.h50 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
52 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
62 DirectoryEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDirectoryEntrySync.h48 static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
50 return adoptRef(new DirectoryEntrySync(fileSystem, fullPath));
61 DirectoryEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DEntryBase.h52 const String& fullPath() const { return m_fullPath; } function in class:WebCore::EntryBase
58 EntryBase(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDOMFileSystemBase.cpp113 return createFileSystemURL(entry->fullPath());
116 KURL DOMFileSystemBase::createFileSystemURL(const String& fullPath) const
118 ASSERT(DOMFilePath::isAbsolute(fullPath));
129 result.append(encodeWithURLEscapeSequences(fullPath.substring(1)));
133 // For regular types we can just append the entry's fullPath to the m_filesystemRootURL that should look like 'filesystem:<origin>/<typePrefix>'.
137 url.setPath(url.path() + encodeWithURLEscapeSequences(fullPath.substring(1)));
162 if (source->isDirectory() && isSameFileSystem && DOMFilePath::isParentOf(source->fullPath(), parent->fullPath()))
166 if (isSameFileSystem && (newName.isEmpty() || source->name() == newName) && DOMFilePath::getDirectory(source->fullPath()) == parent->fullPath())
[all...]
H A DEntrySync.cpp96 String parentPath = DOMFilePath::getDirectory(fullPath());
100 EntrySync::EntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
101 : EntryBase(fileSystem, fullPath)
/external/lzma/CPP/Windows/
H A DDLL.cpp77 TCHAR fullPath[MAX_PATH + 2]; local
78 DWORD size = ::GetModuleFileName(hModule, fullPath, MAX_PATH + 1);
81 result = fullPath;
93 wchar_t fullPath[MAX_PATH + 2]; local
94 DWORD size = ::GetModuleFileNameW(hModule, fullPath, MAX_PATH + 1);
97 result = fullPath;
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DFileSystemResourceLoader.java77 String fullPath;
79 fullPath = file.getCanonicalPath();
81 fullPath = file.getAbsolutePath();
83 return String.format("%s@%s", fullPath, file.lastModified());
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dentry_id_manager.js11 return entry.filesystem.name + ':' + entry.fullPath;
20 return fileSystemId + ':' + $String.slice(entry.fullPath, 1);
/external/skia/tools/skpdiff/
H A Dskpdiff_util.cpp192 SkString fullPath(PATH_MAX + 1);
193 if (realpath(path.c_str(), fullPath.writable_str()) == NULL) {
194 fullPath.reset();
196 return fullPath;
198 SkString fullPath(MAX_PATH);
199 if (_fullpath(fullPath.writable_str(), path.c_str(), MAX_PATH) == NULL) {
200 fullPath.reset();
202 return fullPath;
/external/icu4c/tools/toolutil/
H A Dpkg_gencmn.c407 char *fullPath = NULL; local
425 fullPath = pathToFullPath(filename, source);
438 files[fileCount].pathname=fullPath;
443 file=T_FileStream_open(fullPath, "rb");
445 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
452 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
461 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
511 char *fullPath; local
516 fullPath = uprv_malloc(newLength);
518 uprv_strcpy(fullPath, sourc
[all...]
/external/chromium_org/chrome/browser/resources/file_manager/js/
H A Ddirectory_tree.js25 if (changedDirectryPath === currentDirectoryItem.entry.fullPath) {
32 if (PathUtil.isParentPath(item.entry.fullPath, changedDirectryPath)) {
63 } else if (currentEntry.fullPath == currentElement.fullPath) {
68 } else if (currentEntry.fullPath < currentElement.fullPath) {
72 } else if (currentEntry.fullPath > currentElement.fullPath) {
123 entries[i]['label'] = PathUtil.getRootLabel(entries[i].fullPath);
143 item.fullPath,
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A Dinline-javascript-imports.py58 fullPath = os.path.join(importsDir, importFileName)
59 if not os.access(fullPath, os.F_OK):
63 importFile = open(fullPath, 'r')
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_gencmn.c386 char *fullPath = NULL; local
404 fullPath = pathToFullPath(filename, source);
418 files[fileCount].pathname=fullPath;
423 file=T_FileStream_open(fullPath, "rb");
425 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
432 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
441 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
494 char *fullPath; local
499 fullPath = uprv_malloc(newLength);
501 uprv_strcpy(fullPath, sourc
[all...]

Completed in 488 milliseconds

1234