Searched refs:assetPath (Results 1 – 8 of 8) sorted by relevance
/external/glide/library/src/main/java/com/bumptech/glide/load/data/ |
D | AssetPathFetcher.java | 17 private final String assetPath; field in AssetPathFetcher 21 public AssetPathFetcher(AssetManager assetManager, String assetPath) { in AssetPathFetcher() argument 23 this.assetPath = assetPath; in AssetPathFetcher() 28 data = loadResource(assetManager, assetPath); in loadData() 49 return assetPath; in getId()
|
D | StreamAssetPathFetcher.java | 12 public StreamAssetPathFetcher(AssetManager assetManager, String assetPath) { in StreamAssetPathFetcher() argument 13 super(assetManager, assetPath); in StreamAssetPathFetcher()
|
D | FileDescriptorAssetPathFetcher.java | 12 public FileDescriptorAssetPathFetcher(AssetManager assetManager, String assetPath) { in FileDescriptorAssetPathFetcher() argument 13 super(assetManager, assetPath); in FileDescriptorAssetPathFetcher()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowLegacyApkAssets.java | 15 private String assetPath; field in ShadowLegacyApkAssets 21 this.assetPath = path; in __constructor__() 27 return assetPath; in getAssetPath()
|
D | ShadowAssetManager.java | 57 for (AssetPath assetPath : getAssetPaths()) { in getCompileTimeResTable() 58 if (assetPath.isSystem) { in getCompileTimeResTable() 62 … compileTimeCppAssetManager.addAssetPath(new String8(assetPath.file.getPath()), null, false); in getCompileTimeResTable()
|
D | ShadowArscAssetManager.java | 1367 for (AssetPath assetPath : cppAssetManager.getAssetPaths()) { in getAllAssetDirs() 1368 if (assetPath.file.isFile()) { in getAllAssetDirs() 1369 fsFiles.add(Fs.newJarFile(new File(assetPath.file.getPath())).join("assets")); in getAllAssetDirs() 1371 fsFiles.add(assetPath.file); in getAllAssetDirs()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/ |
D | StreamUriLoader.java | 55 protected DataFetcher<InputStream> getAssetPathFetcher(Context context, String assetPath) { in getAssetPathFetcher() argument 56 return new StreamAssetPathFetcher(context.getApplicationContext().getAssets(), assetPath); in getAssetPathFetcher()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/file_descriptor/ |
D | FileDescriptorUriLoader.java | 52 …rotected DataFetcher<ParcelFileDescriptor> getAssetPathFetcher(Context context, String assetPath) { in getAssetPathFetcher() argument 53 … return new FileDescriptorAssetPathFetcher(context.getApplicationContext().getAssets(), assetPath); in getAssetPathFetcher()
|