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

12345

/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/webrtc/modules/audio_coding/codecs/isac/main/util/
H A Dutility.h21 #define OPEN_FILE_WB(filePtr, fullPath) \
24 if(fullPath != NULL) \
26 filePtr = fopen(fullPath, "wb"); \
29 printf("could not open %s to write to.", fullPath); \
39 #define OPEN_FILE_AB(filePtr, fullPath) \
42 if(fullPath != NULL) \
44 filePtr = fopen(fullPath, "ab"); \
47 printf("could not open %s to write to.", fullPath); \
57 #define OPEN_FILE_RB(filePtr, fullPath) \
60 if(fullPath !
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DEntryBase.cpp40 EntryBase::EntryBase(DOMFileSystemBase* fileSystem, const String& fullPath) argument
42 , m_fullPath(fullPath)
43 , m_name(DOMFilePath::getName(fullPath))
H A DFileEntry.h46 static FileEntry* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
48 return new FileEntry(fileSystem, fullPath);
59 FileEntry(DOMFileSystemBase*, const String& fullPath);
H A DFileEntrySync.h47 static FileEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
49 return new FileEntrySync(fileSystem, fullPath);
60 FileEntrySync(DOMFileSystemBase*, const String& fullPath);
H A DFileEntry.cpp42 FileEntry::FileEntry(DOMFileSystemBase* fileSystem, const String& fullPath) argument
43 : Entry(fileSystem, fullPath)
H A DFileEntrySync.cpp40 FileEntrySync::FileEntrySync(DOMFileSystemBase* fileSystem, const String& fullPath) argument
41 : EntrySync(fileSystem, fullPath)
H A DDirectoryEntry.h50 static DirectoryEntry* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
52 return new DirectoryEntry(fileSystem, fullPath);
64 DirectoryEntry(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryEntrySync.h47 static DirectoryEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
49 return new DirectoryEntrySync(fileSystem, fullPath);
61 DirectoryEntrySync(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryReader.h48 static DirectoryReader* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
50 return new DirectoryReader(fileSystem, fullPath);
65 DirectoryReader(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryReaderSync.h50 static DirectoryReaderSync* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
52 return new DirectoryReaderSync(fileSystem, fullPath);
75 DirectoryReaderSync(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryReaderBase.h53 DirectoryReaderBase(DOMFileSystemBase* fileSystem, const String& fullPath) argument
55 , m_fullPath(fullPath)
H A DEntryBase.h52 const String& fullPath() const { return m_fullPath; } function in class:blink::EntryBase
60 EntryBase(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryEntry.cpp42 DirectoryEntry::DirectoryEntry(DOMFileSystemBase* fileSystem, const String& fullPath) argument
43 : Entry(fileSystem, fullPath)
H A DEntry.cpp46 Entry::Entry(DOMFileSystemBase* fileSystem, const String& fullPath) argument
47 : 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/chromium_org/third_party/angle/
H A Denumerate_files.py47 fullPath = os.path.join(root, file).replace("\\", "/") variable
49 if fnmatch.fnmatchcase(fullPath, type):
52 if fnmatch.fnmatchcase(fullPath, exclude):
57 files.append(fullPath)
/external/deqp/scripts/build/
H A Dcommon.py49 fullPath = os.path.join(path, binName)
50 if os.path.isfile(fullPath) and os.access(fullPath, os.X_OK):
51 return 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/extensions/renderer/resources/
H A Dentry_id_manager.js11 return entry.filesystem.name + ':' + entry.fullPath;
20 return fileSystemId + ':' + $String.slice(entry.fullPath, 1);
/external/chromium_org/third_party/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/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/chromium_org/third_party/icu/source/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/icu/icu4c/source/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...]

Completed in 1147 milliseconds

12345