| /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/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/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/chromium_org/third_party/skia/include/core/ |
| SkOSFile.h | 140 * Assembles rootPath and relativePath into a single path, like this: 141 * rootPath/relativePath. 142 * It is okay to call with a NULL rootPath and/or relativePath. A path 147 static SkString SkPathJoin(const char *rootPath, const char *relativePath);
|
| /external/skia/include/core/ |
| SkOSFile.h | 140 * Assembles rootPath and relativePath into a single path, like this: 141 * rootPath/relativePath. 142 * It is okay to call with a NULL rootPath and/or relativePath. A path 147 static SkString SkPathJoin(const char *rootPath, const char *relativePath);
|
| /external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
| FileInputType.cpp | 219 String rootPath = directoryName(files[0].path); 221 while (!files[i].path.startsWith(rootPath)) 222 rootPath = directoryName(rootPath); 224 rootPath = directoryName(rootPath); 225 ASSERT(rootPath.length()); 226 int rootLength = rootPath.length(); 227 if (rootPath[rootLength - 1] != '\\' && rootPath[rootLength - 1] != '/' [all...] |
| /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);
|
| /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
| ExternalStorageProvider.java | 181 final String rootPath = root.getValue().getPath(); 182 if (path.startsWith(rootPath) && (mostSpecific == null 183 || rootPath.length() > mostSpecific.getValue().getPath().length())) { 194 final String rootPath = mostSpecific.getValue().getPath(); 195 if (rootPath.equals(path)) { 197 } else if (rootPath.endsWith("/")) { 198 path = path.substring(rootPath.length()); 200 path = path.substring(rootPath.length() + 1);
|
| /external/chromium_org/content/browser/fileapi/ |
| sandbox_file_system_backend_unittest.cc | 205 SCOPED_TRACE(testing::Message() << "RootPath (create) #" << i << " " 225 SCOPED_TRACE(testing::Message() << "RootPath (get) #" << i << " " 265 SCOPED_TRACE(testing::Message() << "RootPath (create=false) #" << i << " " 279 SCOPED_TRACE(testing::Message() << "RootPath (incognito) #" << i << " "
|
| /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/UnifiedEmail/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/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
| ProjectState.java | 194 String rootPath = mProperties.getProperty(propName); 196 if (rootPath == null) { 200 mLibraries.add(new LibraryState(convertPath(rootPath))); 304 String rootPath = mProperties.getProperty(propName); 306 if (rootPath == null) { 312 String convertedPath = convertPath(rootPath); 619 String rootPath = mProperties.getProperty(propName); 621 if (rootPath == null) { 625 if (rootPath.equals(oldValue)) {
|
| /external/chromium_org/third_party/skia/src/utils/ |
| SkOSFile.cpp | 9 SkString SkOSPath::SkPathJoin(const char *rootPath, const char *relativePath) { 10 SkString result(rootPath);
|
| /external/skia/src/utils/ |
| SkOSFile.cpp | 9 SkString SkOSPath::SkPathJoin(const char *rootPath, const char *relativePath) { 10 SkString result(rootPath);
|