Home
last modified time | relevance | path

Searched refs:rootPath (Results 1 – 25 of 27) sorted by relevance

12

/external/guava/guava-tests/test/com/google/common/collect/
DBstPathTest.java37 SimplePath rootPath = new SimplePath(root, null); in testTailAtRoot() local
38 assertFalse(rootPath.hasPrefix()); in testTailAtRoot()
39 assertNull(rootPath.prefixOrNull()); in testTailAtRoot()
41 rootPath.getPrefix(); in testTailAtRoot()
49 SimplePath rootPath = new SimplePath(root, null); in testTailDown() local
50 SimplePath nodePath = new SimplePath(node, rootPath); in testTailDown()
52 assertEquals(rootPath, nodePath.prefixOrNull()); in testTailDown()
53 assertEquals(rootPath, nodePath.getPrefix()); in testTailDown()
/external/jmonkeyengine/engine/src/android/com/jme3/asset/plugins/
DAndroidLocator.java14 private String rootPath = ""; field in AndroidLocator
64 public void setRootPath(String rootPath) { in setRootPath() argument
65 this.rootPath = rootPath; in setRootPath()
71 String assetPath = rootPath + key.getName(); in locate()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DFileInputType.cpp219 String rootPath = directoryName(files[0].path); in createFileList() local
221 while (!files[i].path.startsWith(rootPath)) in createFileList()
222 rootPath = directoryName(rootPath); in createFileList()
224 rootPath = directoryName(rootPath); in createFileList()
225 ASSERT(rootPath.length()); in createFileList()
226 int rootLength = rootPath.length(); in createFileList()
227 if (rootPath[rootLength - 1] != '\\' && rootPath[rootLength - 1] != '/') in createFileList()
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
DZipLocator.java70 public void setRootPath(String rootPath) { in setRootPath() argument
72 zipfile = new ZipFile(new File(rootPath), ZipFile.OPEN_READ); in setRootPath()
74 throw new AssetLoadException("Failed to open zip file: " + rootPath, ex); in setRootPath()
DFileLocator.java47 public void setRootPath(String rootPath) { in setRootPath() argument
48 if (rootPath == null) in setRootPath()
52 root = new File(rootPath).getCanonicalFile(); in setRootPath()
DUrlLocator.java57 public void setRootPath(String rootPath) { in setRootPath() argument
59 this.root = new URL(rootPath); in setRootPath()
DClasspathLocator.java55 public void setRootPath(String rootPath) { in setRootPath() argument
56 this.root = rootPath; in setRootPath()
DHttpZipLocator.java61 private String rootPath = ""; field in HttpZipLocator
339 if (!rootPath.equals(path)){
340 rootPath = path;
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
DAssetManager.java86 public void registerLocator(String rootPath, String locatorClassName); in registerLocator() argument
113 public void registerLocator(String rootPath, Class<? extends AssetLocator> locatorClass); in registerLocator() argument
123 public void unregisterLocator(String rootPath, Class<? extends AssetLocator> locatorClass); in unregisterLocator() argument
DImplHandler.java189 public void addLocator(final Class<?> locatorType, String rootPath){ in addLocator() argument
190 ImplThreadLocal local = new ImplThreadLocal(locatorType, rootPath); in addLocator()
196 public void removeLocator(final Class<?> locatorType, String rootPath){ in removeLocator() argument
201 if (locator.getPath().equals(rootPath) && in removeLocator()
DDesktopAssetManager.java146 public void registerLocator(String rootPath, Class<? extends AssetLocator> locatorClass){ in registerLocator() argument
147 handler.addLocator(locatorClass, rootPath); in registerLocator()
154 public void registerLocator(String rootPath, String clsName){ in registerLocator() argument
164 registerLocator(rootPath, clazz); in registerLocator()
168 public void unregisterLocator(String rootPath, Class<? extends AssetLocator> clazz){ in unregisterLocator() argument
169 handler.removeLocator(clazz, rootPath); in unregisterLocator()
DAssetConfig.java82 String rootPath = scan.next(); in loadText() local
85 manager.registerLocator(rootPath, locatorClass); in loadText()
DAssetLocator.java46 public void setRootPath(String rootPath); in setRootPath() argument
/external/chromium_org/chrome/browser/resources/file_manager/common/js/
Dpath_util.js412 var rootPath;
418 rootPath = volumeInfo.mountPath + '/root';
422 rootPath = volumeInfo.mountPath + '/other';
429 rootPath = volumeInfo.mountPath;
438 var isRootEntry = (fullPath.substr(0, rootPath.length) || '/') === fullPath;
/external/eyes-free/AccessCheck/src/com/android/accessibility/
DAccessibilityValidator.java73 public AccessibilityValidator(String rootPath, String androidSdkPath) { in AccessibilityValidator() argument
74 mRootFilePath = new File(rootPath); in AccessibilityValidator()
79 + rootPath); in AccessibilityValidator()
/external/qemu/android/utils/
Ddirscanner.c151 dirScanner_new ( const char* rootPath ) in dirScanner_new() argument
157 p = bufprint(p, end, "%s", rootPath); in dirScanner_new()
Ddirscanner.h23 DirScanner* dirScanner_new ( const char* rootPath );
/external/skia/src/utils/
DSkOSFile.cpp9 SkString SkOSPath::SkPathJoin(const char *rootPath, const char *relativePath) { in SkPathJoin() argument
10 SkString result(rootPath); in SkPathJoin()
/external/chromium_org/third_party/skia/src/utils/
DSkOSFile.cpp9 SkString SkOSPath::SkPathJoin(const char *rootPath, const char *relativePath) { in SkPathJoin() argument
10 SkString result(rootPath); in SkPathJoin()
/external/chromium_org/third_party/skia/include/core/
DSkOSFile.h147 static SkString SkPathJoin(const char *rootPath, const char *relativePath);
/external/skia/include/core/
DSkOSFile.h147 static SkString SkPathJoin(const char *rootPath, const char *relativePath);
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
Ddirectory_model.js180 var rootPath = this.getCurrentRootPath();
182 if (PathUtil.getRootType(rootPath) == RootType.DRIVE ||
183 PathUtil.isSpecialSearchRoot(rootPath))
186 return util.makeFilesystemUrl(rootPath);
Dfile_tasks.js665 var rootPath = PathUtil.getRootPath(currentDir.fullPath);
667 PathUtil.getRootLabel(rootPath) :
668 PathUtil.basename(rootPath);
/external/qemu/android/avd/
Dinfo.c260 _getFullFilePath( const char* rootPath, const char* fileName ) in _getFullFilePath() argument
267 p = bufprint(temp, end, "%s/%s", rootPath, fileName); in _getFullFilePath()
/external/qemu/android/
Dmain.c114 _getFullFilePath( const char* rootPath, const char* fileName ) in _getFullFilePath() argument
121 p = bufprint(temp, end, "%s/%s", rootPath, fileName); in _getFullFilePath()

12