HomeSort by relevance Sort by last modified time
    Searched full:rootpath (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/guava/guava-tests/test/com/google/common/collect/
BstPathTest.java 37 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/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));
  /external/jmonkeyengine/engine/src/android/com/jme3/asset/plugins/
AndroidLocator.java 14 private String rootPath = "";
64 public void setRootPath(String rootPath) {
65 this.rootPath = rootPath;
71 String assetPath = rootPath + key.getName();
  /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/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
ZipLocator.java 70 public void setRootPath(String rootPath) {
72 zipfile = new ZipFile(new File(rootPath), ZipFile.OPEN_READ);
74 throw new AssetLoadException("Failed to open zip file: " + rootPath, ex);
FileLocator.java 47 public void setRootPath(String rootPath) {
48 if (rootPath == null)
52 root = new File(rootPath).getCanonicalFile();
ClasspathLocator.java 55 public void setRootPath(String rootPath) {
56 this.root = rootPath;
UrlLocator.java 57 public void setRootPath(String rootPath) {
59 this.root = new URL(rootPath);
  /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);
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)
WebFileSystemCallbacksImpl.h 60 virtual void didOpenFileSystem(const WebString& name, const WebString& rootPath);
  /frameworks/base/core/jni/
android_app_backup_FullBackup.cpp 69 * rootpath: prefix to be snipped from full path when encoding in tar
85 String8 rootpath(rootchars ? rootchars : "");
104 if (path.length() < rootpath.length()) {
106 path.string(), rootpath.string());
110 return write_tarfile(packageName, domain, rootpath, path, writer);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetLocator.java 42 * @param rootPath The root path where to look for assets.
46 public void setRootPath(String rootPath);
AssetConfig.java 82 String rootPath = scan.next();
85 manager.registerLocator(rootPath, locatorClass);
121 String rootPath = readString(dataIn);
122 manager.registerLocator(rootPath, locatorClazz);
ImplHandler.java 189 public void addLocator(final Class<?> locatorType, String rootPath){
190 ImplThreadLocal local = new ImplThreadLocal(locatorType, rootPath);
196 public void removeLocator(final Class<?> locatorType, String rootPath){
201 if (locator.getPath().equals(rootPath) &&
AssetManager.java 81 * @param rootPath The root path from which to locate assets, implementation
86 public void registerLocator(String rootPath, String locatorClassName);
104 * @param rootPath Specifies the root path from which to locate assets
113 public void registerLocator(String rootPath, Class<? extends AssetLocator> locatorClass);
119 * @param rootPath Should be the same as the root path specified in {@link
123 public void unregisterLocator(String rootPath, Class<? extends AssetLocator> locatorClass);
DesktopAssetManager.java 146 public void registerLocator(String rootPath, Class<? extends AssetLocator> locatorClass){
147 handler.addLocator(locatorClass, rootPath);
154 public void registerLocator(String rootPath, String clsName){
164 registerLocator(rootPath, clazz);
168 public void unregisterLocator(String rootPath, Class<? extends AssetLocator> clazz){
169 handler.removeLocator(clazz, 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);
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 360 String rootpath = null; local
363 rootpath = dbDir;
366 rootpath = spDir;
369 rootpath = filesDir;
372 rootpath = mainDir;
375 rootpath = efDir;
383 + " rootpath=" + rootpath);
384 FullBackup.backupToTar(getPackageName(), domain, null, rootpath, filePath, local
396 protected final void fullBackupFileTree(String packageName, String domain, String rootPath,
    [all...]
  /packages/apps/Email/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;
  /frameworks/support/v4/java/android/support/v4/content/
FileProvider.java 353 final String rootPath = root.getValue().getPath();
354 if (path.startsWith(rootPath) && (mostSpecific == null
355 || rootPath.length() > mostSpecific.getValue().getPath().length())) {
366 final String rootPath = mostSpecific.getValue().getPath();
367 if (rootPath.endsWith("/")) {
368 path = path.substring(rootPath.length());
370 path = path.substring(rootPath.length() + 1);
  /external/webkit/Source/WebKit/chromium/public/
WebFileSystemCallbacks.h 61 virtual void didOpenFileSystem(const WebString& name, const WebString& rootPath) = 0;

Completed in 1442 milliseconds

1 2 3