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

1 2

  /external/webkit/WebKitTools/Scripts/
svn-unapply 176 my $fullPath = $1;
177 $directoriesToCheck{dirname($fullPath)} = 1;
189 if (basename($fullPath) eq "ChangeLog") {
190 my $changeLogDotOrigExisted = -f "${fullPath}.orig";
191 unapplyPatch(unsetChangeLogDate($fullPath, fixChangeLogPatch($patch)), $fullPath, ["--fuzz=3"]);
192 unlink("${fullPath}.orig") if (! $changeLogDotOrigExisted);
194 unapplyPatch($patch, $fullPath);
201 unlink($fullPath) if (-e $fullPath);
    [all...]
svn-apply 258 my ($fullPath, $contents) = @_;
264 open FILE, ">", $fullPath or die "Failed to open $fullPath.";
267 if (!scmKnowsOfFile($fullPath)) {
269 scmAdd($fullPath);
273 scmRemove($fullPath);
279 my ($fullPath, $contents) = @_;
281 my ($binaryChunkType, $binaryChunk, $reverseBinaryChunkType, $reverseBinaryChunk) = decodeGitBinaryPatch($contents, $fullPath);
289 if (open FILE, $fullPath) {
290 die "$fullPath already exists" if $isFileAddition
    [all...]
VCSUtils.pm 334 my ($fullPath) = @_;
336 open SVN, "svn status --non-interactive --non-recursive '$fullPath' |" or die;
337 if (-d $fullPath) {
342 my $normalizedFullPath = File::Spec->catdir(File::Spec->splitdir($fullPath));
907 my ($contents, $fullPath) = @_;
918 die "$fullPath: unexpected size of a line: $&" if length($2) % 5 != 0;
923 die "$fullPath: unexpected size of a line: $&" if int(($expectedSize + 3) / 4) * 4 != $actualSize;
935 my ($contents, $fullPath) = @_;
948 die "$fullPath: unknown git binary patch format"
958 my $binaryChunk = decodeGitBinaryChunk($encodedChunk, $fullPath);
    [all...]
  /external/chromium/net/third_party/nss/ssl/bodge/
genload.c 145 char* fullPath = NULL;
155 fullPath = PR_GetLibraryFilePathname(NameOfThisSharedLib,
158 if (fullPath) {
159 lib = loader_LoadLibInReferenceDir(fullPath, nameToLoad);
163 * If fullPath is a symbolic link, resolve the symbolic
166 char* originalfullPath = loader_GetOriginalPathname(fullPath);
168 PR_Free(fullPath);
169 fullPath = originalfullPath;
170 lib = loader_LoadLibInReferenceDir(fullPath, nameToLoad);
174 PR_Free(fullPath);
    [all...]
  /external/webkit/WebCore/platform/posix/
FileSystemPOSIX.cpp 126 CString fullPath = fileSystemRepresentation(path);
127 if (!access(fullPath.data(), F_OK))
130 char* p = fullPath.mutableData() + 1;
131 int length = fullPath.length();
138 if (access(fullPath.data(), F_OK))
139 if (mkdir(fullPath.data(), S_IRWXU))
143 if (access(fullPath.data(), F_OK))
144 if (mkdir(fullPath.data(), S_IRWXU))
  /external/webkit/WebCore/storage/
OriginUsageRecord.cpp 42 void OriginUsageRecord::addDatabase(const String& identifier, const String& fullPath)
46 ASSERT_ARG(fullPath, fullPath.impl()->refCount() == 1);
48 m_databaseMap.set(identifier, DatabaseEntry(fullPath));
OriginQuotaManager.h 53 void addDatabase(SecurityOrigin*, const String& databaseIdentifier, const String& fullPath);
OriginUsageRecord.h 47 void addDatabase(const String& identifier, const String& fullPath);
OriginQuotaManager.cpp 75 void OriginQuotaManager::addDatabase(SecurityOrigin* origin, const String& databaseIdentifier, const String& fullPath)
82 usageRecord->addDatabase(databaseIdentifier.threadsafeCopy(), fullPath.threadsafeCopy());
DatabaseTracker.cpp 729 String fullPath = fullPathForDatabase(origin, name, false);
730 if (fullPath.isEmpty())
761 return SQLiteFileSystem::deleteDatabaseFile(fullPath);
  /external/chromium/third_party/icu/source/tools/toolutil/
pkg_gencmn.c 384 char *fullPath = NULL;
398 fullPath = pathToFullPath(filename, source);
412 files[fileCount].pathname=fullPath;
417 file=T_FileStream_open(fullPath, "rb");
419 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
426 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
435 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
488 char *fullPath;
493 fullPath = uprv_malloc(newLength);
495 uprv_strcpy(fullPath, source)
    [all...]
  /external/icu4c/tools/toolutil/
pkg_gencmn.c 384 char *fullPath = NULL;
398 fullPath = pathToFullPath(filename, source);
412 files[fileCount].pathname=fullPath;
417 file=T_FileStream_open(fullPath, "rb");
419 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
426 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
435 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
488 char *fullPath;
493 fullPath = uprv_malloc(newLength);
495 uprv_strcpy(fullPath, source)
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
InspectorClientGtk.cpp 101 GOwnPtr<gchar> fullPath(g_strdup_printf("%s/WebCore/inspector/front-end/inspector.html", currentDirectory.get()));
102 inspectorURI.set(g_filename_to_uri(fullPath.get(), NULL, NULL));
120 GOwnPtr<gchar> fullPath(g_strdup_printf("%s/WebCore/English.lproj/localizedStrings.js", currentDirectory.get()));
121 URL.set(g_filename_to_uri(fullPath.get(), NULL, NULL));
  /frameworks/base/cmds/rawbu/
backup.cpp 254 char* fullPath = NULL;
281 if (fullPath == NULL) {
282 free(fullPath);
284 fullPath = (char*)malloc(srcLen + strlen(de->d_name) + 2);
285 strcpy(fullPath, srcPath);
286 fullPath[srcLen] = '/';
287 strcpy(fullPath+srcLen+1, de->d_name);
292 if (strcmp(SKIP_PATHS[i].path, fullPath) == 0) {
301 int ret = lstat(fullPath, &statBuffer);
305 fullPath, strerror(errno))
    [all...]
  /external/junit/src/junit/swingui/
TestSuitePanel.java 161 Object[] fullPath= new Object[vpath.size()+1];
162 vpath.copyInto(fullPath);
163 fullPath[vpath.size()]= fModel.getChild(treePath.getLastPathComponent(), index);;
164 TreePath fullTreePath= new TreePath(fullPath);
  /external/webkit/WebKit/android/jni/
WebIconDatabase.cpp 143 WebCore::CString fullPath = WebCore::pathByAppendingComponent(pathStr,
147 if (access(fullPath.data(), F_OK) == 0) {
148 if (chmod(fullPath.data(), mode) == 0)
151 int fd = open(fullPath.data(), O_CREAT, mode);
163 LOGE("Failed to set permissions on '%s'", fullPath.data());
  /external/webkit/WebKit/win/
DefaultDownloadDelegate.cpp 128 BString fullPath;
129 fullPath.adoptBSTR(full);
132 String debug((BSTR)fullPath, SysStringLen(BSTR(fullPath)));
136 if (FAILED(download->setDestination(fullPath, true))) {
  /external/webkit/WebCore/plugins/win/
PluginDatabaseWin.cpp 146 String fullPath = *it + "\\" + filename;
147 if (!uniqueFilenames.add(fullPath).second)
150 paths.add(fullPath);
153 oldWMPPluginPath = fullPath;
155 newWMPPluginPath = fullPath;
  /build/tools/droiddoc/src/
ClearPage.java 78 public static void write(HDF data, String templ, String filename, boolean fullPath)
102 if (!fullPath) {
  /hardware/ril/mock-ril/src/cpp/
js_support.cpp 145 char * fullPath = new char[fullPathLength];
146 strncpy(fullPath, directory, fullPathLength);
147 strncat(fullPath, fileName, fullPathLength);
148 return fullPath;
  /external/emma/core/java12/com/vladium/util/
IPathEnumerator.java 265 final String fullPath = m_canonical ? Files.canonicalizePathname (path.getPath ()) : path.getPath ();
267 if (m_pathSet.add (fullPath))
  /external/qemu/distrib/sdl-1.2.12/src/loadso/macosx/
SDL_dlcompat.c 233 static const struct stat *findFile(const char *file, const char **fullPath);
444 static const struct stat *findFile(const char *file, const char **fullPath)
450 *fullPath = file;
458 while ((*fullPath = getFullPath(i++, fileName)))
460 if (0 == stat(*fullPath, &sbuf))
970 const char *fullPath;
979 if (!(sbuf = findFile(path, &fullPath)))
1003 dls = loadModule(fullPath, sbuf, mode);
    [all...]
  /external/webkit/WebCore/platform/win/
FileSystemWin.cpp 113 String fullPath = path;
114 if (SHCreateDirectoryEx(0, fullPath.charactersWithNullTermination(), 0) != ERROR_SUCCESS) {
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 598 StringBuilder fullPath = new StringBuilder(sdPath);
600 fullPath.append(File.separatorChar).append(subdirectory);
605 file = File.createTempFile("DMTEST_", null, new File(fullPath.toString()));
608 fullPath.append(File.separatorChar).append(filename);
609 file = new File(fullPath.toString());
    [all...]
  /frameworks/base/libs/utils/
AssetManager.cpp     [all...]

Completed in 837 milliseconds

1 2