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

1 2

  /cts/tests/tests/graphics/src/android/graphics/cts/
Shader_TileModeTest.java 28 assertEquals(TileMode.REPEAT, TileMode.valueOf("REPEAT"));
35 assertEquals(TileMode.REPEAT, tileMode[1]);
ShaderTest.java 36 Shader shader = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
BitmapShaderTest.java 46 BitmapShader shader = new BitmapShader(tile, Shader.TileMode.REPEAT,
47 Shader.TileMode.REPEAT);
  /cts/suite/audio_quality/test/
TaskProcessTest.cpp 35 const android::String8 REPEAT("repeat");
39 ASSERT_TRUE(mSequential->parseAttribute(REPEAT, N_10));
TaskSequentialTest.cpp 42 const android::String8 REPEAT("repeat");
48 ASSERT_TRUE(mSequential->parseAttribute(REPEAT, N_10));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Patterns.java 74 mShader1 = new BitmapShader(makeBitmap1(), Shader.TileMode.REPEAT,
75 Shader.TileMode.REPEAT);
76 mShader2 = new BitmapShader(makeBitmap2(), Shader.TileMode.REPEAT,
77 Shader.TileMode.REPEAT);
ShapeDrawable1.java 55 return new BitmapShader(bm, Shader.TileMode.REPEAT,
56 Shader.TileMode.REPEAT);
Xfermodes.java 110 Shader.TileMode.REPEAT,
111 Shader.TileMode.REPEAT);
  /frameworks/base/graphics/java/android/graphics/
Shader.java 46 * repeat the shader's image horizontally and vertically
48 REPEAT (1),
50 * repeat the shader's image horizontally and vertically, alternating
  /cts/tests/tests/security/src/android/security/cts/
SqliteJournalLeakTest.java 35 private static final int REPEAT = 5;
95 for(int i=REPEAT; i > 0; i--) {
  /system/extras/tests/memtest/
memtest.cpp 181 const int REPEAT = (((size < DCACHE_SIZE) ?
185 const nsecs_t overhead = loop_overhead(REPEAT);
194 register int count = REPEAT;
199 const float throughput = (size*1000000000.0f*REPEAT) / (1024*1024*t);
299 const int REPEAT = (((size < DCACHE_SIZE) ?
303 const nsecs_t overhead = loop_overhead(REPEAT);
309 size_t count = REPEAT;
315 const float throughput = (size*1000000000.0f*REPEAT) / (1024*1024*t);
438 const int REPEAT = (((size < DCACHE_SIZE) ?
442 const nsecs_t overhead = loop_overhead(REPEAT);
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ShadersActivity.java 68 mRepeatShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT,
69 Shader.TileMode.REPEAT);
71 mTranslatedShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT,
72 Shader.TileMode.REPEAT);
GradientsActivity.java 98 BitmapShader shader = new BitmapShader(texture, Shader.TileMode.REPEAT,
99 Shader.TileMode.REPEAT);
  /external/chromium/chrome/browser/
ntp_background_util.cc 36 if (tiling != ThemeService::REPEAT &&
43 if (tiling != ThemeService::REPEAT &&
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 134 case REPEAT:
165 case REPEAT:
BitmapShader_Delegate.java 209 case REPEAT:
229 case REPEAT:
  /external/webkit/Source/WebCore/html/canvas/
WebGLTexture.cpp 47 , m_wrapS(GraphicsContext3D::REPEAT)
48 , m_wrapT(GraphicsContext3D::REPEAT)
107 case GraphicsContext3D::REPEAT:
116 case GraphicsContext3D::REPEAT:
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
BitmapDrawableTest.java 166 bitmapDrawable.setTileModeY(TileMode.REPEAT);
168 assertEquals(TileMode.REPEAT, bitmapDrawable.getTileModeY());
174 bitmapDrawable.setTileModeXY(TileMode.REPEAT, TileMode.MIRROR);
175 assertEquals(TileMode.REPEAT, bitmapDrawable.getTileModeX());
326 assertEquals(TileMode.REPEAT, bitmapDrawable.getTileModeX());
327 assertEquals(TileMode.REPEAT, bitmapDrawable.getTileModeY());
  /external/chromium/chrome/browser/themes/
theme_service.h 139 REPEAT = 3
197 // Convert a tiling value into a string like "no-repeat". Public
201 // Parse tiling values from something like "no-repeat" into a Tiling value.
theme_service.cc 33 const char* ThemeService::kTilingNoRepeat = "no-repeat";
34 const char* ThemeService::kTilingRepeatX = "repeat-x";
35 const char* ThemeService::kTilingRepeatY = "repeat-y";
36 const char* ThemeService::kTilingRepeat = "repeat";
412 if (tiling == ThemeService::REPEAT)
426 return ThemeService::REPEAT;
browser_theme_pack.cc 224 { "no-repeat", ThemeService::NO_REPEAT },
225 { "repeat-x", ThemeService::REPEAT_X },
226 { "repeat-y", ThemeService::REPEAT_Y },
227 { "repeat", ThemeService::REPEAT },
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
BitmapDrawable.java 283 * Indicates the repeat behavior of this drawable on the X axis.
285 * @return {@link Shader.TileMode#CLAMP} if the bitmap does not repeat,
286 * {@link Shader.TileMode#REPEAT} or {@link Shader.TileMode#MIRROR} otherwise.
293 * Indicates the repeat behavior of this drawable on the Y axis.
295 * @return {@link Shader.TileMode#CLAMP} if the bitmap does not repeat,
296 * {@link Shader.TileMode#REPEAT} or {@link Shader.TileMode#MIRROR} otherwise.
303 * Sets the repeat behavior of this drawable on the X axis. By default, the drawable
304 * does not repeat its bitmap. Using {@link Shader.TileMode#REPEAT} or
308 * @param mode The repeat mode for this drawable
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 338 REPEAT = 0x2901,
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 354 Shader.TileMode.REPEAT, Shader.TileMode.CLAMP);
401 * <li>behavior = repeat</li>
    [all...]

Completed in 505 milliseconds

1 2