Home
last modified time | relevance | path

Searched refs:assetPath (Results 1 – 8 of 8) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/load/data/
DAssetPathFetcher.java17 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()
DStreamAssetPathFetcher.java12 public StreamAssetPathFetcher(AssetManager assetManager, String assetPath) { in StreamAssetPathFetcher() argument
13 super(assetManager, assetPath); in StreamAssetPathFetcher()
DFileDescriptorAssetPathFetcher.java12 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/
DShadowLegacyApkAssets.java15 private String assetPath; field in ShadowLegacyApkAssets
21 this.assetPath = path; in __constructor__()
27 return assetPath; in getAssetPath()
DShadowAssetManager.java57 for (AssetPath assetPath : getAssetPaths()) { in getCompileTimeResTable()
58 if (assetPath.isSystem) { in getCompileTimeResTable()
62 … compileTimeCppAssetManager.addAssetPath(new String8(assetPath.file.getPath()), null, false); in getCompileTimeResTable()
DShadowArscAssetManager.java1367 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/
DStreamUriLoader.java55 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/
DFileDescriptorUriLoader.java52 …rotected DataFetcher<ParcelFileDescriptor> getAssetPathFetcher(Context context, String assetPath) { in getAssetPathFetcher() argument
53 … return new FileDescriptorAssetPathFetcher(context.getApplicationContext().getAssets(), assetPath); in getAssetPathFetcher()