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

1 2 3 4 5 6 7

  /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/webrtc/modules/audio_coding/codecs/isac/main/util/
utility.h 21 #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 != NULL)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
EntryBase.cpp 40 EntryBase::EntryBase(DOMFileSystemBase* fileSystem, const String& fullPath)
42 , m_fullPath(fullPath)
43 , m_name(DOMFilePath::getName(fullPath))
DirectoryEntrySync.h 47 static DirectoryEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath)
49 return new DirectoryEntrySync(fileSystem, fullPath);
61 DirectoryEntrySync(DOMFileSystemBase*, const String& fullPath);
DirectoryReader.h 48 static DirectoryReader* create(DOMFileSystemBase* fileSystem, const String& fullPath)
50 return new DirectoryReader(fileSystem, fullPath);
65 DirectoryReader(DOMFileSystemBase*, const String& fullPath);
DirectoryReaderSync.h 50 static DirectoryReaderSync* create(DOMFileSystemBase* fileSystem, const String& fullPath)
52 return new DirectoryReaderSync(fileSystem, fullPath);
75 DirectoryReaderSync(DOMFileSystemBase*, const String& fullPath);
FileEntry.h 46 static FileEntry* create(DOMFileSystemBase* fileSystem, const String& fullPath)
48 return new FileEntry(fileSystem, fullPath);
59 FileEntry(DOMFileSystemBase*, const String& fullPath);
FileEntrySync.h 47 static FileEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath)
49 return new FileEntrySync(fileSystem, fullPath);
60 FileEntrySync(DOMFileSystemBase*, const String& fullPath);
DirectoryReaderBase.h 53 DirectoryReaderBase(DOMFileSystemBase* fileSystem, const String& fullPath)
55 , m_fullPath(fullPath)
EntryBase.h 52 const String& fullPath() const { return m_fullPath; }
60 EntryBase(DOMFileSystemBase*, const String& fullPath);
FileEntry.cpp 42 FileEntry::FileEntry(DOMFileSystemBase* fileSystem, const String& fullPath)
43 : Entry(fileSystem, fullPath)
FileEntrySync.cpp 40 FileEntrySync::FileEntrySync(DOMFileSystemBase* fileSystem, const String& fullPath)
41 : EntrySync(fileSystem, fullPath)
DirectoryEntry.h 50 static DirectoryEntry* create(DOMFileSystemBase* fileSystem, const String& fullPath)
52 return new DirectoryEntry(fileSystem, fullPath);
64 DirectoryEntry(DOMFileSystemBase*, const String& fullPath);
DirectoryEntry.cpp 42 DirectoryEntry::DirectoryEntry(DOMFileSystemBase* fileSystem, const String& fullPath)
43 : Entry(fileSystem, fullPath)
Entry.cpp 46 Entry::Entry(DOMFileSystemBase* fileSystem, const String& fullPath)
47 : 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/chromium_org/third_party/angle/
enumerate_files.py 47 fullPath = os.path.join(root, file).replace("\\", "/")
49 if fnmatch.fnmatchcase(fullPath, type):
52 if fnmatch.fnmatchcase(fullPath, exclude):
57 files.append(fullPath)
  /external/deqp/scripts/build/
common.py 49 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/
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/chromium_org/third_party/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/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/chromium_org/third_party/icu/source/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/icu/icu4c/source/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...]

Completed in 458 milliseconds

1 2 3 4 5 6 7