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

1 2 3 4 5

  /frameworks/base/graphics/java/android/graphics/
ImageFormat.java 28 * RGB format used for pictures encoded as RGB_565. See
31 public static final int RGB_565 = 4;
368 case RGB_565:
406 case RGB_565:
PixelFormat.java 40 public static final int RGB_565 = 4;
95 case RGB_565:
157 case RGB_565:
  /external/chromium_org/cc/resources/
resource_format.cc 19 case RGB_565:
resource_format.h 20 RGB_565,
  /cts/tests/tests/graphics/src/android/graphics/cts/
Bitmap_ConfigTest.java 26 assertEquals(Config.RGB_565, Config.valueOf("RGB_565"));
36 assertEquals(Config.RGB_565, config[1]);
44 assertNotNull(Bitmap.createBitmap(10, 24, Config.RGB_565));
BitmapTest.java 103 mBitmap.copy(Config.RGB_565, false);
183 Bitmap bitmap = Bitmap.createBitmap(colors, 10, 10, Config.RGB_565);
188 assertEquals(Config.RGB_565, ret.getConfig());
257 Bitmap ret = Bitmap.createBitmap(100, 200, Config.RGB_565);
261 assertEquals(Config.RGB_565, ret.getConfig());
269 Bitmap.createBitmap(colors, 0, 100, -1, 100, Config.RGB_565);
276 Bitmap.createBitmap(colors, 10, 10, 100, 100, Config.RGB_565);
283 Bitmap.createBitmap(colors, -10, 100, 100, 100, Config.RGB_565);
290 Bitmap.createBitmap(colors, 10, 100, 100, 100, Config.RGB_565);
297 Bitmap.createBitmap(colors, 10, 100, 50, 100, Config.RGB_565);
    [all...]
ShaderTest.java 34 Bitmap bitmap = Bitmap.createBitmap(color, width, height, Bitmap.Config.RGB_565);
Canvas_VertexModeTest.java 45 Bitmap bitmap = Bitmap.createBitmap(10, 27, Config.RGB_565);
PixelFormatTest.java 55 PixelFormat.getPixelFormatInfo(PixelFormat.RGB_565, mPixelFormat);
124 assertFalse(PixelFormat.formatHasAlpha(PixelFormat.RGB_565));
BitmapRegionDecoderTest.java 78 Config.RGB_565};
90 // MSE margin for WebP Region-Decoding for 'Config.RGB_565' is little bigger.
177 if (RES_IDS[i] == R.drawable.webp_test && COLOR_CONFIGS[k] == Config.RGB_565) {
207 if (RES_IDS[i] == R.drawable.webp_test && COLOR_CONFIGS[k] == Config.RGB_565) {
233 if (RES_IDS[i] == R.drawable.webp_test && COLOR_CONFIGS[k] == Config.RGB_565) {
257 if (RES_IDS[i] == R.drawable.webp_test && COLOR_CONFIGS[k] == Config.RGB_565) {
269 if (RES_IDS[i] == R.drawable.webp_test && COLOR_CONFIGS[k] == Config.RGB_565) {
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
GraphicsPerformanceTests.java 93 Bitmap.Config.RGB_565);
205 return Bitmap.createBitmap(7, 7, Bitmap.Config.RGB_565);
223 return Bitmap.createBitmap(15, 15, Bitmap.Config.RGB_565);
241 return Bitmap.createBitmap(31, 31, Bitmap.Config.RGB_565);
259 return Bitmap.createBitmap(63, 63, Bitmap.Config.RGB_565);
277 return Bitmap.createBitmap(127, 127, Bitmap.Config.RGB_565);
295 return Bitmap.createBitmap(319, 239, Bitmap.Config.RGB_565);
313 return Bitmap.createBitmap(319, 479, Bitmap.Config.RGB_565);
331 return Bitmap.createBitmap(8, 8, Bitmap.Config.RGB_565);
349 return Bitmap.createBitmap(16, 16, Bitmap.Config.RGB_565);
    [all...]
ThreadBitmapTest.java 41 b = Bitmap.createBitmap(300, 300, Bitmap.Config.RGB_565);
BitmapFactoryTest.java 34 new int[] { Color.BLUE }, 1, 1, Bitmap.Config.RGB_565);
BitmapTest.java 28 Bitmap bm2 = Bitmap.createBitmap(100, 200, Bitmap.Config.RGB_565);
56 assertTrue("getConfig", bm2.getConfig() == Bitmap.Config.RGB_565);
112 Bitmap bm = Bitmap.createBitmap(colors, 10, 10, Bitmap.Config.RGB_565);
155 Bitmap.Config config = Bitmap.Config.RGB_565;
  /external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
BitmapHelper.java 93 case RGB_565:
94 return BitmapFormat.RGB_565;
112 case BitmapFormat.RGB_565:
113 return Bitmap.Config.RGB_565;
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerRunningTaskInfoTest.java 63 Bitmap.Config.RGB_565);
72 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig());
91 Bitmap.Config.RGB_565);
99 assertEquals(Bitmap.Config.RGB_565, values.thumbnail.getConfig());
  /external/glide/library/tests/src/com/bumptech/glide/load/engine/bitmap_recycle/
SizeStrategyTest.java 28 assertEquals(original, strategy.get(800, 400, Bitmap.Config.RGB_565));
66 Bitmap result = strategy.get(100, 100, Bitmap.Config.RGB_565);
67 assertEquals(Bitmap.Config.RGB_565, result.getConfig());
93 Bitmap other = Bitmap.createBitmap(1000, 1000, Bitmap.Config.RGB_565);
96 strategy.get(1000, 1000, Bitmap.Config.RGB_565);
  /development/ndk/platforms/android-8/samples/bitmap-plasma/src/com/example/plasma/
Plasma.java 53 mBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CreateBitmap.java 80 Bitmap.Config.RGB_565);
88 Bitmap.Config.RGB_565);
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureCtsActivity.java 52 optionsRGB.inPreferredConfig = Bitmap.Config.RGB_565;
  /cts/tests/tests/permission/src/android/permission/cts/
NoSystemFunctionPermissionTest.java 86 Bitmap bitmap = Bitmap.createBitmap(1, 1, Bitmap.Config.RGB_565);
  /external/chromium_org/content/browser/compositor/
overlay_candidate_validator_ozone.cc 20 case cc::RGB_565:
  /frameworks/volley/tests/src/com/android/volley/toolbox/
ImageRequestTest.java 64 "", null, maxWidth, maxHeight, Config.RGB_565, null);
  /external/chromium_org/chrome/browser/ui/app_list/
fast_show_pickler.cc 23 RGB_565,
39 case RGB_565:
65 *out = RGB_565;
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ClipDrawableTest.java 105 Bitmap bitmap = Bitmap.createBitmap(100, 50, Config.RGB_565);
119 Bitmap bitmap = Bitmap.createBitmap(100, 50, Config.RGB_565);
129 new BitmapDrawable(Bitmap.createBitmap(100, 50, Config.RGB_565));
134 bmpDrawable = new BitmapDrawable(Bitmap.createBitmap(100, 50, Config.RGB_565));
189 new BitmapDrawable(Bitmap.createBitmap(100, 50, Config.RGB_565));

Completed in 3489 milliseconds

1 2 3 4 5