HomeSort by relevance Sort by last modified time
    Searched defs:basePath (Results 1 - 25 of 26) sorted by null

1 2

  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
ClassLoaderResourceLoader.java 54 private String basePath;
56 public ClassLoaderResourceLoader(ClassLoader classLoader, String basePath) {
58 this.basePath = basePath;
67 String path = basePath + '/' + name;
77 + basePath + "'");
ClassResourceLoader.java 54 private final String basePath;
58 this.basePath = "/" + cls.getPackage().getName().replace('.', '/');
62 * Load resources from the given subdirectory {@code basePath},
65 public ClassResourceLoader(Class<?> cls, String basePath) {
67 this.basePath = basePath;
72 InputStream stream = cls.getResourceAsStream(basePath + '/' + name);
  /external/smali/util/src/main/java/org/jf/util/
PathUtil.java 47 public static String getRelativePath(String basePath, String pathToRelativize) throws IOException {
48 File baseFile = new File(basePath);
58 ArrayList<String> basePath = getPathComponents(canonicalBaseFile);
63 if (!basePath.get(0).equals(pathToRelativize.get(0))) {
70 for (commonDirs=1; commonDirs<basePath.size() && commonDirs<pathToRelativize.size(); commonDirs++) {
71 if (!basePath.get(commonDirs).equals(pathToRelativize.get(commonDirs))) {
77 for (int i=commonDirs; i<basePath.size(); i++) {
  /external/icu4c/test/intltest/
intltest.h 238 char basePath[1024];
  /external/smali/util/src/test/java/org/jf/util/
PathUtilTest.java 42 File basePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt");
45 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
55 File basePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt");
58 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
70 File basePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar);
73 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
82 File basePath = new File(roots[0] + "some" + File.separatorChar + "dir");
85 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
94 File basePath = new File(roots[0] + "some" + File.separatorChar + "dir");
97 String path = PathUtil.getRelativeFileInternal(basePath, relativePath)
    [all...]
  /external/webkit/Source/WebCore/page/
PageGroup.cpp 175 String basePath = "";
195 if (basePath.isEmpty())
196 basePath = p->settings()->localStorageDatabasePath();
227 if (!basePath.isEmpty()) {
228 Vector<String> files = listDirectory(basePath, "*.localstorage");
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterTypeSet.java 84 String basePath = "/filter/mediatype/" + mMediaType;
88 String filteredPath = basePath + "/{" + set.getPath().toString() + "}";
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 424 String basePath = null;
432 basePath = getFilesDir().getCanonicalPath();
434 basePath = getDatabasePath("foo").getParentFile().getCanonicalPath();
436 basePath = new File(getApplicationInfo().dataDir).getCanonicalPath();
438 basePath = getSharedPrefsFile("foo").getParentFile().getCanonicalPath();
440 basePath = getCacheDir().getCanonicalPath();
447 if (basePath != null) {
448 File outFile = new File(basePath, path);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 503 String basePath = p_base.getPath();
506 if (basePath != null)
508 int lastSlash = basePath.lastIndexOf('/');
512 path = basePath.substring(0, lastSlash + 1);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 523 String basePath = p_base.getPath();
526 if (basePath != null)
528 int lastSlash = basePath.lastIndexOf('/');
532 path = basePath.substring(0, lastSlash + 1);
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkStatsServiceTest.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPage.java 320 String basePath = mMediaSet.getPath().toString();
321 String newPath = FilterUtils.newClusterPath(basePath, clusterType);
AlbumSetPage.java 259 String basePath = mMediaSet.getPath().toString();
260 String newPath = FilterUtils.switchClusterPath(basePath, clusterType);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
org.eclipse.equinox.common_3.6.0.v20100503.jar 
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.6.0.v20100503.jar 
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
pdebuild.jar 

Completed in 265 milliseconds

1 2