Searched defs:fullPath (Results 1 - 25 of 31) sorted by relevance

12

/external/webkit/Source/WebCore/fileapi/
H A DDirectoryReader.cpp43 DirectoryReader::DirectoryReader(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
44 : DirectoryReaderBase(fileSystem, fullPath)
H A DDirectoryReaderSync.cpp47 DirectoryReaderSync::DirectoryReaderSync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
48 : DirectoryReaderBase(fileSystem, fullPath)
H A DDirectoryReaderSync.h46 static PassRefPtr<DirectoryReaderSync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
48 return adoptRef(new DirectoryReaderSync(fileSystem, fullPath));
54 DirectoryReaderSync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DFileEntrySync.cpp41 FileEntrySync::FileEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
42 : EntrySync(fileSystem, fullPath)
H A DDirectoryEntry.h52 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
54 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
64 DirectoryEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDirectoryEntrySync.h49 static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
51 return adoptRef(new DirectoryEntrySync(fileSystem, fullPath));
62 DirectoryEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDirectoryReader.h50 static PassRefPtr<DirectoryReader> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
52 return adoptRef(new DirectoryReader(fileSystem, fullPath));
60 DirectoryReader(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DEntryBase.cpp46 EntryBase::EntryBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
48 , m_fullPath(fullPath)
49 , m_name(DOMFilePath::getName(fullPath))
H A DFileEntry.cpp44 FileEntry::FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 : Entry(fileSystem, fullPath)
H A DFileEntry.h46 static PassRefPtr<FileEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
48 return adoptRef(new FileEntry(fileSystem, fullPath));
57 FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath);
H A DFileEntrySync.h48 static PassRefPtr<FileEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
50 return adoptRef(new FileEntrySync(fileSystem, fullPath));
60 FileEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DDirectoryEntry.cpp44 DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 : Entry(fileSystem, fullPath)
H A DDirectoryEntrySync.cpp44 DirectoryEntrySync::DirectoryEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
45 : EntrySync(fileSystem, fullPath)
H A DDirectoryReaderBase.h49 DirectoryReaderBase(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
51 , m_fullPath(fullPath)
H A DEntry.cpp49 Entry::Entry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
50 : EntryBase(fileSystem, fullPath)
H A DEntryBase.h55 const String& fullPath() const { return m_fullPath; } function in class:WebCore::EntryBase
61 EntryBase(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DEntrySync.cpp101 String parentPath = DOMFilePath::getDirectory(fullPath());
105 EntrySync::EntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) argument
106 : EntryBase(fileSystem, fullPath)
/external/webkit/Source/WebCore/storage/
H A DOriginUsageRecord.cpp42 void OriginUsageRecord::addDatabase(const String& identifier, const String& fullPath) argument
46 ASSERT_ARG(fullPath, fullPath.impl()->hasOneRef() || fullPath.isEmpty());
48 m_databaseMap.set(identifier, DatabaseEntry(fullPath));
H A DOriginQuotaManager.cpp87 void OriginQuotaManager::addDatabase(SecurityOrigin* origin, const String& databaseIdentifier, const String& fullPath) argument
94 usageRecord->addDatabase(databaseIdentifier.threadsafeCopy(), fullPath.threadsafeCopy());
/external/doclava/src/com/google/doclava/
H A DClearPage.java85 public static void write(Data data, String templ, String filename, boolean fullPath) { argument
89 public static void write(Data data, String templ, String filename, boolean fullPath, JSilver cs) { argument
112 if (!fullPath) {
/external/icu4c/tools/toolutil/
H A Dpkg_gencmn.c386 char *fullPath = NULL; local
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; local
499 fullPath = uprv_malloc(newLength);
501 uprv_strcpy(fullPath, sourc
[all...]
/external/webkit/Source/WebCore/platform/posix/
H A DFileSystemPOSIX.cpp193 CString fullPath = fileSystemRepresentation(path); local
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))
/external/webkit/Source/WebCore/platform/win/
H A DFileSystemWin.cpp115 String fullPath = path; local
116 if (SHCreateDirectoryEx(0, fullPath.charactersWithNullTermination(), 0) != ERROR_SUCCESS) {
/external/webkit/Source/WebKit/android/jni/
H A DWebIconDatabase.cpp173 WTF::CString fullPath = WebCore::pathByAppendingComponent(pathStr, local
177 if (access(fullPath.data(), F_OK) == 0) {
178 if (chmod(fullPath.data(), mode) == 0)
181 int fd = open(fullPath.data(), O_CREAT, mode);
193 LOGE("Failed to set permissions on '%s'", fullPath.data());
/external/webkit/Source/WebKit/win/
H A DDefaultDownloadDelegate.cpp128 BString fullPath; local
129 fullPath.adoptBSTR(full);
132 String debug((BSTR)fullPath, SysStringLen(BSTR(fullPath)));
136 if (FAILED(download->setDestination(fullPath, true))) {

Completed in 387 milliseconds

12