HomeSort by relevance Sort by last modified time
    Searched refs:CLAMP (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/graphics/java/android/graphics/
Shader.java 35 CLAMP (0),
  /cts/tests/tests/graphics/src/android/graphics/cts/
ComposeShaderTest.java 52 Color.GREEN, Color.BLUE, Shader.TileMode.CLAMP);
54 Color.GREEN, Color.RED, Shader.TileMode.CLAMP);
93 BitmapShader blueShader = new BitmapShader(greenBitmap, TileMode.CLAMP, TileMode.CLAMP);
94 BitmapShader redShader = new BitmapShader(cyanBitmap, TileMode.CLAMP, TileMode.CLAMP);
LinearGradientTest.java 56 lg = new LinearGradient(0, 0, 0, 40, color, position, TileMode.CLAMP);
72 lg = new LinearGradient(0, 0, 0, 40, Color.RED, Color.BLUE, TileMode.CLAMP);
RadialGradientTest.java 49 Shader.TileMode.CLAMP);
68 Shader.TileMode.CLAMP);
92 // clamp to end color
  /frameworks/base/graphics/java/android/renderscript/
Sampler.java 41 CLAMP (4);
90 if (v == Value.WRAP || v == Value.CLAMP) {
98 if (v == Value.WRAP || v == Value.CLAMP) {
106 if (v == Value.WRAP || v == Value.CLAMP) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Vertices.java 61 Shader s = new BitmapShader(bm, Shader.TileMode.CLAMP,
62 Shader.TileMode.CLAMP);
  /frameworks/base/graphics/java/android/graphics/utils/
BoundaryPatch.java 96 Shader.TileMode.CLAMP,
97 Shader.TileMode.CLAMP));
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Shader_Delegate.java 69 return TileMode.CLAMP;
Gradient_Delegate.java 130 case CLAMP:
161 case CLAMP:
BitmapShader_Delegate.java 195 case CLAMP:
215 case CLAMP:
  /packages/wallpapers/Basic/src/com/android/wallpaper/nexus/
NexusRS.java 23 import static android.renderscript.Sampler.Value.CLAMP;
222 sampleBuilder.setWrapS(CLAMP);
223 sampleBuilder.setWrapT(CLAMP);
238 sampleBuilder.setWrapS(CLAMP);
239 sampleBuilder.setWrapT(CLAMP);
  /external/bluetooth/glib/glib/
gmacros.h 199 #undef CLAMP
200 #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
  /packages/apps/Settings/src/com/android/settings/applications/
LinearColorBar.java 75 0, 0, 0, off-2, RIGHT_COLOR&0xffffff, RIGHT_COLOR, Shader.TileMode.CLAMP));
78 0, 0, 0, off-2, MIDDLE_COLOR&0xffffff, MIDDLE_COLOR, Shader.TileMode.CLAMP));
81 0, 0, 0, off/2, 0x00a0a0a0, 0xffa0a0a0, Shader.TileMode.CLAMP));
  /frameworks/base/graphics/java/android/graphics/drawable/
BitmapDrawable.java 310 tmx == null ? Shader.TileMode.CLAMP : tmx,
311 tmy == null ? Shader.TileMode.CLAMP : tmy);
394 setTileModeXY(Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
GradientDrawable.java 326 // to show it. If we did nothing, Skia would clamp the rad
537 colors, st.mPositions, Shader.TileMode.CLAMP));
546 Shader.TileMode.CLAMP));
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/fall/
FallRS.java 31 import static android.renderscript.Sampler.Value.CLAMP;
288 sampleBuilder.setWrapS(CLAMP);
289 sampleBuilder.setWrapT(CLAMP);
  /external/libvpx/vp8/common/arm/neon/
recon16x16mb_neon.asm 59 vqmovun.s16 d0, q0 ;CLAMP() saturation
105 vqmovun.s16 d0, q0 ;CLAMP() saturation
  /external/bluetooth/glib/gobject/
gparamspecs.c 83 value->data[0].v_int = CLAMP (value->data[0].v_int, cspec->minimum, cspec->maximum);
112 value->data[0].v_uint = CLAMP (value->data[0].v_uint, uspec->minimum, uspec->maximum);
159 value->data[0].v_int = CLAMP (value->data[0].v_int, ispec->minimum, ispec->maximum);
199 value->data[0].v_uint = CLAMP (value->data[0].v_uint, uspec->minimum, uspec->maximum);
244 value->data[0].v_long = CLAMP (value->data[0].v_long, lspec->minimum, lspec->maximum);
288 value->data[0].v_ulong = CLAMP (value->data[0].v_ulong, uspec->minimum, uspec->maximum);
328 value->data[0].v_int64 = CLAMP (value->data[0].v_int64, lspec->minimum, lspec->maximum);
368 value->data[0].v_uint64 = CLAMP (value->data[0].v_uint64, uspec->minimum, uspec->maximum);
542 value->data[0].v_float = CLAMP (value->data[0].v_float, fspec->minimum, fspec->maximum);
585 value->data[0].v_double = CLAMP (value->data[0].v_double, dspec->minimum, dspec->maximum)
    [all...]
gparam.c 745 return CLAMP (cmp, -1, 1);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
BitmapDrawableTest.java 241 bitmapDrawable.setTileModeX(TileMode.CLAMP);
242 assertEquals(TileMode.CLAMP, bitmapDrawable.getTileModeX());
250 assertEquals(TileMode.CLAMP, bitmapDrawable.getTileModeX());
  /frameworks/base/libs/rs/java/Film/src/com/android/film/
FilmRS.java 120 bs.setWrapS(Sampler.Value.CLAMP);
  /packages/apps/Gallery3D/src/com/cooliris/media/
StringTexture.java 206 Shader.TileMode.CLAMP);
  /frameworks/base/core/java/android/widget/
ProgressBar.java 271 Shader.TileMode.REPEAT, Shader.TileMode.CLAMP);
  /packages/apps/Launcher2/src/com/android/launcher2/
AllApps3D.java     [all...]
  /frameworks/base/core/java/android/view/
View.java     [all...]

Completed in 1457 milliseconds

1 2