Searched refs:basePath (Results 1 - 25 of 33) sorted by relevance

12

/external/smali/util/src/test/java/org/jf/util/
H A DPathUtilTest.java42 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, relativePat
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DClassLoaderResourceLoader.java54 private String basePath; field in class:ClassLoaderResourceLoader
56 public ClassLoaderResourceLoader(ClassLoader classLoader, String basePath) { argument
58 this.basePath = basePath;
67 String path = basePath + '/' + name;
77 + basePath + "'");
H A DClassResourceLoader.java54 private final String basePath; field in class:ClassResourceLoader
58 this.basePath = "/" + cls.getPackage().getName().replace('.', '/');
62 * Load resources from the given subdirectory {@code basePath},
65 public ClassResourceLoader(Class<?> cls, String basePath) { argument
67 this.basePath = basePath;
72 InputStream stream = cls.getResourceAsStream(basePath + '/' + name);
/external/srec/portable/include/
H A DPFileSystemImpl.h77 * @param basePath Base path for files associated with this filesystem
81 PORTABLE_API ESR_ReturnCode PFileSystemAddPathImpl(PFileSystem* self, const LCHAR* basePath);
87 * @param basePath Base path for files associated with this filesystem
90 PORTABLE_API ESR_ReturnCode PFileSystemRemovePathImpl(PFileSystem* self, const LCHAR* basePath);
/external/smali/util/src/main/java/org/jf/util/
H A DPathUtil.java47 public static String getRelativePath(String basePath, String pathToRelativize) throws IOException { argument
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/WebKit/Source/devtools/front_end/
H A DParsedURL.js146 var basePath = parsedURL.path;
148 // Trim off the query part of the basePath.
149 var questionMarkIndex = basePath.indexOf("?");
151 basePath = basePath.substring(0, questionMarkIndex);
152 // A href of "?foo=bar" implies "basePath?foo=bar".
153 // With "basePath?a=b" and "?foo=bar" we should get "basePath?foo=bar".
156 var basePathCutIndex = basePath.indexOf("?");
158 prefix = basePath
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A Dmakegrammar.pl37 my ($filename, $basePath, $suffix) = fileparse($grammarFilePath, (".y", ".y.in"));
41 $grammarIncludesFilePath = "${basePath}${filename}.y.includes";
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DAsyncFileSystem.h63 static void openFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType, bool create, PassOwnPtr<AsyncFileSystemCallbacks>);
66 static void deleteFileSystem(const String& basePath, const String& storageIdentifier, FileSystemType, PassOwnPtr<AsyncFileSystemCallbacks>);
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dbuilders.js163 builders.BuilderMaster = function(name, basePath, tests, groups)
166 this.basePath = basePath;
174 return this.basePath + '/builders/' + builder + '/builds/' + buildNumber;
178 return this.basePath + '/json/builders';
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileSystemCallbacks.h99 static PassOwnPtr<EntriesCallbacks> create(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
104 EntriesCallbacks(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
H A DFileSystemCallbacks.cpp104 PassOwnPtr<EntriesCallbacks> EntriesCallbacks::create(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) argument
106 return adoptPtr(new EntriesCallbacks(successCallback, errorCallback, directoryReader, basePath));
109 EntriesCallbacks::EntriesCallbacks(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) argument
113 , m_basePath(basePath)
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPIteratorImpl.java80 XMPPath basePath = new XMPPath();
83 basePath.add(path.getSegment(i));
88 initialPath = basePath.toString();
/external/skia/tools/
H A Dskdiff_main.cpp352 SkString basePath(baseDir);
362 basePath.append(*baseFiles[i]);
366 drp->fBase.fFullPath = basePath;
378 basePath.append(*comparisonFiles[j]);
382 drp->fBase.fFullPath = basePath;
394 basePath.append(*baseFiles[i]);
398 drp->fBase.fFullPath = basePath;
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-docs.js139 var basePath = getBaseUri(location.pathname);
140 return basePath.substring(1,basePath.indexOf("/",1));
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dintltest.cpp519 strcpy(basePath, "/");
543 strcpy(testToBeCalled.basePath, this->basePath );
544 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath );
545 strcpy(testToBeCalled.basePath, this->basePath ); // reset it.
676 if ((char *)this->basePath != baseName) {
677 strcpy(this->basePath, baseName);
H A Dintltest.h238 char basePath[1024]; member in class:IntlTest
/external/icu4c/test/intltest/
H A Dintltest.cpp535 strcpy(basePath, "/");
559 strcpy(testToBeCalled.basePath, this->basePath );
560 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath );
561 strcpy(testToBeCalled.basePath, this->basePath ); // reset it.
698 if ((char *)this->basePath != baseName) {
699 strcpy(this->basePath, baseName);
H A Dintltest.h287 char basePath[1024]; member in class:IntlTest
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DURI.java503 String basePath = p_base.getPath();
506 if (basePath != null)
508 int lastSlash = basePath.lastIndexOf('/');
512 path = basePath.substring(0, lastSlash + 1);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DURI.java523 String basePath = p_base.getPath();
526 if (basePath != null)
528 int lastSlash = basePath.lastIndexOf('/');
532 path = basePath.substring(0, lastSlash + 1);
/external/qemu/android/avd/
H A Dinfo.c688 _avdInfo_getCoreHwIniPath( AvdInfo* i, const char* basePath )
690 i->coreHardwareIniPath = _getFullFilePath(basePath, CORE_HARDWARE_INI);
692 DD("Path too long for %s: %s", CORE_HARDWARE_INI, basePath);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.common_3.6.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/chrome/browser/resources/file_manager/js/
H A Dfile_manager.js1704 this.directoryModel_.setupPath(path, function(basePath, leafName) {

Completed in 490 milliseconds

12