/external/skia/src/core/ |
SkConvolver.h | 194 // (this is ARGB when loaded into 32-bit words on a little-endian machine).
|
/external/webp/src/enc/ |
picture_psnr.c | 78 // TODO(skal): provide distortion for ARGB too.
|
vp8enci.h | 558 // Remove reference to the ARGB/YUVA buffer (doesn't free anything). 561 // Allocates ARGB buffer of given dimension (previous one is always free'd). 568 // Preserves the ARGB buffer.
|
/frameworks/base/core/jni/android/graphics/pdf/ |
PdfRenderer.cpp | 164 // format is ARGB while the renderer uses BGRA internally.
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
BitmapTest.java | 227 int cc = Color.argb(a0, rr, gg, bb);
|
/frameworks/base/libs/hwui/ |
Caches.h | 160 * Returns a non-premultiplied ARGB color for the specified
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 43 public abstract void clearBuffer(float[] argb);
|
/frameworks/support/v7/palette/src/android/support/v7/graphics/ |
ColorUtils.java | 40 return Color.argb((int) a, (int) r, (int) g, (int) b);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/ |
vpx_image.h | 51 VPX_IMG_FMT_ARGB, /**< 32 bit packed ARGB, alpha=255 */
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
CropDrawingUtils.java | 33 p.setColor(Color.argb(128, 255, 255, 255));
|
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 45 public abstract void clearBuffer(float[] argb);
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 43 public abstract void clearBuffer(float[] argb);
|
/external/chromium_org/media/base/ |
yuv_convert.cc | 15 // ARGB pixel format is output, which on little endian is stored as BGRA. 222 // Scale a frame of YUV to 32 bit ARGB. 412 // Scale a frame of YV12 to 32 bit ARGB for a specific rectangle.
|
/external/chromium_org/third_party/libwebp/enc/ |
vp8enci.h | 558 // Remove reference to the ARGB/YUVA buffer (doesn't free anything). 561 // Allocates ARGB buffer of given dimension (previous one is always free'd). 568 // Preserves the ARGB buffer.
|
/frameworks/base/media/mca/effect/java/android/media/effect/ |
EffectFactory.java | 213 * <td>Integer, representing an ARGB color with 8 bits per channel. May be created using 218 * <td>Integer, representing an ARGB color with 8 bits per channel. May be created using 403 * <td>Integer, representing an ARGB color with 8 bits per channel. May be created using
|
/hardware/intel/img/psb_video/src/mrst/ |
pvr2d.h | 88 #define PVR2D_ARGB4444 0x02UL // Common argb 4444 format 90 #define PVR2D_ARGB8888 0x04UL // Common argb 8888 format 91 #define PVR2D_ARGB1555 0x05UL // Common argb 1555 format [all...] |
/hardware/qcom/msm8x26/original-kernel-headers/linux/ |
msm_mdp.h | 117 MDP_ARGB_8888, /* ARGB 888 */ 126 MDP_RGBA_8888, /* ARGB 888 */ 143 MDP_ARGB_8888_TILE, /* ARGB 8888 in tile format */
|
/hardware/qcom/msm8x84/original-kernel-headers/linux/ |
msm_mdp.h | 120 MDP_ARGB_8888, /* ARGB 888 */ 129 MDP_RGBA_8888, /* ARGB 888 */ 146 MDP_ARGB_8888_TILE, /* ARGB 8888 in tile format */
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
Utilities.java | 440 int argb = bitmap.getPixel(x, y); local 441 int alpha = 0xFF & (argb >> 24); 447 int rgb = argb | 0xFF000000;
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render.cpp | 156 FX_ARGB CPDF_RenderOptions::TranslateColor(FX_ARGB argb) const
159 return argb;
162 return argb;
165 ArgbDecode(argb, a, r, g, b);
175 return argb;
[all...] |
/external/chromium_org/third_party/libyuv/source/ |
row_common.cc | 303 MAKEROWY(ARGB, 2, 1, 0, 4) 385 MAKEROWYJ(ARGB, 2, 1, 0, 4) [all...] |
/external/libyuv/files/source/ |
row_posix.cc | 33 // Constants for ARGB 81 // Shuffle table for converting RGB24 to ARGB. 86 // Shuffle table for converting RAW to ARGB. 91 // Shuffle table for converting ABGR to ARGB. 96 // Shuffle table for converting BGRA to ARGB. 101 // Shuffle table for converting RGBA to ARGB. 106 // Shuffle table for converting ARGB to RGBA. 111 // Shuffle table for converting ARGB to RGB24. 116 // Shuffle table for converting ARGB to RAW. [all...] |
/frameworks/base/docs/html/reference/com/google/android/gms/maps/model/ |
Polygon.html | 826 <dd>Line segment color in ARGB format, the same format used by <code><a href="/reference/android/graphics/Color.html">Color</a></code>. 829 <dd>Fill color in ARGB format, the same format used by <code><a href="/reference/android/graphics/Color.html">Color</a></code>. The [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Bitmap.java | [all...] |
/frameworks/base/graphics/java/android/graphics/drawable/ |
GradientDrawable.java | 491 * ARGB integer and the array must contain at least 2 colors.</p> 496 * @param colors 2 or more ARGB colors 706 * @param argb The color used to fill the shape 711 public void setColor(int argb) { 712 mGradientState.setColorStateList(ColorStateList.valueOf(argb)); 713 mFillPaint.setColor(argb); [all...] |