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

123

/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/chromium_org/chrome/renderer/resources/extensions/
H A Ddeveloper_private_custom_bindings.js17 var relativePath = $String.slice(directoryEntry.fullPath, 1);
19 return [fileSystemName, relativePath, url, callback];
H A Dimage_writer_private_custom_bindings.js15 var relativePath = $String.slice(fileEntry.fullPath, 1);
16 return [device, fileSystemName, relativePath, callback];
H A Dfile_system_custom_bindings.js24 var relativePath = $String.slice(fileEntry.fullPath, 1);
25 return [fileSystemName, relativePath, callback];
41 var relativePath = $String.slice(fileEntry.fullPath, 1);
43 sendRequest.sendRequest(this.name, [id, fileSystemName, relativePath],
/external/srec/portable/include/
H A DPFileSystemImpl.h97 * @param relativePath [out] Relative path associated with match. Set to NULL if this value shouldn't be returned.
99 * @return ESR_INVALID_ARGUMENT if path, fileSystem or relativePath is null; ESR_INVALID_STATE if no
102 PORTABLE_API ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath);
/external/chromium_org/third_party/skia/tools/
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/skia/tools/
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/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFile.h66 static PassRefPtrWillBeRawPtr<File> createFromSerialization(const String& path, const String& name, const String& relativePath, UserVisibility userVisibility, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) argument
68 return adoptRefWillBeNoop(new File(path, name, relativePath, userVisibility, hasSnaphotData, size, lastModified, blobDataHandle));
75 static PassRefPtrWillBeRawPtr<File> createWithRelativePath(const String& path, const String& relativePath);
141 File(const String& path, const String& name, const String& relativePath, UserVisibility, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle>);
H A DFile.cpp89 PassRefPtrWillBeRawPtr<File> File::createWithRelativePath(const String& path, const String& relativePath) argument
92 file->m_relativePath = relativePath;
118 File::File(const String& path, const String& name, const String& relativePath, UserVisibility userVisibility, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) argument
120 , m_hasBackingFile(!path.isEmpty() || !relativePath.isEmpty())
126 , m_relativePath(relativePath)
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteFileSystemWin.cpp115 // relativePath - the relative path.
118 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, argument
122 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
H A DSQLiteFileSystemPosix.cpp143 // relativePath - the relative path.
146 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, argument
150 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
/external/smali/smali/
H A Dbuild.gradle89 args '-fo', relativePath("${antlrOutput}/org/jf/smali")
102 args '-fo', relativePath("${antlrOutput}/org/jf/smali")
115 args '-fo', relativePath("${testAntlrOutput}/org/jf/smali")
129 args '-d', relativePath("${jflexOutput}/org/jf/smali")
/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/chromium_org/third_party/skia/include/core/
H A DSkOSFile.h129 * Assembles rootPath and relativePath into a single path, like this:
130 * rootPath/relativePath.
131 * It is okay to call with a NULL rootPath and/or relativePath. A path
136 static SkString Join(const char* rootPath, const char* relativePath);
/external/skia/include/core/
H A DSkOSFile.h140 * 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/srec/portable/src/
H A DPFileSystem.c271 * @param relativePath [out] Relative path associated with match (should have length P_PATH_MAX)
273 ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath) argument
306 if (relativePath != NULL)
311 LSTRCPY(relativePath, L(""));
315 LSTRCAT(relativePath, L("/"));
317 LSTRCAT(relativePath, path + LSTRLEN(bestKey));
/external/chromium_org/third_party/skia/src/utils/
H A DSkOSFile.cpp9 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) { argument
14 result.append(relativePath);
/external/skia/src/utils/
H A DSkOSFile.cpp9 SkString SkOSPath::SkPathJoin(const char *rootPath, const char *relativePath) { argument
14 result.append(relativePath);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFileInputType.cpp242 String relativePath = files[i].path.substring(rootLength).replace('\\', '/'); local
243 fileList->append(File::createWithRelativePath(files[i].path, relativePath));
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Dfile_operation_manager.js37 * Checks if an entry exists at |relativePath| in |dirEntry|.
45 * @param {string} relativePath The path to be deduplicated.
53 dirEntry, relativePath, opt_successCallback, opt_errorCallback) {
59 // |relativePath| is "file (10).txt", the second check path will be
61 var match = /^(.*?)(?: \((\d+)\))?(\.[^.]*?)?$/.exec(relativePath);
88 var promise = resolvePath(relativePath, MAX_RETRY, 1).catch(function(error) {
93 targetPromise = fileOperationUtil.resolvePath(dirEntry, relativePath);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A DVCSUtils.pm406 my $relativePath = File::Spec->abs2rel($file);
410 my $escapedRelativePath = escapeSubversionPath($relativePath);
415 my $command = "git svn info $relativePath";

Completed in 587 milliseconds

123