Searched refs:relativePath (Results 1 - 25 of 50) sorted by relevance

12

/external/smali/util/src/test/java/org/jf/util/
H A DPathUtilTest.java43 File relativePath = new File(roots[1] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt");
45 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
47 Assert.assertEquals(path, relativePath.getPath());
56 File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt");
58 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
71 File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar);
73 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
83 File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir");
85 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
95 File relativePath
[all...]
/external/skia/src/utils/
H A DSkOSPath.h25 * Assembles rootPath and relativePath into a single path, like this:
26 * rootPath/relativePath.
27 * It is okay to call with a NULL rootPath and/or relativePath. A path
32 static SkString Join(const char* rootPath, const char* relativePath);
H A DSkOSPath.cpp10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) { argument
15 result.append(relativePath);
/external/skqp/src/utils/
H A DSkOSPath.h25 * Assembles rootPath and relativePath into a single path, like this:
26 * rootPath/relativePath.
27 * It is okay to call with a NULL rootPath and/or relativePath. A path
32 static SkString Join(const char* rootPath, const char* relativePath);
H A DSkOSPath.cpp10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) { argument
15 result.append(relativePath);
/external/mockito/src/test/java/org/mockitoutil/
H A DSimpleClassGenerator.java14 String relativePath = qualifiedName.replace('.', '/');
17 cw.visit(V1_6, ACC_PUBLIC + ACC_ABSTRACT + ACC_INTERFACE, relativePath, null, "java/lang/Object", null);
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DIndexedInputs.java86 for (String relativePath : inputProvider) {
87 if (relativePath.endsWith(".class") && !indexedInputs.containsKey(relativePath)) {
88 indexedInputs.put(relativePath, inputProvider);
/external/vogar/src/vogar/
H A DActionFinder.java92 String relativePath = className.replace('.', File.separatorChar) + ".java";
93 if (!path.endsWith(relativePath)) {
94 throw new IllegalArgumentException("Expected a file ending in " + relativePath + " but found " + path);
96 return new File(path.substring(0, path.length() - relativePath.length()));
/external/skia/tools/skdiff/
H A Dskdiff_html.cpp182 const SkString& relativePath, bool local) {
191 resource.fFullPath.prepend(relativePath);
207 resource.fFullPath.prepend(relativePath);
212 static void print_diff_row(SkFILEWStream* stream, DiffRecord& diff, const SkString& relativePath) { argument
216 print_diff_resource_cell(stream, diff.fWhite, relativePath, true);
217 print_diff_resource_cell(stream, diff.fDifference, relativePath, true);
218 print_diff_resource_cell(stream, diff.fBase, relativePath, false);
219 print_diff_resource_cell(stream, diff.fComparison, relativePath, false);
256 SkString relativePath; local
261 relativePath
181 print_diff_resource_cell(SkFILEWStream* stream, DiffResource& resource, const SkString& relativePath, bool local) argument
[all...]
/external/skqp/tools/skdiff/
H A Dskdiff_html.cpp182 const SkString& relativePath, bool local) {
191 resource.fFullPath.prepend(relativePath);
207 resource.fFullPath.prepend(relativePath);
212 static void print_diff_row(SkFILEWStream* stream, DiffRecord& diff, const SkString& relativePath) { argument
216 print_diff_resource_cell(stream, diff.fWhite, relativePath, true);
217 print_diff_resource_cell(stream, diff.fDifference, relativePath, true);
218 print_diff_resource_cell(stream, diff.fBase, relativePath, false);
219 print_diff_resource_cell(stream, diff.fComparison, relativePath, false);
256 SkString relativePath; local
261 relativePath
181 print_diff_resource_cell(SkFILEWStream* stream, DiffResource& resource, const SkString& relativePath, bool local) argument
[all...]
/external/robolectric-shadows/shadows/httpclient/src/test/java/org/robolectric/util/
H A DTestRunnerWithManifest.java30 final URI relativePath = workingDirectory.relativize(absolutePath);
31 return new File(relativePath.toString()).getParentFile();
/external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/util/
H A DTestRunnerWithManifest.java30 final URI relativePath = workingDirectory.relativize(absolutePath);
31 return new File(relativePath.toString()).getParentFile();
/external/curl/lib/
H A Dcurl_path.c119 bool relativePath = false; local
176 relativePath = (cp[0] == '/' && cp[1] == '~' && cp[2] == '/');
178 if(relativePath) {
/external/clang/utils/
H A DFindSpecRefs882 relativePath = item.path[len(root):]
883 if relativePath.startswith('/'):
884 relativePath = relativePath[1:]
887 filename = os.path.basename(relativePath)
899 print >>f,'<a href="%s">%s:%d</a>%s<br>'%(linkStr,relativePath,item.line,paraText)
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DSystemIDResolver.java100 * @param relativePath A relative path
103 private static String getAbsolutePathFromRelativePath(String relativePath) argument
105 return new File(relativePath).getAbsolutePath();
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSystemIDResolver.java93 * @param relativePath A relative path
96 private static String getAbsolutePathFromRelativePath(String relativePath) argument
98 return new File(relativePath).getAbsolutePath();
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
H A DMavenManifestFactory.java31 final URI relativePath = workingDirectory.relativize(absolutePath);
32 manifestFile = Fs.newFile(relativePath.toString());
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
H A DSourceRoot.java105 final Path relativePath = fileInPackageRelativePath(startPackage, filename);
106 if (cache.containsKey(relativePath)) {
107 Log.trace("Retrieving cached %s", relativePath);
108 return cache.get(relativePath);
110 final Path path = root.resolve(relativePath);
115 cache.put(relativePath, result);
/external/testng/src/main/java/org/testng/reporters/
H A DXMLReporter.java105 String relativePath = suite.getName() + File.separatorChar + FILE_NAME;
106 File suiteFile = new File(config.getOutputDirectory(), relativePath);
108 attrs.setProperty(XMLReporterConfig.ATTR_URL, relativePath);
/external/guice/lib/build/
H A Dspring-core.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/springframework/core/ org/springframework/core/annotation/ ...
/external/testng/ant/3rdparty/
H A DDTDDoc.jarMETA-INF/ META-INF/MANIFEST.MF DTDDoc/ DTDDoc/AntLogger.class AntLogger.java package DTDDoc ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.equinox.preferences_3.5.300.v20150408-1437.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
H A Dorg.eclipse.equinox.common_3.7.0.v20150402-1709.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/kotlinc/lib/
H A Dkotlin-annotation-processing.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/kotlin-annotation-processing.kotlin_module ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...

Completed in 933 milliseconds

12