Home
last modified time | relevance | path

Searched refs:basePath (Results 1 – 20 of 20) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
DClassResourceLoader.java54 private final String basePath; field in ClassResourceLoader
58 this.basePath = "/" + cls.getPackage().getName().replace('.', '/'); in ClassResourceLoader()
65 public ClassResourceLoader(Class<?> cls, String basePath) { in ClassResourceLoader() argument
67 this.basePath = basePath; in ClassResourceLoader()
72 InputStream stream = cls.getResourceAsStream(basePath + '/' + name); in open()
DClassLoaderResourceLoader.java54 private String basePath; field in ClassLoaderResourceLoader
56 public ClassLoaderResourceLoader(ClassLoader classLoader, String basePath) { in ClassLoaderResourceLoader() argument
58 this.basePath = basePath; in ClassLoaderResourceLoader()
67 String path = basePath + '/' + name; in open()
77 + basePath + "'"); in openOrFail()
/external/webkit/Source/WebCore/fileapi/
DLocalFileSystem.cpp55 void LocalFileSystem::initializeLocalFileSystem(const String& basePath) in initializeLocalFileSystem() argument
63 OwnPtr<LocalFileSystem> localFileSystem = adoptPtr(new LocalFileSystem(basePath)); in initializeLocalFileSystem()
79 static void openFileSystem(ScriptExecutionContext*, const String& basePath, const String& identifie… in openFileSystem() argument
81 AsyncFileSystem::openFileSystem(basePath, identifier, type, create, callbacks); in openFileSystem()
DLocalFileSystem.h69 LocalFileSystem(const String& basePath) in LocalFileSystem() argument
70 : m_basePath(basePath) in LocalFileSystem()
DFileSystemCallbacks.cpp141 …orCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) in create() argument
143 … return adoptPtr(new EntriesCallbacks(successCallback, errorCallback, directoryReader, basePath)); in create()
146 …orCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) in EntriesCallbacks() argument
150 , m_basePath(basePath) in EntriesCallbacks()
DFileSystemCallbacks.h103 …riesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
108 …riesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
/external/srec/portable/include/
DPFileSystemImpl.h81 PORTABLE_API ESR_ReturnCode PFileSystemAddPathImpl(PFileSystem* self, const LCHAR* basePath);
90 PORTABLE_API ESR_ReturnCode PFileSystemRemovePathImpl(PFileSystem* self, const LCHAR* basePath);
/external/webkit/Source/WebCore/platform/
DAsyncFileSystem.cpp56 void AsyncFileSystem::openFileSystem(const String& basePath, const String& storageIdentifier, Type … in openFileSystem() argument
64 String rootPath = basePath; in openFileSystem()
DAsyncFileSystem.h72 …static void openFileSystem(const String& basePath, const String& storageIdentifier, Type, bool cre…
/external/webkit/Source/WebCore/page/
DPageGroup.cpp175 String basePath = ""; in clearDomStorage() local
195 if (basePath.isEmpty()) in clearDomStorage()
196 basePath = p->settings()->localStorageDatabasePath(); in clearDomStorage()
227 if (!basePath.isEmpty()) { in clearDomStorage()
228 Vector<String> files = listDirectory(basePath, "*.localstorage"); in clearDomStorage()
/external/webkit/Source/WebCore/platform/wx/
DFileSystemWx.cpp152 …wxDirTraverserNonRecursive(wxString basePath, wxArrayString& files) : m_basePath(basePath), m_file… in wxDirTraverserNonRecursive() argument
/external/icu4c/test/intltest/
Dintltest.cpp519 strcpy(basePath, "/"); in IntlTest()
543 strcpy(testToBeCalled.basePath, this->basePath ); in callTest()
544 UBool result = testToBeCalled.runTest( testPath, par, testToBeCalled.basePath ); in callTest()
545 strcpy(testToBeCalled.basePath, this->basePath ); // reset it. in callTest()
676 if ((char *)this->basePath != baseName) { in runTestLoop()
677 strcpy(this->basePath, baseName); in runTestLoop()
Dintltest.h238 char basePath[1024]; variable
/external/doclava/res/assets/templates/assets/
Ddoclava-developer-docs.js139 var basePath = getBaseUri(location.pathname);
140 return basePath.substring(1,basePath.indexOf("/",1));
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DURI.java503 String basePath = p_base.getPath(); in initialize() local
506 if (basePath != null) in initialize()
508 int lastSlash = basePath.lastIndexOf('/'); in initialize()
512 path = basePath.substring(0, lastSlash + 1); in initialize()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DURI.java523 String basePath = p_base.getPath(); in initialize() local
526 if (basePath != null) in initialize()
528 int lastSlash = basePath.lastIndexOf('/'); in initialize()
532 path = basePath.substring(0, lastSlash + 1); in initialize()
/external/webkit/Source/WebCore/inspector/front-end/
Dinspector.js1362 var basePath = parsedURL.path;
1367 var basePathCutIndex = basePath.indexOf("?");
1369 prefix = basePath.substring(0, basePathCutIndex);
1371 prefix = basePath;
1373 prefix = basePath.substring(0, basePath.lastIndexOf("/")) + "/";
/external/qemu/android/avd/
Dinfo.c701 _avdInfo_getCoreHwIniPath( AvdInfo* i, const char* basePath ) in _avdInfo_getCoreHwIniPath() argument
703 i->coreHardwareIniPath = _getFullFilePath(basePath, CORE_HARDWARE_INI); in _avdInfo_getCoreHwIniPath()
705 DD("Path too long for %s: %s", CORE_HARDWARE_INI, basePath); in _avdInfo_getCoreHwIniPath()
/external/webkit/Tools/DumpRenderTree/mac/
DResourceLoadDelegate.mm84 NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent];
86 return [[self path] substringFromIndex:[basePath length] + 1];
/external/webkit/Tools/DumpRenderTree/win/
DDumpRenderTree.cpp165 RetainPtr<CFStringRef> basePath(AdoptCF, CFURLCopyPath(baseURL.get())); in urlSuitableForTestResult() local
168 …return cfStringRefToWString(substringFromIndex(path.get(), CFStringGetLength(basePath.get())).get(… in urlSuitableForTestResult()