/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
ClassLoaderResourceLoader.java | 54 private String basePath; 56 public ClassLoaderResourceLoader(ClassLoader classLoader, String basePath) { 58 this.basePath = basePath; 67 String path = basePath + '/' + name; 77 + basePath + "'");
|
ClassResourceLoader.java | 54 private final String basePath; 58 this.basePath = "/" + cls.getPackage().getName().replace('.', '/'); 62 * Load resources from the given subdirectory {@code basePath}, 65 public ClassResourceLoader(Class<?> cls, String basePath) { 67 this.basePath = basePath; 72 InputStream stream = cls.getResourceAsStream(basePath + '/' + name);
|
/frameworks/base/tools/aapt/tests/ |
MockFileFinder.h | 28 * path matching basePath. 32 * to the basePath. 35 virtual bool findFiles(String8 basePath, Vector<String8>& extensions, 39 const KeyedVector<String8,time_t>* payload(&mFiles.valueFor(basePath));
|
/frameworks/base/tools/aapt/ |
FileFinder.cpp | 41 bool SystemFileFinder::findFiles(String8 basePath, Vector<String8>& extensions, 45 // Scan the directory pointed to by basePath 47 if (!dw->openDir(basePath)) { 60 String8 fullPath = basePath.appendPathCopy(entryName);
|
FileFinder.h | 25 virtual bool findFiles(String8 basePath, Vector<String8>& extensions, 56 virtual bool findFiles(String8 basePath, Vector<String8>& extensions,
|
/external/qemu/android/skin/ |
file.c | 50 const char* basepath ) 61 background->image = skin_image_find_in( basepath, img ); 230 skin_button_create_from( AConfig* node, const char* basepath ) 244 button->image = skin_image_find_in( basepath, img ); 314 skin_part_create_from_v1( AConfig* root, const char* basepath ) 325 skin_background_init_from(part->background, node, basepath); 335 SkinButton* button = skin_button_create_from(node, basepath); 365 skin_part_create_from_v2( AConfig* root, const char* basepath ) 376 skin_background_init_from(part->background, node, basepath); 386 SkinButton* button = skin_button_create_from(node, basepath); [all...] |
file.h | 133 extern SkinFile* skin_file_create_from_aconfig( AConfig* aconfig, const char* basepath );
|
/external/webkit/Source/WebCore/fileapi/ |
LocalFileSystem.cpp | 55 void LocalFileSystem::initializeLocalFileSystem(const String& basePath) 63 OwnPtr<LocalFileSystem> localFileSystem = adoptPtr(new LocalFileSystem(basePath)); 79 static void openFileSystem(ScriptExecutionContext*, const String& basePath, const String& identifier, AsyncFileSystem::Type type, bool create, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 81 AsyncFileSystem::openFileSystem(basePath, identifier, type, create, callbacks);
|
LocalFileSystem.h | 69 LocalFileSystem(const String& basePath) 70 : m_basePath(basePath)
|
FileSystemCallbacks.cpp | 141 PassOwnPtr<EntriesCallbacks> EntriesCallbacks::create(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) 143 return adoptPtr(new EntriesCallbacks(successCallback, errorCallback, directoryReader, basePath)); 146 EntriesCallbacks::EntriesCallbacks(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath) 150 , m_basePath(basePath)
|
FileSystemCallbacks.h | 103 static PassOwnPtr<EntriesCallbacks> create(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath); 108 EntriesCallbacks(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
|
/external/qemu/ |
gen-skin.py | 31 def process_files( basepath, files ): 33 fp = open(basepath + "/" + file, "rb")
|
/external/webkit/Source/WebCore/platform/ |
AsyncFileSystem.cpp | 56 void AsyncFileSystem::openFileSystem(const String& basePath, const String& storageIdentifier, Type type, bool, PassOwnPtr<AsyncFileSystemCallbacks> callbacks) 64 String rootPath = basePath;
|
/external/qemu/android/ |
qemulator.h | 48 const char* basepath,
|
/external/srec/portable/include/ |
PFileSystemImpl.h | 77 * @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/clang/lib/Sema/ |
SemaCXXCast.cpp | 58 CXXCastPath &BasePath); 64 CXXCastPath &BasePath); 83 CXXCastPath &BasePath, 90 CXXCastPath &BasePath); 96 CXXCastPath &BasePath); 103 CXXCastPath &BasePath); 110 CXXCastPath &BasePath); 124 CXXCastPath &BasePath); 192 CXXCastPath BasePath; 195 Kind, BasePath); [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
FilterSet.java | 86 String basePath = "/filter/mediatype/" + mMediaType; 90 String filteredPath = basePath + "/{" + set.getPath().toString() + "}";
|
/external/clang/lib/AST/ |
ExprCXX.cpp | 471 const CXXCastPath *BasePath, 475 unsigned PathSize = (BasePath ? BasePath->size() : 0); 481 if (PathSize) E->setCastPath(*BasePath); 495 const CXXCastPath *BasePath, 499 unsigned PathSize = (BasePath ? BasePath->size() : 0); 505 if (PathSize) E->setCastPath(*BasePath); 549 const CXXCastPath *BasePath, 552 unsigned PathSize = (BasePath ? BasePath->size() : 0) [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.js | 188 var basePath = getBaseUri(location.pathname); 189 var section = basePath.substring(1,basePath.indexOf("/",1)); 206 var basePath = getBaseUri(location.pathname); 207 var section = basePath.substring(1,basePath.indexOf("/",1));
|
/external/webkit/Source/WebCore/platform/wx/ |
FileSystemWx.cpp | 152 wxDirTraverserNonRecursive(wxString basePath, wxArrayString& files) : m_basePath(basePath), m_files(files) { }
|
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 424 String basePath = null; 432 basePath = getFilesDir().getCanonicalPath(); 434 basePath = getDatabasePath("foo").getParentFile().getCanonicalPath(); 436 basePath = new File(getApplicationInfo().dataDir).getCanonicalPath(); 438 basePath = getSharedPrefsFile("foo").getParentFile().getCanonicalPath(); 440 basePath = getCacheDir().getCanonicalPath(); 447 if (basePath != null) { 448 File outFile = new File(basePath, path);
|
/external/webkit/Source/WebCore/page/ |
PageGroup.cpp | 175 String basePath = ""; 195 if (basePath.isEmpty()) 196 basePath = p->settings()->localStorageDatabasePath(); 227 if (!basePath.isEmpty()) { 228 Vector<String> files = listDirectory(basePath, "*.localstorage");
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
json_results.html | 201 var basePath; 203 basePath = g_results.layout_tests_dir + '/'; 205 basePath = 'http://trac.webkit.org/browser/trunk/LayoutTests/'; 207 '<a class=test-link href="' + basePath + test + '">' + test + '</a>';
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
AlbumPage.java | 238 String basePath = mMediaSet.getPath().toString(); 239 String newPath = FilterUtils.newClusterPath(basePath, clusterType); 255 String basePath = mMediaSet.getPath().toString(); 256 String newPath = FilterUtils.switchFilterPath(basePath, filterType);
|
/external/webkit/Tools/DumpRenderTree/mac/ |
ResourceLoadDelegate.mm | 84 NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent]; 86 return [[self path] substringFromIndex:[basePath length] + 1];
|