/external/webkit/Source/WebCore/platform/ |
AsyncFileSystem.cpp | 64 String rootPath = basePath; 65 rootPath.append(PlatformFilePathSeparator); 66 rootPath += storageIdentifier; 67 rootPath.append(PlatformFilePathSeparator); 68 rootPath += typeString; 69 rootPath.append(PlatformFilePathSeparator); 71 callbacks->didOpenFileSystem(name, AsyncFileSystem::create(type, rootPath));
|
AsyncFileSystem.h | 69 static PassOwnPtr<AsyncFileSystem> create(Type, const String& rootPath);
|
/external/qemu/android/utils/ |
dirscanner.h | 20 /* Create a new directory scanner object from a given rootPath. 23 DirScanner* dirScanner_new ( const char* rootPath );
|
dirscanner.c | 151 dirScanner_new ( const char* rootPath ) 157 p = bufprint(p, end, "%s", rootPath);
|
/external/webkit/Source/WebCore/html/ |
FileInputType.cpp | 171 String rootPath = directoryName(paths[0]); 173 while (!paths[i].startsWith(rootPath)) 174 rootPath = directoryName(rootPath); 176 rootPath = directoryName(rootPath); 177 ASSERT(rootPath.length()); 180 String relativePath = paths[i].substring(1 + rootPath.length()).replace('\\', '/');
|
/external/webkit/Source/WebKit/chromium/public/ |
WebFileSystemCallbacks.h | 61 virtual void didOpenFileSystem(const WebString& name, const WebString& rootPath) = 0;
|
/external/webkit/Source/WebKit/chromium/src/ |
AsyncFileSystemChromium.h | 49 static PassOwnPtr<AsyncFileSystem> create(AsyncFileSystem::Type type, const String& rootPath) 51 return adoptPtr(new AsyncFileSystemChromium(type, rootPath)); 69 AsyncFileSystemChromium(AsyncFileSystem::Type, const String& rootPath);
|
WorkerAsyncFileSystemChromium.h | 55 static PassOwnPtr<AsyncFileSystem> create(ScriptExecutionContext* context, AsyncFileSystem::Type type, const String& rootPath, bool synchronous) 57 return adoptPtr(new WorkerAsyncFileSystemChromium(context, type, rootPath, synchronous)); 78 WorkerAsyncFileSystemChromium(ScriptExecutionContext*, AsyncFileSystem::Type, const String& rootPath, bool synchronous);
|
WebFileSystemCallbacksImpl.h | 60 virtual void didOpenFileSystem(const WebString& name, const WebString& rootPath);
|
AsyncFileSystemChromium.cpp | 53 AsyncFileSystemChromium::AsyncFileSystemChromium(AsyncFileSystem::Type type, const String& rootPath) 54 : AsyncFileSystem(type, rootPath) 148 virtual void didOpenFileSystem(const WebKit::WebString& name, const WebKit::WebString& rootPath)
|
WorkerFileSystemCallbacksBridge.h | 101 void didOpenFileSystemOnMainThread(const String& name, const String& rootPath, const String& mode); 126 static void didOpenFileSystemOnWorkerThread(WebCore::ScriptExecutionContext*, WorkerFileSystemCallbacksBridge*, const String& name, const String& rootPath);
|
WorkerFileSystemCallbacksBridge.cpp | 282 void WorkerFileSystemCallbacksBridge::didOpenFileSystemOnMainThread(const String& name, const String& rootPath, const String& mode) 284 mayPostTaskToWorker(createCallbackTask(&didOpenFileSystemOnWorkerThread, this, name, rootPath), mode); 321 void WorkerFileSystemCallbacksBridge::didOpenFileSystemOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge, const String& name, const String& rootPath) 323 bridge->m_callbacksOnWorkerThread->didOpenFileSystem(name, rootPath);
|
WorkerAsyncFileSystemChromium.cpp | 59 WorkerAsyncFileSystemChromium::WorkerAsyncFileSystemChromium(ScriptExecutionContext* context, AsyncFileSystem::Type type, const String& rootPath, bool synchronous) 60 : AsyncFileSystem(type, rootPath)
|
/external/eyes-free/AccessCheck/src/com/android/accessibility/ |
AccessibilityValidator.java | 73 public AccessibilityValidator(String rootPath, String androidSdkPath) { 74 mRootFilePath = new File(rootPath); 79 + rootPath);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
ProjectState.java | 190 String rootPath = mProperties.getProperty(propName); 192 if (rootPath == null) { 196 mLibraries.add(new LibraryState(convertPath(rootPath))); 275 String rootPath = mProperties.getProperty(propName); 277 if (rootPath == null) { 283 String convertedPath = convertPath(rootPath); 590 String rootPath = mProperties.getProperty(propName); 592 if (rootPath == null) { 596 if (rootPath.equals(oldValue)) {
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/util/ |
SimpleTempStorage.java | 44 private TempPath rootPath = null;
51 rootPath = new SimpleTempPath(System.getProperty("java.io.tmpdir"));
118 return rootPath;
|
/sdk/anttasks/src/com/android/ant/ |
NewSetupTask.java | 441 Path rootPath = new Path(antProject); 465 PathElement element = rootPath.createPathElement(); 522 antProject.addReference(mProjectLibrariesRootOut, rootPath); 601 String rootPath = source.getProperty(propName); 603 if (rootPath == null) { 608 File library = new File(baseFolder, rootPath).getCanonicalFile(); 615 "%1$s resolve to a path with no %2$s file for project %3$s", rootPath, 621 baseFolder.getAbsolutePath(), rootPath, library.getAbsolutePath())); 626 throw new BuildException("Failed to resolve library path: " + rootPath, e);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
RenderScriptProcessor.java | 311 String rootPath = project.getLocation().toOSString(); 312 int rootPathLength = rootPath.length(); 325 if (filePath.startsWith(rootPath) == false) { 483 String rootPath = project.getLocation().toOSString(); 484 int rootPathLength = rootPath.length(); 489 if (p.startsWith(rootPath)) {
|
/frameworks/base/include/utils/ |
BackupHelpers.h | 138 const String8& rootPath, const String8& filePath, BackupDataWriter* outputStream);
|
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 305 String rootpath = null; local 308 rootpath = dbDir; 311 rootpath = spDir; 314 rootpath = filesDir; 317 rootpath = mainDir; 325 + " rootpath=" + rootpath); 326 FullBackup.backupToTar(getPackageName(), domain, null, rootpath, filePath, local 338 protected final void fullBackupFileTree(String packageName, String domain, String rootPath, 340 File rootFile = new File(rootPath); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ExportHelper.java | 334 String rootPath = rootDirectory.getAbsolutePath(); 336 path = path.substring(rootPath.length()).replace("\\", "/"); //$NON-NLS-1$ //$NON-NLS-2$
|
/external/webkit/Tools/DumpRenderTree/win/ |
LayoutTestControllerWin.cpp | 693 WCHAR rootPath[MAX_PATH]; 694 DWORD rootPathSize = _countof(rootPath); 696 DWORD result = ::SHGetValueW(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Cygnus Solutions\\Cygwin\\mounts v2\\/"), TEXT("native"), &keyType, &rootPath, &rootPathSize); 702 result = ::SHGetValueW(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Cygwin\\setup"), TEXT("rootdir"), &keyType, &rootPath, &rootPathSize); 707 windowsPath = wstring(rootPath, rootPathSize); [all...] |
/external/qemu/android/avd/ |
info.c | 283 * Otherwise, this returns a new string corresponding to <rootPath>/<fileName> 288 _getFullFilePath( const char* rootPath, const char* fileName ) 295 p = bufprint(temp, end, "%s/%s", rootPath, fileName); [all...] |
/external/qemu/android/ |
main.c | 114 _getFullFilePath( const char* rootPath, const char* fileName ) 121 p = bufprint(temp, end, "%s/%s", rootPath, fileName); [all...] |
/prebuilt/common/tradefed/ |
tradefed-prebuilt.jar | |