/frameworks/base/graphics/java/android/graphics/ |
D | BitmapShader.java | 25 public class BitmapShader extends Shader { class 43 public BitmapShader(@NonNull Bitmap bitmap, TileMode tileX, TileMode tileY) { in BitmapShader() method in BitmapShader 55 final BitmapShader copy = new BitmapShader(mBitmap, mTileX, mTileY); in copy()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | ShadersActivity.java | 23 import android.graphics.BitmapShader; 43 private BitmapShader mRepeatShader; 44 private BitmapShader mTranslatedShader; 45 private BitmapShader mScaledShader; 68 mRepeatShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT, in ShadersView() 71 mTranslatedShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT, in ShadersView() 78 mScaledShader = new BitmapShader(mTexture, Shader.TileMode.MIRROR, in ShadersView()
|
D | AdvancedBlendActivity.java | 23 import android.graphics.BitmapShader; 45 private BitmapShader mScaledShader; 58 private BitmapShader mScaled2Shader; 69 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR, in ShadersView() 75 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR, in ShadersView()
|
D | LinesActivity.java | 24 import android.graphics.BitmapShader; 62 private final BitmapShader mShader; 99 mShader = new BitmapShader(mBitmap1, BitmapShader.TileMode.MIRROR, in LinesView() 100 BitmapShader.TileMode.MIRROR); in LinesView()
|
D | MoreShadersActivity.java | 23 import android.graphics.BitmapShader; 47 private BitmapShader mScaledShader; 58 private BitmapShader mScaled2Shader; 71 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR, in ShadersView() 77 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR, in ShadersView()
|
D | PathsActivity.java | 23 import android.graphics.BitmapShader; 45 private final BitmapShader mShader; 82 mShader = new BitmapShader(mBitmap1, BitmapShader.TileMode.MIRROR, in PathsView() 83 BitmapShader.TileMode.MIRROR); in PathsView()
|
D | Alpha8BitmapActivity.java | 23 import android.graphics.BitmapShader; 56 BitmapShader shader = new BitmapShader(texture, in BitmapsView()
|
D | GradientsActivity.java | 23 import android.graphics.BitmapShader; 98 BitmapShader shader = new BitmapShader(texture, Shader.TileMode.REPEAT, in BitmapView()
|
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/ |
D | ResourceModifiers.java | 24 import android.graphics.BitmapShader; 35 public final BitmapShader mRepeatShader; 36 public final BitmapShader mTranslatedShader; 37 public final BitmapShader mScaledShader; 72 mRepeatShader = new BitmapShader(mBitmap, Shader.TileMode.REPEAT, in ResourceModifiers() 75 mTranslatedShader = new BitmapShader(mBitmap, Shader.TileMode.REPEAT, in ResourceModifiers() 82 mScaledShader = new BitmapShader(mBitmap, Shader.TileMode.MIRROR, in ResourceModifiers()
|
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
D | CircularBitmapDrawable.java | 21 import android.graphics.BitmapShader; 134 BitmapShader shader = (BitmapShader) mBitmapPaint.getShader(); in onDrawCircularBitmap() 136 shader = new BitmapShader(bitmap, TileMode.CLAMP, TileMode.CLAMP); in onDrawCircularBitmap()
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | CircularImageView.java | 5 import android.graphics.BitmapShader; 98 BitmapShader shader = new BitmapShader(bitmap, Shader.TileMode.CLAMP, in drawBitmapWithCircleOnCanvas()
|
D | RecipientEditTextView.java | 32 import android.graphics.BitmapShader; 874 final BitmapShader shader = new BitmapShader(icon, TileMode.CLAMP, TileMode.CLAMP); in drawIconOnCanvas()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | BitmapHelper.java | 20 import android.graphics.BitmapShader; 44 paint.setShader(new BitmapShader(input, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP)); in createCircularClip()
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
D | AppCompatRatingBar.java | 21 import android.graphics.BitmapShader; 120 final BitmapShader bitmapShader = new BitmapShader(tileBitmap, in tileify()
|
/frameworks/support/v4/donut/android/support/v4/graphics/drawable/ |
D | RoundedBitmapDrawable.java | 20 import android.graphics.BitmapShader; 50 private final BitmapShader mBitmapShader; 383 mBitmapShader = new BitmapShader(mBitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP); in RoundedBitmapDrawable()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskViewThumbnail.java | 24 import android.graphics.BitmapShader; 54 BitmapShader mBitmapShader; 127 mBitmapShader = new BitmapShader(bm, Shader.TileMode.CLAMP, in setThumbnail()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | UserAvatarView.java | 24 import android.graphics.BitmapShader; 98 mBitmapPaint.setShader(new BitmapShader( in setBitmap()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | RippleDrawable.java | 31 import android.graphics.BitmapShader; 132 private BitmapShader mMaskShader; 772 mMaskShader = new BitmapShader(mMaskBuffer, in updateMaskShaderIfNeeded()
|
D | BitmapDrawable.java | 26 import android.graphics.BitmapShader; 508 paint.setShader(new BitmapShader(bitmap, in draw()
|
/frameworks/base/core/java/android/widget/ |
D | ProgressBar.java | 30 import android.graphics.BitmapShader;
|
/frameworks/base/ |
D | preloaded-classes | 754 android.graphics.BitmapShader
|
/frameworks/base/docs/html/ |
D | sitemap.txt | 2639 http://developer.android.com/reference/android/graphics/BitmapShader.html
|
/frameworks/base/api/ |
D | current.txt | 11096 public class BitmapShader extends android.graphics.Shader { 11097 …ctor public BitmapShader(android.graphics.Bitmap, android.graphics.Shader.TileMode, android.graphi…
|
D | system-current.txt | 11433 public class BitmapShader extends android.graphics.Shader { 11434 …ctor public BitmapShader(android.graphics.Bitmap, android.graphics.Shader.TileMode, android.graphi…
|