Searched refs:basePath (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DAsyncFileSystem.cpp49 void AsyncFileSystem::openFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType, bool, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
55 void AsyncFileSystem::deleteFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
H A DAsyncFileSystem.h67 static void openFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType, bool create, PassOwnPtr<AsyncFileSystemCallbacks>);
70 static void deleteFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType, PassOwnPtr<AsyncFileSystemCallbacks>);
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DLocalFileSystem.cpp52 void LocalFileSystem::initializeLocalFileSystem(const String& basePath) argument
60 OwnPtr<LocalFileSystem> localFileSystem = adoptPtr(new LocalFileSystem(basePath));
76 static void openFileSystem(ScriptExecutionContext*, const String& basePath, const String& identifier, FileSystemType type, bool create, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
78 AsyncFileSystem::openFileSystem(basePath, identifier, type, create, callbacks);
81 static void performDeleteFileSystem(ScriptExecutionContext*, const String& basePath, const String& identifier, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
83 AsyncFileSystem::deleteFileSystem(basePath, identifier, type, callbacks);
H A DLocalFileSystem.h70 explicit LocalFileSystem(const String& basePath) argument
71 : m_basePath(basePath)
H A DFileSystemCallbacks.h90 static PassOwnPtr<EntriesCallbacks> create(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
95 EntriesCallbacks(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
H A DFileSystemCallbacks.cpp105 PassOwnPtr<EntriesCallbacks> EntriesCallbacks::create(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) argument
107 return adoptPtr(new EntriesCallbacks(successCallback, errorCallback, directoryReader, basePath));
110 EntriesCallbacks::EntriesCallbacks(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) argument
114 , m_basePath(basePath)
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DParsedURL.js146 var basePath = parsedURL.path;
148 // Trim off the query part of the basePath.
149 var questionMarkIndex = basePath.indexOf("?");
151 basePath = basePath.substring(0, questionMarkIndex);
152 // A href of "?foo=bar" implies "basePath?foo=bar".
153 // With "basePath?a=b" and "?foo=bar" we should get "basePath?foo=bar".
156 var basePathCutIndex = basePath.indexOf("?");
158 prefix = basePath
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DAsyncFileSystemBlackBerry.cpp53 void AsyncFileSystem::openFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType, bool, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
55 UNUSED_PARAM(basePath);
61 void AsyncFileSystemBlackBerry::openFileSystem(const KURL& rootURL, const String& basePath, const String& storageIdentifier, FileSystemType type, long long size, bool create, int playerId, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
63 BlackBerry::Platform::WebFileSystem::openFileSystem(BlackBerry::Platform::webKitThreadMessageClient(), basePath, storageIdentifier, static_cast<BlackBerry::Platform::WebFileSystem::Type>(type), size, create, new PlatformAsyncFileSystemCallbacks(callbacks, rootURL), playerId); local
66 void AsyncFileSystem::deleteFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
68 BlackBerry::Platform::WebFileSystem::deleteFileSystem(BlackBerry::Platform::webKitThreadMessageClient(), basePath, storageIdentifier, static_cast<BlackBerry::Platform::WebFileSystem::Type>(type), new PlatformAsyncFileSystemCallbacks(callbacks)); local
H A DWorkerAsyncFileSystemBlackBerry.h44 static void openFileSystem(WorkerContext*, const KURL& rootURL, const String& mode, const String& basePath, const String& storageIdentifier, FileSystemType, long long size, bool create, PassOwnPtr<AsyncFileSystemCallbacks>);
45 static void deleteFileSystem(WorkerContext*, const String& mode, const String& basePath, const String& storageIdentifier, FileSystemType, PassOwnPtr<AsyncFileSystemCallbacks>);
63 static void openFileSystemOnMainThread(ScriptExecutionContext*, const String& basePath, const String& storageIdentifier, FileSystemType, long long size, bool create, WorkerPlatformAsyncFileSystemCallbacks*);
64 static void deleteFileSystemOnMainThread(ScriptExecutionContext*, const String& basePath, const String& storageIdentifier, FileSystemType, WorkerPlatformAsyncFileSystemCallbacks*);
H A DWorkerAsyncFileSystemBlackBerry.cpp62 void WorkerAsyncFileSystemBlackBerry::openFileSystemOnMainThread(ScriptExecutionContext*, const String& basePath, const String& storageIdentifier, FileSystemType type, long long size, bool create, WorkerPlatformAsyncFileSystemCallbacks* callbacks) argument
64 WebFileSystem::openFileSystem(webKitThreadMessageClient(), basePath, storageIdentifier, static_cast<WebFileSystem::Type>(type), size, create, callbacks, 0); local
67 void WorkerAsyncFileSystemBlackBerry::deleteFileSystemOnMainThread(ScriptExecutionContext*, const String& basePath, const String& storageIdentifier, FileSystemType type, WorkerPlatformAsyncFileSystemCallbacks* callbacks) argument
69 WebFileSystem::deleteFileSystem(webKitThreadMessageClient(), basePath, storageIdentifier, static_cast<WebFileSystem::Type>(type), callbacks); local
132 void WorkerAsyncFileSystemBlackBerry::openFileSystem(WorkerContext* context, const KURL& rootURL, const String& mode, const String& basePath, const String& storageIdentifier, FileSystemType type, long long size, bool create, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
135 postTaskToMainThread(createCallbackTask(&WorkerAsyncFileSystemBlackBerry::openFileSystemOnMainThread, basePath, storageIdentifier, type, size, create, new WorkerPlatformAsyncFileSystemCallbacks(callbacks, context, mode, rootURL)));
138 void WorkerAsyncFileSystemBlackBerry::deleteFileSystem(WorkerContext* context, const String& mode, const String& basePath, const String& storageIdentifier, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
141 postTaskToMainThread(createCallbackTask(&WorkerAsyncFileSystemBlackBerry::deleteFileSystemOnMainThread, basePath, storageIdentifier, type, new WorkerPlatformAsyncFileSystemCallbacks(callbacks, context, mode)));
H A DLocalFileSystemBlackBerry.cpp72 static void openFileSystem(ScriptExecutionContext* context, const String& basePath, FileSystemType type, long long size, bool create, PassOwnPtr<AsyncFileSystemCallbacks> callbacks, FileSystemSynchronousType synchronousType) argument
98 AsyncFileSystemBlackBerry::openFileSystem(rootURL, basePath, context->securityOrigin()->databaseIdentifier(), type, size, create, playerId, callbacks);
104 WorkerAsyncFileSystemBlackBerry::openFileSystem(workerContext, rootURL, mode, basePath, context->securityOrigin()->databaseIdentifier(), type, size, create, callbacks);
H A DAsyncFileSystemBlackBerry.h51 static void openFileSystem(const KURL& rootURL, const String& basePath, const String& storageIdentifier, FileSystemType, long long size, bool create, int playerId, PassOwnPtr<AsyncFileSystemCallbacks>);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/linux/SeccompFilters/
H A DSyscallPolicy.cpp58 char* basePath = strdup(path); local
59 char* canonicalPath = canonicalize_file_name(basePath);
64 free(basePath);
74 free(basePath);
87 char* currentBaseDirectory = dirname(basePath);
97 free(basePath);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A Dmakegrammar.pl51 my ($filename, $basePath, $suffix) = fileparse($grammarFilePath, (".y", ".y.in"));
56 $grammarIncludesFilePath = "${basePath}${filename}.y.includes";
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DAsyncFileSystemGtk.cpp43 void AsyncFileSystem::openFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType, bool, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
49 void AsyncFileSystem::deleteFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) argument
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dintltest.cpp535 strcpy(basePath, "/");
559 strcpy(testToBeCalled.basePath, this->basePath );
560 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath );
561 strcpy(testToBeCalled.basePath, this->basePath ); // reset it.
698 if ((char *)this->basePath != baseName) {
699 strcpy(this->basePath, baseName);
H A Dintltest.h287 char basePath[1024]; member in class:IntlTest
/macosx-10.9.5/kext_tools-326.95.1/
H A Dmkextunpack_main.c83 const char * basePath,
1223 const char * basePath,
1236 if (strlcpy(path, basePath, sizeof(path)) >= sizeof(path)) {
1239 "Output path is too long - %s.", basePath);
1222 writeFileInDirectory( const char * basePath, char * subPath, const char * fileName, const char * fileData, size_t fileLength) argument
/macosx-10.9.5/CF-855.17/
H A DCFURL.c327 static CFStringRef _resolveFileSystemPaths(CFStringRef relativePath, CFStringRef basePath, Boolean baseIsDir, CFURLPathStyle fsType, CFAllocatorRef alloc);
4095 static CFStringRef _resolveFileSystemPaths(CFStringRef relativePath, CFStringRef basePath, Boolean baseIsDir, CFURLPathStyle fsType, CFAllocatorRef alloc) { argument
4096 CFIndex baseLen = CFStringGetLength(basePath);
4100 CFStringGetCharacters(basePath, CFRangeMake(0, baseLen), buf);
4219 CFStringRef basePath = base ? CFURLCreateStringWithFileSystemPath(allocator, base, fsType, false) : NULL; local
4266 if ( basePath && (CFStringGetCharacterAtIndex(relPath, 0) != '/') ) {
4267 // we have both basePath and relPath, and relPath is not absolute -- resolve them
4268 CFStringRef result = _resolveFileSystemPaths(relPath, basePath, CFURLHasDirectoryPath(base), fsType, allocator);
4269 CFRelease(basePath);
4275 if ( basePath ) {
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/kext.subproj/
H A DOSKext.c556 CFStringRef basePath,
583 CFStringRef basePath);
2437 CFStringRef basePath = NULL; // do not release local
2506 basePath = CFDictionaryGetValue(cacheDict,
2508 if (!basePath ||
2509 CFStringGetTypeID() != CFGetTypeID(basePath)) {
2553 cacheDict, basePath, i);
2605 CFStringRef basePath,
2643 /* options */ 0, CFSTR("%@/%@"), basePath, bundlePath);
3884 CFStringRef basePath local
2602 __OSKextCreateFromIdentifierCacheDict( CFAllocatorRef allocator, CFDictionaryRef cacheDict, CFStringRef basePath, CFIndex entryIndex) argument
3993 __OSKextCreateIdentifierCacheDict( OSKextRef aKext, CFStringRef basePath) argument
[all...]

Completed in 396 milliseconds