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

1 2 3 4

  /build/tools/droiddoc/templates-ds/assets/js/
docs.js 10 var basePath = getBaseUri(location.pathname);
11 var SITE_ROOT = toRoot + basePath.substring(1,basePath.indexOf("/",1));
727 var basePath = getBaseUri(location.pathname);
728 var section = basePath.substring(1,basePath.indexOf("/",1));
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
docs.js 10 var basePath = getBaseUri(location.pathname);
11 var SITE_ROOT = toRoot + basePath.substring(1,basePath.indexOf("/",1));
792 var basePath = getBaseUri(location.pathname);
793 var section = basePath.substring(1,basePath.indexOf("/",1));
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 11 var basePath = getBaseUri(location.pathname);
12 var SITE_ROOT = toRoot + basePath.substring(1,basePath.indexOf("/",1));
    [all...]
  /build/tools/droiddoc/templates-sdk-dyn/assets/js/
docs.js 11 var basePath = getBaseUri(location.pathname);
12 var SITE_ROOT = toRoot + basePath.substring(1,basePath.indexOf("/",1));
788 var basePath = getBaseUri(location.pathname);
789 var section = basePath.substring(1,basePath.indexOf("/",1));
    [all...]
  /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/chromium_org/third_party/icu/source/test/intltest/
intltest.h 316 char basePath[1024];
  /external/deqp/executor/tools/
xeExtractShaderPrograms.cpp 70 const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de::toString(programNdx);
75 const string shaderPath = basePath + "." + getShaderTypeSuffix(shader.shaderType);
  /external/icu/icu4c/source/test/intltest/
intltest.h 340 char basePath[1024];
  /external/jsoncpp/src/jsontestrunner/
main.cpp 260 std::string basePath = removeSuffix( argv[1], ".json" );
261 if ( !parseOnly && basePath.empty() )
267 std::string actualPath = basePath + ".actual";
268 std::string rewritePath = basePath + ".rewrite";
269 std::string rewriteActualPath = basePath + ".actual-rewrite";
  /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/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPIteratorImpl.java 80 XMPPath basePath = new XMPPath();
83 basePath.add(path.getSegment(i));
88 initialPath = basePath.toString();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterTypeSet.java 84 String basePath = "/filter/mediatype/" + mMediaType;
88 String filteredPath = basePath + "/{" + set.getPath().toString() + "}";
  /external/chromium_org/third_party/skia/src/ports/
SkFontMgr_android.cpp 129 void get_path_for_sys_fonts(const char* basePath, const SkString& name, SkString* full) {
130 if (basePath) {
131 full->set(basePath);
141 explicit SkFontStyleSet_Android(const FontFamily& family, const char* basePath) {
151 get_path_for_sys_fonts(basePath, fontFile.fFileName, &pathName);
279 const char* basePath)
283 this->buildNameToFamilyMap(fontFamilies, basePath);
477 void buildNameToFamilyMap(SkTDArray<FontFamily*> families, const char* basePath) {
491 SkFontStyleSet_Android* newSet = SkNEW_ARGS(SkFontStyleSet_Android, (family, basePath));
542 const char* basePath;
    [all...]
  /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/core/java/android/app/backup/
BackupAgent.java 520 String basePath = null;
528 basePath = getFilesDir().getCanonicalPath();
530 basePath = getDatabasePath("foo").getParentFile().getCanonicalPath();
532 basePath = new File(getApplicationInfo().dataDir).getCanonicalPath();
534 basePath = getSharedPrefsFile("foo").getParentFile().getCanonicalPath();
536 basePath = getCacheDir().getCanonicalPath();
542 basePath = getExternalFilesDir(null).getCanonicalPath();
547 basePath = getNoBackupFilesDir().getCanonicalPath();
554 if (basePath != null) {
556 File outFile = new File(basePath, path)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkStatsServiceTest.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPage.java 348 String basePath = mMediaSet.getPath().toString();
349 String newPath = FilterUtils.newClusterPath(basePath, clusterType);
AlbumSetPage.java 311 String basePath = mMediaSet.getPath().toString();
312 String newPath = FilterUtils.switchClusterPath(basePath, clusterType);
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-interpolation-1.19.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interpolation/1.13/
plexus-interpolation-1.13.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interpolation/1.14/
plexus-interpolation-1.14.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.14/
plexus-interpolation-1.14.jar 

Completed in 760 milliseconds

1 2 3 4