HomeSort by relevance Sort by last modified time
    Searched full:bitmapsource (Results 1 - 10 of 10) sorted by null

  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
ResourceWallpaperInfo.java 9 import com.android.photos.BitmapRegionTileSource.BitmapSource;
27 final BitmapRegionTileSource.InputStreamSource bitmapSource =
29 a.setCropViewTileSource(bitmapSource, false, false, new CropViewScaleAndOffsetProvider() {
44 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
FileWallpaperInfo.java 12 import com.android.photos.BitmapRegionTileSource.BitmapSource;
36 final BitmapRegionTileSource.FilePathBitmapSource bitmapSource =
38 a.setCropViewTileSource(bitmapSource, false, true, null, new Runnable() {
42 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
UriWallpaperInfo.java 14 import com.android.photos.BitmapRegionTileSource.BitmapSource;
33 final BitmapRegionTileSource.InputStreamSource bitmapSource =
35 a.setCropViewTileSource(bitmapSource, true, false, null, new Runnable() {
39 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED) {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
BitmapSource.java 31 public class BitmapSource extends Filter {
48 public BitmapSource(String name) {
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
WallpaperCropActivity.java 46 import com.android.photos.BitmapRegionTileSource.BitmapSource;
47 import com.android.photos.BitmapRegionTileSource.BitmapSource.InBitmapProvider;
127 final BitmapRegionTileSource.InputStreamSource bitmapSource =
132 if (bitmapSource.getLoadingState() != BitmapSource.State.LOADED) {
141 setCropViewTileSource(bitmapSource, true, false, null, onLoad);
219 loadSuccess = req.src.getLoadingState() == BitmapSource.State.LOADED;
301 public final void setCropViewTileSource(BitmapSource bitmapSource, boolean touchEnabled,
306 req.src = bitmapSource;
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 48 import com.android.photos.BitmapRegionTileSource.BitmapSource;
117 final BitmapRegionTileSource.UriBitmapSource bitmapSource =
122 if (bitmapSource.getLoadingState() != BitmapSource.State.LOADED) {
132 setCropViewTileSource(bitmapSource, true, false, onLoad);
144 final BitmapRegionTileSource.BitmapSource bitmapSource, final boolean touchEnabled,
152 bitmapSource.loadInBackground();
172 if (bitmapSource.getLoadingState() == BitmapSource.State.LOADED)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 158 public static abstract class BitmapSource {
165 public BitmapSource(int previewSize) {
224 public static class FilePathBitmapSource extends BitmapSource {
258 public static class UriBitmapSource extends BitmapSource {
323 public static class ResourceBitmapSource extends BitmapSource {
379 public BitmapRegionTileSource(Context context, BitmapSource source) {
501 private Bitmap decodePreview(BitmapSource source, int targetSize) {
  /external/skia/gm/
imagefiltersgraph.cpp 48 sk_sp<SkImageFilter> bitmapSource(SkImageSource::Make(fImage));
51 sk_sp<SkImageFilter> blur(SkBlurImageFilter::Make(4.0f, 4.0f, std::move(bitmapSource)));
  /external/skqp/gm/
imagefiltersgraph.cpp 48 sk_sp<SkImageFilter> bitmapSource(SkImageSource::Make(fImage));
51 sk_sp<SkImageFilter> blur(SkBlurImageFilter::Make(4.0f, 4.0f, std::move(bitmapSource)));
  /packages/apps/WallpaperPicker/src/com/android/photos/
BitmapRegionTileSource.java 135 public static abstract class BitmapSource {
223 public static class InputStreamSource extends BitmapSource {
302 public BitmapRegionTileSource(Context context, BitmapSource source, byte[] tempStorage) {

Completed in 252 milliseconds