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

1 2

  /external/doclava/res/assets/templates-sdk/assets/js/
docs.js 5 var basePath = getBaseUri(location.pathname);
6 var SITE_ROOT = toRoot + basePath.substring(1, basePath.indexOf("/", 1));
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
ParameterizedRobolectricTestRunnerUriTest.java 20 private final String basePath;
24 public ParameterizedRobolectricTestRunnerUriTest(String basePath,
27 this.basePath = basePath;
35 assertThat(Uri.parse(basePath).buildUpon().path(resourcePath).build()).isEqualTo(expectedUri);
  /build/make/tools/droiddoc/templates-ndk/assets/js/
docs.js 11 var basePath = getBaseUri(location.pathname);
12 var SITE_ROOT = toRoot + 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/robolectric-shadows/utils/src/main/java/org/robolectric/util/
TempDirectory.java 12 private final Path basePath;
16 basePath = Files.createTempDirectory("robolectric-" + name);
31 Path path = basePath.resolve(name);
41 Path path = basePath.resolve(name);
55 clearDirectory(basePath);
56 Files.delete(basePath);
  /external/smali/util/src/main/java/org/jf/util/
PathUtil.java 51 List<String> basePath = getPathComponents(canonicalBaseFile);
56 if (!basePath.get(0).equals(pathToRelativize.get(0))) {
63 for (commonDirs=1; commonDirs<basePath.size() && commonDirs<pathToRelativize.size(); commonDirs++) {
64 if (!basePath.get(commonDirs).equals(pathToRelativize.get(commonDirs))) {
70 for (int i=commonDirs; i<basePath.size(); i++) {
  /external/skia/tools/viewer/
NIMASlide.cpp 46 SkString basePath = SkOSPath::Join(dirName.c_str(), baseName.c_str());
49 fBasePath = std::string(basePath.c_str());
  /external/skqp/tools/viewer/
NIMASlide.cpp 46 SkString basePath = SkOSPath::Join(dirName.c_str(), baseName.c_str());
49 fBasePath = std::string(basePath.c_str());
  /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 347 char basePath[1024];
  /external/jsoncpp/src/jsontestrunner/
main.cpp 243 std::string basePath = removeSuffix(argv[1], ".json");
244 if (!parseOnly && basePath.empty()) {
250 std::string actualPath = basePath + ".actual";
251 std::string rewritePath = basePath + ".rewrite";
252 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...]
  /cts/hostsidetests/appsecurity/test-apps/MultiUserStorageApp/src/com/android/cts/multiuserstorageapp/
MultiUserStorageTest.java 137 final File basePath = myPath.getParentFile();
141 final File otherPath = new File(basePath, String.valueOf(i));
155 final File basePath = myPath.getParentFile();
158 final File otherPath = new File(basePath,i + "/" + FILE_SINGLETON);
  /external/cldr/tools/java/org/unicode/cldr/draft/
ExtractCountItems.java 37 String basePath;
39 public SampleData(String basePath) {
40 this.basePath = basePath;
101 System.out.println("#" + locale + "\t" + sampleData.basePath);
143 System.out.println(missing + "\t" + samples.basePath + "\t<" + s1 + ">\t<" + s2 + ">");
161 // get the path without the count = basepath
166 String basePath = parts.toString();
167 SampleData sampleData = data.get(basePath);
169 data.put(basePath, sampleData = new SampleData(basePath))
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
Validity.java 52 final String basePath = validityDirectory;
53 for (String file : new File(basePath).list()) {
73 XMLFileReader.loadPathValues(basePath + file, lineData, true);
  /external/skia/tests/
FontMgrAndroidParserTest.cpp 107 SkDebugf(" basePath %s\n", fontFamilies[i]->fBasePath.c_str());
242 SkString basePath = GetResourcePath("fonts/");
252 custom.fBasePath = basePath.c_str();
277 SkString basePath = GetResourcePath("fonts/");
287 custom.fBasePath = basePath.c_str();
354 SkString basePath = GetResourcePath("fonts/");
364 custom.fBasePath = basePath.c_str();
  /external/skqp/tests/
FontMgrAndroidParserTest.cpp 107 SkDebugf(" basePath %s\n", fontFamilies[i]->fBasePath.c_str());
242 SkString basePath = GetResourcePath("fonts/");
252 custom.fBasePath = basePath.c_str();
277 SkString basePath = GetResourcePath("fonts/");
287 custom.fBasePath = basePath.c_str();
354 SkString basePath = GetResourcePath("fonts/");
364 custom.fBasePath = basePath.c_str();
  /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();
  /external/cldr/tools/java/org/unicode/cldr/icu/
LocaleMapper.java 269 String basePath = "//ldml/dates/calendars/calendar[@type=\"" + calendar + "\"]/dateTimeFormats";
270 String mediumFormatPath = basePath
272 valueList.add(basePath,
  /build/soong/android/
paths.go 375 srcPath.basePath.rel = srcPath.path
571 type basePath struct {
577 func (p basePath) Ext() string {
581 func (p basePath) Base() string {
585 func (p basePath) Rel() string {
592 func (p basePath) String() string {
596 func (p basePath) withRel(rel string) basePath {
604 basePath
610 p.basePath = p.basePath.withRel(rel
    [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...]
  /external/autotest/frontend/client/src/autotest/afe/
JobDetailView.java 571 String basePath = jobId + "-" + owner + "/" + executionSubdir + "/";
574 return new HTML(getLogsLinkHtml(basePath + "debug", "Debug logs"));
576 return new HTML(getLogsLinkHtml(basePath, "All logs"));
  /external/syzkaller/vendor/google.golang.org/api/storage/v1/
storage-gen.go 46 const basePath = "https://www.googleapis.com/storage/v1/"
70 s := &Service{client: client, BasePath: basePath}
84 BasePath string // API endpoint base URL
    [all...]

Completed in 2577 milliseconds

1 2