Searched refs:rootPath (Results 1 - 25 of 41) sorted by relevance

12

/external/webkit/Source/WebCore/platform/
H A DAsyncFileSystem.cpp64 String rootPath = basePath; local
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));
H A DAsyncFileSystem.h69 static PassOwnPtr<AsyncFileSystem> create(Type, const String& rootPath);
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetLocator.java42 * @param rootPath The root path where to look for assets.
46 public void setRootPath(String rootPath); argument
H A DAssetManager.java81 * @param rootPath The root path from which to locate assets, implementation
86 public void registerLocator(String rootPath, String locatorClassName); argument
104 * @param rootPath Specifies the root path from which to locate assets
113 public void registerLocator(String rootPath, Class<? extends AssetLocator> locatorClass); argument
119 * @param rootPath Should be the same as the root path specified in {@link
123 public void unregisterLocator(String rootPath, Class<? extends AssetLocator> locatorClass); argument
H A DImplHandler.java189 public void addLocator(final Class<?> locatorType, String rootPath){ argument
190 ImplThreadLocal local = new ImplThreadLocal(locatorType, rootPath);
196 public void removeLocator(final Class<?> locatorType, String rootPath){ argument
201 if (locator.getPath().equals(rootPath) &&
H A DAssetConfig.java82 String rootPath = scan.next();
85 manager.registerLocator(rootPath, locatorClass);
121 String rootPath = readString(dataIn);
122 manager.registerLocator(rootPath, locatorClazz);
H A DDesktopAssetManager.java146 public void registerLocator(String rootPath, Class<? extends AssetLocator> locatorClass){ argument
147 handler.addLocator(locatorClass, rootPath);
154 public void registerLocator(String rootPath, String clsName){ argument
164 registerLocator(rootPath, clazz);
168 public void unregisterLocator(String rootPath, Class<? extends AssetLocator> clazz){ argument
169 handler.removeLocator(clazz, rootPath);
/external/guava/guava-tests/test/com/google/common/collect/
H A DBstPathTest.java37 SimplePath rootPath = new SimplePath(root, null);
38 assertFalse(rootPath.hasPrefix());
39 assertNull(rootPath.prefixOrNull());
41 rootPath.getPrefix();
49 SimplePath rootPath = new SimplePath(root, null);
50 SimplePath nodePath = new SimplePath(node, rootPath);
52 assertEquals(rootPath, nodePath.prefixOrNull());
53 assertEquals(rootPath, nodePath.getPrefix());
/external/qemu/android/utils/
H A Ddirscanner.h20 /* Create a new directory scanner object from a given rootPath.
23 DirScanner* dirScanner_new ( const char* rootPath );
H A Ddirscanner.c151 dirScanner_new ( const char* rootPath )
157 p = bufprint(p, end, "%s", rootPath);
/external/webkit/Source/WebCore/html/
H A DFileInputType.cpp171 String rootPath = directoryName(paths[0]); local
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/
H A DWebFileSystemCallbacks.h61 virtual void didOpenFileSystem(const WebString& name, const WebString& rootPath) = 0;
/external/jmonkeyengine/engine/src/android/com/jme3/asset/plugins/
H A DAndroidLocator.java14 private String rootPath = ""; field in class:AndroidLocator
64 public void setRootPath(String rootPath) { argument
65 this.rootPath = rootPath;
71 String assetPath = rootPath + key.getName();
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DFileLocator.java47 public void setRootPath(String rootPath) { argument
48 if (rootPath == null)
52 root = new File(rootPath).getCanonicalFile();
H A DZipLocator.java70 public void setRootPath(String rootPath) { argument
72 zipfile = new ZipFile(new File(rootPath), ZipFile.OPEN_READ);
74 throw new AssetLoadException("Failed to open zip file: " + rootPath, ex);
H A DUrlLocator.java57 public void setRootPath(String rootPath) { argument
59 this.root = new URL(rootPath);
H A DClasspathLocator.java55 public void setRootPath(String rootPath) { argument
56 this.root = rootPath;
H A DHttpZipLocator.java61 private String rootPath = ""; field in class:HttpZipLocator
339 if (!rootPath.equals(path)){
340 rootPath = path;
/external/webkit/Source/WebKit/chromium/src/
H A DAsyncFileSystemChromium.h49 static PassOwnPtr<AsyncFileSystem> create(AsyncFileSystem::Type type, const String& rootPath) argument
51 return adoptPtr(new AsyncFileSystemChromium(type, rootPath));
69 AsyncFileSystemChromium(AsyncFileSystem::Type, const String& rootPath);
H A DWorkerAsyncFileSystemChromium.h55 static PassOwnPtr<AsyncFileSystem> create(ScriptExecutionContext* context, AsyncFileSystem::Type type, const String& rootPath, bool synchronous) argument
57 return adoptPtr(new WorkerAsyncFileSystemChromium(context, type, rootPath, synchronous));
78 WorkerAsyncFileSystemChromium(ScriptExecutionContext*, AsyncFileSystem::Type, const String& rootPath, bool synchronous);
H A DWebFileSystemCallbacksImpl.h60 virtual void didOpenFileSystem(const WebString& name, const WebString& rootPath);
H A DAsyncFileSystemChromium.cpp53 AsyncFileSystemChromium::AsyncFileSystemChromium(AsyncFileSystem::Type type, const String& rootPath) argument
54 : AsyncFileSystem(type, rootPath)
148 virtual void didOpenFileSystem(const WebKit::WebString& name, const WebKit::WebString& rootPath) argument
H A DWorkerFileSystemCallbacksBridge.cpp282 void WorkerFileSystemCallbacksBridge::didOpenFileSystemOnMainThread(const String& name, const String& rootPath, const String& mode) argument
284 mayPostTaskToWorker(createCallbackTask(&didOpenFileSystemOnWorkerThread, this, name, rootPath), mode);
321 void WorkerFileSystemCallbacksBridge::didOpenFileSystemOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge, const String& name, const String& rootPath) argument
323 bridge->m_callbacksOnWorkerThread->didOpenFileSystem(name, rootPath);
H A DWorkerAsyncFileSystemChromium.cpp59 WorkerAsyncFileSystemChromium::WorkerAsyncFileSystemChromium(ScriptExecutionContext* context, AsyncFileSystem::Type type, const String& rootPath, bool synchronous) argument
60 : AsyncFileSystem(type, rootPath)
/external/eyes-free/AccessCheck/src/com/android/accessibility/
H A DAccessibilityValidator.java73 public AccessibilityValidator(String rootPath, String androidSdkPath) { argument
74 mRootFilePath = new File(rootPath);
79 + rootPath);

Completed in 396 milliseconds

12