HomeSort by relevance Sort by last modified time
    Searched refs:fullPath (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/webkit/Source/WebCore/fileapi/
DirectoryEntry.cpp 44 DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
45 : Entry(fileSystem, fullPath)
DirectoryEntrySync.cpp 44 DirectoryEntrySync::DirectoryEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
45 : EntrySync(fileSystem, fullPath)
EntrySync.idl 40 readonly attribute DOMString fullPath;
Entry.h 61 Entry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
EntrySync.h 61 EntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
Entry.cpp 49 Entry::Entry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
50 : EntryBase(fileSystem, fullPath)
DOMFileSystem.cpp 107 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
150 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
Entry.idl 40 readonly attribute DOMString fullPath;
DOMFileSystemSync.cpp 159 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
246 String platformPath = m_asyncFileSystem->virtualToPlatformPath(fileEntry->fullPath());
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 193 CString fullPath = fileSystemRepresentation(path);
194 if (!access(fullPath.data(), F_OK))
197 char* p = fullPath.mutableData() + 1;
198 int length = fullPath.length();
205 if (access(fullPath.data(), F_OK))
206 if (mkdir(fullPath.data(), S_IRWXU))
210 if (access(fullPath.data(), F_OK))
211 if (mkdir(fullPath.data(), S_IRWXU))
  /frameworks/base/tools/aapt/
DirectoryWalker.h 80 String8 fullPath = mBasePath.appendPathCopy(mEntry.d_name);
81 stat(fullPath.string(),&mStats);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
Interp.java 109 public static String getTestsuiteDir(String fullPath, String fileName) {
110 return fullPath.substring(0, fullPath.length()-fileName.length());
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 196 String fullPath;
198 fullPath = file.getCanonicalPath();
200 fullPath = file.getAbsolutePath();
202 return String.format("%s@%s", fullPath, file.lastModified());
  /external/webkit/Source/WebCore/storage/
OriginQuotaManager.h 55 void addDatabase(SecurityOrigin*, const String& databaseIdentifier, const String& fullPath);
OriginUsageRecord.h 47 void addDatabase(const String& identifier, const String& fullPath);
OriginQuotaManager.cpp 87 void OriginQuotaManager::addDatabase(SecurityOrigin* origin, const String& databaseIdentifier, const String& fullPath)
94 usageRecord->addDatabase(databaseIdentifier.threadsafeCopy(), fullPath.threadsafeCopy());
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeSymbolResolverTask.java 254 String fullPath = p + File.separator + pathOnDevice;
255 if (new File(fullPath).exists()) {
256 return fullPath;
260 fullPath = p + File.separator + libName;
261 if (new File(fullPath).exists()) {
262 return fullPath;
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.cpp 186 WTF::CString fullPath = WebCore::pathByAppendingComponent(pathStr,
190 if (access(fullPath.data(), F_OK) == 0) {
191 if (chmod(fullPath.data(), mode) == 0)
194 int fd = open(fullPath.data(), O_CREAT, mode);
206 ALOGE("Failed to set permissions on '%s'", fullPath.data());
  /external/webkit/Source/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/Tools/Scripts/
VCSUtils.pm 415 my ($fullPath) = @_;
417 if ($fullPath =~ m|^WebCore/|
418 || $fullPath =~ m|^JavaScriptCore/|
419 || $fullPath =~ m|^WebKit/|
420 || $fullPath =~ m|^WebKit2/|) {
421 return "Source/$fullPath";
423 return $fullPath;
490 my ($fullPath) = @_;
492 open SVN, "svn status --non-interactive --non-recursive '$fullPath' |" or die;
493 if (-d $fullPath) {
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 793 String fullPath;
810 fullPath = pathByAppendingComponent(flatFileDirectory, path);
811 resource->setPath(fullPath);
820 if (!fullPath.isEmpty())
821 deleteFile(fullPath);
    [all...]
  /external/doclava/src/com/google/doclava/
ClearPage.java 85 public static void write(Data data, String templ, String filename, boolean fullPath) {
89 public static void write(Data data, String templ, String filename, boolean fullPath, JSilver cs) {
112 if (!fullPath) {
  /external/webkit/Source/WebCore/plugins/win/
PluginDatabaseWin.cpp 144 String fullPath = *it + "\\" + filename;
145 if (!uniqueFilenames.add(fullPath).second)
148 paths.add(fullPath);
151 oldWMPPluginPath = fullPath;
153 newWMPPluginPath = fullPath;
  /external/chromium/chrome/browser/resources/file_manager/js/
harness.js 104 writer.onerror = util.flog('Error writing: ' + currentDest.fullPath);
106 console.log('Wrote: ' + currentDest.fullPath);
120 currentDest.fullPath));
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLParser.h 127 URLComponent fullPath;
137 fullPath = URLComponent();
139 fullPath = URLComponent(authEnd, specLength - authEnd);
143 parsePath(spec, fullPath, parsed.path, parsed.query, parsed.fragment);

Completed in 1366 milliseconds

12 3 4