/frameworks/layoutlib/bridge/src/android/graphics/ |
RadialGradient_Delegate.java | 24 import android.graphics.Shader.TileMode; 60 int colors[], float positions[], int tileMode) { 62 colors, positions, Shader_Delegate.getTileMode(tileMode)); 68 int color0, int color1, int tileMode) { 70 null /*positions*/, tileMode); 91 int colors[], float positions[], TileMode tile) { 103 int[] colors, float[] positions, TileMode mode) {
|
/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/ |
VideoProvider.java | 28 import android.graphics.Shader.TileMode; 118 COLORS.get(1), TileMode.CLAMP); 129 COLORS.get(2), COLORS.get(3), TileMode.CLAMP);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/ |
ColorHueView.java | 154 0, .3f, .31f, 1}, Shader.TileMode.CLAMP); 197 BitmapShader bs = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
|
/packages/apps/Launcher3/src/com/android/launcher3/graphics/ |
GradientView.java | 136 Shader.TileMode.CLAMP); 147 Shader.TileMode.CLAMP); 193 Shader.TileMode.CLAMP);
|
/packages/apps/Settings/src/com/android/settings/applications/ |
LinearColorBar.java | 127 0, 0, 0, off-2, mRightColor &0xffffff, mRightColor, Shader.TileMode.CLAMP)); 130 0, 0, 0, off-2, mMiddleColor&0xffffff, mMiddleColor, Shader.TileMode.CLAMP)); 133 0, 0, 0, off/2, 0x00a0a0a0, 0xffa0a0a0, Shader.TileMode.CLAMP));
|
/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 | 33 SkShader::TileMode tmx, SkShader::TileMode tmy) 494 SkShader::TileMode tx = (SkShader::TileMode)fTileModeX; 495 SkShader::TileMode ty = (SkShader::TileMode)fTileModeY;
|
/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/src/shaders/ |
SkLocalMatrixShader.cpp | 54 SkImage* SkLocalMatrixShader::onIsAImage(SkMatrix* outMatrix, enum TileMode* mode) const {
|
/external/skia/tests/ |
ShaderOpacityTest.cpp | 56 SkShader::TileMode mode = SkShader::kClamp_TileMode;
|
/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);
|
/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 | 272 sk_sp<SkShader> makeShader(SkShader::TileMode, SkShader::TileMode, 275 * Helper version of makeShader() that specifies Clamp tilemode.
|
/external/skia/src/gpu/ |
GrProcessor.cpp | 232 SkShader::TileMode tileXAndY, 248 SkShader::TileMode tileXAndY,
|
GrProcessor.h | 225 SkShader::TileMode tileXAndY = SkShader::kClamp_TileMode, 231 SkShader::TileMode tileXAndY = SkShader::kClamp_TileMode,
|
/external/skia/src/gpu/effects/ |
GrBicubicEffect.cpp | 138 const SkShader::TileMode tileModes[2]) 183 static const SkShader::TileMode kClampClamp[] =
|
GrBitmapTextGeoProc.cpp | 159 static const SkShader::TileMode kTileModes[] = { 164 SkShader::TileMode tileModes[] = {
|