HomeSort by relevance Sort by last modified time
    Searched refs:fullPath (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Tools/Scripts/
svn-unapply 146 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) if (-e $fullPath)
    [all...]
svn-apply 226 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 already exists" if $isFileAddition
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DirectoryReaderSync.h 50 static PassRefPtr<DirectoryReaderSync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
52 return adoptRef(new DirectoryReaderSync(fileSystem, fullPath));
58 DirectoryReaderSync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
EntryBase.cpp 43 EntryBase::EntryBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
45 , m_fullPath(fullPath)
46 , m_name(DOMFilePath::getName(fullPath))
DirectoryReader.h 49 static PassRefPtr<DirectoryReader> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
51 return adoptRef(new DirectoryReader(fileSystem, fullPath));
59 DirectoryReader(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
FileEntry.h 44 static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
46 return adoptRef(new FileEntry(fileSystem, fullPath));
55 FileEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
FileEntrySync.h 47 static PassRefPtr<FileEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
49 return adoptRef(new FileEntrySync(fileSystem, fullPath));
59 FileEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DirectoryReader.cpp 41 DirectoryReader::DirectoryReader(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
42 : DirectoryReaderBase(fileSystem, fullPath)
DirectoryReaderBase.h 47 DirectoryReaderBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
49 , m_fullPath(fullPath)
FileEntrySync.cpp 40 FileEntrySync::FileEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
41 : EntrySync(fileSystem, fullPath)
DirectoryEntry.h 50 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
52 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
62 DirectoryEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DirectoryEntrySync.h 48 static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
50 return adoptRef(new DirectoryEntrySync(fileSystem, fullPath));
61 DirectoryEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DirectoryReaderSync.cpp 44 DirectoryReaderSync::DirectoryReaderSync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
45 : DirectoryReaderBase(fileSystem, fullPath)
EntryBase.h 52 const String& fullPath() const { return m_fullPath; }
58 EntryBase(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
FileEntry.cpp 42 FileEntry::FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
43 : Entry(fileSystem, fullPath)
DOMFileSystemBase.cpp 113 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...]
EntrySync.cpp 96 String parentPath = DOMFilePath::getDirectory(fullPath());
100 EntrySync::EntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
101 : EntryBase(fileSystem, fullPath)
  /external/lzma/CPP/Windows/
DLL.cpp 77 TCHAR fullPath[MAX_PATH + 2];
78 DWORD size = ::GetModuleFileName(hModule, fullPath, MAX_PATH + 1);
81 result = fullPath;
93 wchar_t fullPath[MAX_PATH + 2];
94 DWORD size = ::GetModuleFileNameW(hModule, fullPath, MAX_PATH + 1);
97 result = fullPath;
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
FileSystemResourceLoader.java 77 String fullPath;
79 fullPath = file.getCanonicalPath();
81 fullPath = file.getAbsolutePath();
83 return String.format("%s@%s", fullPath, file.lastModified());
  /frameworks/base/tools/aapt/
FileFinder.cpp 60 String8 fullPath = basePath.appendPathCopy(entryName);
62 if (isDirectory(fullPath.string()) ) {
64 findFiles(fullPath, extensions, fileStore,copy);
69 if (isFile(fullPath.string()) ) {
70 checkAndAddFile(fullPath,dw->entryStats(),extensions,fileStore);
  /external/skia/tools/skpdiff/
skpdiff_util.cpp 192 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/
pkg_gencmn.c 407 char *fullPath = NULL;
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;
516 fullPath = uprv_malloc(newLength);
518 uprv_strcpy(fullPath, source)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
inline-javascript-imports.py 58 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/
pkg_gencmn.c 386 char *fullPath = NULL;
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;
499 fullPath = uprv_malloc(newLength);
501 uprv_strcpy(fullPath, source)
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTest.java 105 String fullPath = NATIVE_TESTS_DIRECTORY + File.separator + mExeName;
107 CLog.v("Running gtest %s %s on %s", fullPath, flags, mDevice.getSerialNumber());
109 CLog.v("%s", mDevice.executeShellCommand(String.format("chmod 755 %s", fullPath)));
112 mDevice.executeShellCommand(String.format("%s %s", fullPath, flags), resultParser,

Completed in 1144 milliseconds

1 2 3 4 5 6