HomeSort by relevance Sort by last modified time
    Searched refs:TileMode (Results 101 - 125 of 225) sorted by null

1 2 3 45 6 7 8 9

  /frameworks/base/core/java/android/content/res/
GradientColor.java 163 private static Shader.TileMode parseTileMode(@GradientTileMode int tileMode) {
164 switch (tileMode) {
166 return Shader.TileMode.CLAMP;
168 return Shader.TileMode.REPEAT;
170 return Shader.TileMode.MIRROR;
172 return Shader.TileMode.CLAMP;
219 Log.v(TAG, "tileMode: " + mTileMode);
  /external/skia/src/core/
SkBitmapProcState.cpp 40 SkShader::TileMode tmx, SkShader::TileMode tmy)
619 SkShader::TileMode tx = (SkShader::TileMode)fTileModeX;
620 SkShader::TileMode ty = (SkShader::TileMode)fTileModeY;
SkLocalMatrixShader.cpp 54 SkImage* SkLocalMatrixShader::onIsAImage(SkMatrix* outMatrix, enum TileMode* mode) const {
SkBitmapProcShader.cpp 203 const SkShader& shader, TileMode tmx, TileMode tmy,
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AlphaBitmap.java 72 null, Shader.TileMode.MIRROR);
Xfermodes.java 110 Shader.TileMode.REPEAT,
111 Shader.TileMode.REPEAT);
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
StepChartExampleActivity.java 78 lineFill.setShader(new LinearGradient(0, 0, 0, 250, Color.WHITE, Color.BLUE, Shader.TileMode.MIRROR));
TimeSeriesActivity.java 82 lineFill.setShader(new LinearGradient(0, 0, 200, 200, Color.WHITE, Color.GREEN, Shader.TileMode.CLAMP));
  /external/skia/gm/
hardstop_gradients.cpp 136 SkShader::TileMode tilemodes[NUM_COLS] = {
  /external/skia/src/gpu/vk/
GrVkSampler.cpp 12 static inline VkSamplerAddressMode tile_to_vk_sampler_address(SkShader::TileMode tm) {
  /external/skia/tests/
ShaderOpacityTest.cpp 56 SkShader::TileMode mode = SkShader::kClamp_TileMode;
  /frameworks/base/libs/hwui/tests/unit/
SkiaBehaviorTests.cpp 50 SkShader::TileMode xy[2];
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcherScrim.java 109 Shader.TileMode.CLAMP));
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
AdvancedGradientsActivity.java 52 Shader.TileMode.MIRROR);
FramebufferBlendActivity.java 58 Color.BLACK, Color.WHITE, Shader.TileMode.CLAMP);
LinesActivity.java 99 mShader = new BitmapShader(mBitmap1, BitmapShader.TileMode.MIRROR,
100 BitmapShader.TileMode.MIRROR);
PathsActivity.java 82 mShader = new BitmapShader(mBitmap1, BitmapShader.TileMode.MIRROR,
83 BitmapShader.TileMode.MIRROR);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
SetupWizardLayout.java 24 import android.graphics.Shader.TileMode;
321 ((BitmapDrawable) backgroundTile).setTileModeXY(TileMode.REPEAT, TileMode.REPEAT);
339 ((BitmapDrawable) horizontalTile).setTileModeX(TileMode.REPEAT);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
ColorSpaceTests.java 149 p.setShader(new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT));
  /external/skia/include/core/
SkImage.h 204 sk_sp<SkShader> makeShader(SkShader::TileMode, SkShader::TileMode,
  /external/skia/src/gpu/effects/
GrBicubicEffect.cpp 137 const SkShader::TileMode tileModes[2])
183 static const SkShader::TileMode kClampClamp[] =
GrBitmapTextGeoProc.cpp 164 static const SkShader::TileMode kTileModes[] = {
169 SkShader::TileMode tileModes[] = {
  /frameworks/support/compat/java/android/support/v4/graphics/drawable/
IconCompat.java 257 BitmapShader shader = new BitmapShader(adaptiveIconBitmap, Shader.TileMode.CLAMP,
258 Shader.TileMode.CLAMP);
  /frameworks/support/core-utils/gingerbread/android/support/v4/graphics/drawable/
RoundedBitmapDrawable.java 387 mBitmapShader = new BitmapShader(mBitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorCompareView.java 83 BitmapShader bs = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);

Completed in 608 milliseconds

1 2 3 45 6 7 8 9