/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
D | ClassResourceLoader.java | 54 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()
|
D | ClassLoaderResourceLoader.java | 54 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/ |
D | LocalFileSystem.cpp | 55 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()
|
D | LocalFileSystem.h | 69 LocalFileSystem(const String& basePath) in LocalFileSystem() argument 70 : m_basePath(basePath) in LocalFileSystem()
|
D | FileSystemCallbacks.cpp | 141 …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()
|
D | FileSystemCallbacks.h | 103 …riesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath); 108 …riesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
|
/external/srec/portable/include/ |
D | PFileSystemImpl.h | 81 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/ |
D | AsyncFileSystem.cpp | 56 void AsyncFileSystem::openFileSystem(const String& basePath, const String& storageIdentifier, Type … in openFileSystem() argument 64 String rootPath = basePath; in openFileSystem()
|
D | AsyncFileSystem.h | 72 …static void openFileSystem(const String& basePath, const String& storageIdentifier, Type, bool cre…
|
/external/webkit/Source/WebCore/page/ |
D | PageGroup.cpp | 175 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/ |
D | FileSystemWx.cpp | 152 …wxDirTraverserNonRecursive(wxString basePath, wxArrayString& files) : m_basePath(basePath), m_file… in wxDirTraverserNonRecursive() argument
|
/external/icu4c/test/intltest/ |
D | intltest.cpp | 519 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()
|
D | intltest.h | 238 char basePath[1024]; variable
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-docs.js | 139 var basePath = getBaseUri(location.pathname); 140 return basePath.substring(1,basePath.indexOf("/",1));
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
D | URI.java | 503 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/ |
D | URI.java | 523 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/ |
D | inspector.js | 1362 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/ |
D | info.c | 701 _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/ |
D | ResourceLoadDelegate.mm | 84 NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent]; 86 return [[self path] substringFromIndex:[basePath length] + 1];
|
/external/webkit/Tools/DumpRenderTree/win/ |
D | DumpRenderTree.cpp | 165 RetainPtr<CFStringRef> basePath(AdoptCF, CFURLCopyPath(baseURL.get())); in urlSuitableForTestResult() local 168 …return cfStringRefToWString(substringFromIndex(path.get(), CFStringGetLength(basePath.get())).get(… in urlSuitableForTestResult()
|