HomeSort by relevance Sort by last modified time
    Searched full:argb (Results 151 - 175 of 533) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
ColorFilterCache.java 56 int color = Color.argb(i, r, g, b);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
color1-expected-completion46b.txt 20 android:color : Hexadeximal color. Required. The color is specified with an RGB value and optional alpha channel. The value always begins with a pound (#) character and then followed by the Alpha-Red-Green-Blue information in one of the following formats: * RGB * ARGB * RRGGBB * AARRGGBB
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit_A.c 312 movd_m2r((*srcp), mm1);/* src(ARGB) -> mm1 (0000ARGB)*/
313 movd_m2r((*dstp), mm2);/* dst(ARGB) -> mm2 (0000ARGB)*/
405 movd_m2r((*srcp), mm1);/* src(ARGB) -> mm1 (0000ARGB)*/
406 movd_m2r((*dstp), mm2);/* dst(ARGB) -> mm2 (0000ARGB)*/
412 movd_m2r((*srcp), mm1);/* src(ARGB) -> mm1 (0000ARGB)*/
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_loadimage.cpp 1329 FX_ARGB argb = m_pPalette[index]; local
1352 FX_ARGB argb; local
    [all...]
  /external/libyuv/files/source/
scale_argb.cc 29 // ARGB scaling uses bilinear or point, but not box filter.
788 * ScaleARGB ARGB, 1/2
790 * This is an optimized version for scaling down a ARGB to 1/2 of
821 * ScaleARGB ARGB Even
823 * This is an optimized version for scaling down a ARGB to even
857 * ScaleARGB ARGB to/from any dimensions, with bilinear
906 // interpolation off, and argb pixels instead of yuv.
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_composite.cpp 1964 FX_ARGB argb = 0; local
1997 FX_ARGB argb = 0; local
2067 FX_ARGB argb = pPalette[*src_scan]; local
2107 FX_ARGB argb = pPalette[*src_scan]; local
2145 FX_ARGB argb = pPalette[*src_scan]; local
2187 FX_ARGB argb = pPalette[*src_scan]; local
2547 FX_ARGB argb = FXARGB_MAKE(0xff, src_r, src_g, src_b); local
3166 FX_ARGB argb = pPalette ? pPalette[*src_scan] : (*src_scan) * 0x010101; local
3228 FX_ARGB argb = pPalette[*src_scan]; local
3413 FX_ARGB argb = FXARGB_MAKE(0xff, src_r, src_g, src_b); local
3675 FX_ARGB argb = pSrcPalette[i]; local
    [all...]
fx_dib_main.cpp 21 void ArgbDecode(FX_DWORD argb, int& a, int& r, int& g, int& b)
23 a = FXARGB_A(argb);
24 r = FXARGB_R(argb);
25 g = FXARGB_G(argb);
26 b = FXARGB_B(argb);
28 void ArgbDecode(FX_DWORD argb, int& a, FX_COLORREF& rgb)
30 a = FXARGB_A(argb);
31 rgb = FXSYS_RGB(FXARGB_R(argb), FXARGB_G(argb), FXARGB_B(argb));
1200 FX_ARGB argb = m_pPalette[scanline[src_x]]; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorPickerDialog.java 136 return Color.argb(a, r, g, b);
160 return Color.argb(Color.alpha(color), pinToByte(ir),
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorWheel.java 153 return Color.argb(a, r, g, b);
177 return Color.argb(Color.alpha(color), pinToByte(ir),
  /external/pdfium/core/include/fpdfapi/
fpdf_render.h 82 FX_ARGB TranslateColor(FX_ARGB argb) const;
212 FX_ARGB argb);
  /external/pdfium/core/src/fxge/win32/
win32_int.h 19 int dest_width, int dest_height, FX_DWORD argb, const FX_RECT* pClipRect, int flags);
238 void _Color2Argb(FX_ARGB& argb, FX_DWORD color, int alpha_flag, void* pIccTransform);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
IconView.java 225 int startColor = Color.argb(0, 0, 0, 0);
226 int endColor = Color.argb(200, 0, 0, 0);
  /external/chromium_org/chrome/browser/history/
history_service.h     [all...]
  /external/chromium_org/media/base/
yuv_convert_unittest.cc 111 // Convert a frame of YUV to 32 bit ARGB.
140 // Convert a frame of YUV to 32 bit ARGB.
331 // Convert a frame of YUV to 32 bit ARGB.
392 // Convert a frame of YUV to 32 bit ARGB.
472 // Scale the full frame of YUV to 32 bit ARGB.
541 // Convert a frame of YUV to 32 bit ARGB using both C and MMX versions.
588 // Convert a frame of YUV to 32 bit ARGB.
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
planarfunctions_unittest.cc 379 // ARGB/ABGR/RAW/BG24 testing image.
494 // Dump the result image (ARGB format).
    [all...]
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
DesktopView.java 103 int transparentBlack = Color.argb(0, 0, 0, 0);
104 int white = Color.argb(alpha, 0xff, 0xff, 0xff);
105 int black = Color.argb(alpha, 0, 0, 0);
  /external/chromium_org/third_party/libwebp/enc/
picture.c 49 picture->argb = NULL;
78 memory = WebPSafeMalloc(argb_size, sizeof(*picture->argb));
84 picture->argb = (uint32_t*)memory;
  /external/webp/src/enc/
picture.c 49 picture->argb = NULL;
78 memory = WebPSafeMalloc(argb_size, sizeof(*picture->argb));
84 picture->argb = (uint32_t*)memory;
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
clouds.rs 270 // have ARGB, need ABGR
294 // have ARGB, need ABGR
325 // have ARGB, need ABGR
  /cts/tests/tests/graphics/src/android/graphics/cts/
ColorMatrixColorFilterTest.java 73 assertColor(Color.argb(128, 255, 0, 64), bitmap.getPixel(0, 0));
PorterDuffColorFilterTest.java 43 int filterColor = Color.argb(0x80, 0, 0xFF, 0);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
BitmapFilterTests.java 70 private static final int HALFWAY_COLOR = Color.argb(255, 127, 127, 127);
  /external/chromium_org/third_party/WebKit/public/platform/
WebImage.h 49 // A container for an ARGB bitmap.
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
mask.c 170 int argb = 0; local
171 argb = (rgba >> 8);
172 argb |= ((rgba & 0xff) << 24);
173 fprintf(stderr, "0x%x, ", argb);
  /external/mesa3d/src/gallium/state_trackers/vega/
mask.c 170 int argb = 0; local
171 argb = (rgba >> 8);
172 argb |= ((rgba & 0xff) << 24);
173 fprintf(stderr, "0x%x, ", argb);

Completed in 661 milliseconds

1 2 3 4 5 67 8 91011>>