Searched refs:argb (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DMinimizedDockShadow.java58 final int middleColor = Color.argb(
60 final int quarter = Color.argb(
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationUtils.java48 return Color.argb(
H A DImageGradientColorizer.java75 new int[] {0, Color.argb(0.5f, 1, 1, 1), Color.BLACK},
97 new int[] {0, Color.argb(0.5f, 1, 1, 1), Color.BLACK},
H A DNotificationTemplateViewWrapper.java226 return Color.argb(
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DColorFilterCache.java56 int color = Color.argb(i, r, g, b);
H A DColorOverlayDimmer.java133 return Color.argb(Color.alpha(color),
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap_Delegate.java286 int[] argb = new int[width * height];
287 srcImage.getRGB(0, 0, width, height, argb, 0, width);
288 image.setRGB(0, 0, width, height, argb, 0, width);
713 int[] argb = new int[w * h];
714 image.getRGB(0, 0, image.getWidth(), image.getHeight(), argb, 0, image.getWidth());
717 final int length = argb.length;
719 int a = (argb[i] >>> 24 * alpha) / 255;
720 argb[i] = (a << 24) | (argb[i] & 0x00FFFFFF);
724 result.setRGB(0, 0, w, h, argb,
[all...]
H A DBaseCanvas_Delegate.java704 int[] argb = new int[w * h];
705 image.getRGB(0, 0, image.getWidth(), image.getHeight(), argb, 0, image.getWidth());
707 final int length = argb.length;
709 argb[i] &= 0xFF000000;
711 argb[i] |= texture.getElem(i) & 0x00FFFFFF;
715 image.setRGB(0, 0, w, h, argb, 0, w);
/frameworks/base/core/java/android/view/
H A DRoundScrollbarRenderer.java109 return Color.argb(alphaByte, Color.red(color), Color.green(color), Color.blue(color));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherScrim.java105 new int[] { Color.argb(
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
H A DWorkLockActivityTest.java88 final @ColorInt int transparentColor = Color.argb(0, 0, 0, 0);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLCanvas.java43 public abstract void clearBuffer(float[] argb); argument
H A DGLES20Canvas.java370 public void clearBuffer(float[] argb) { argument
371 GLES20.glClearColor(argb[1], argb[2], argb[3], argb[0]);
/frameworks/base/graphics/java/android/graphics/
H A DColor.java84 * {@link #argb(int, int, int, int)} and {@link #rgb(int, int, int)}. The second
87 * defined in the \([0..1]\) range: {@link #argb(float, float, float, float)} and
196 * equivalent of {@link #rgb(int, int, int)} and {@link #argb(int, int, int, int)}
1043 int argb =
1048 return (argb & 0xffffffffL) << 32;
1319 public static int argb( method in class:Color
1338 public static int argb(float alpha, float red, float green, float blue) { method in class:Color
1432 * @param color the argb color to convert. The alpha component is ignored.
1448 * @return the resulting argb color
1464 * @param alpha the alpha component of the returned argb colo
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DGlifPatternDrawable.java301 mColor = Color.argb(COLOR_ALPHA_INT, r, g, b);
316 return Color.argb(255, Color.red(mColor), Color.green(mColor), Color.blue(mColor));
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewThumbnail.java226 mLightingColorFilter.setColorMultiply(Color.argb(255, mul, mul, mul));
235 mDrawPaint.setColor(Color.argb(255, grey, grey, grey));
H A DTaskViewHeader.java84 mBackgroundPaint.setColor(Color.argb(255, 0, 0, 0));
86 mHighlightPaint.setColor(Color.argb(255, 255, 255, 255));
228 mBackground.setColorAndDim(Color.argb(255, 0, 0, 0), 0f);
231 mDimLayerPaint.setColor(Color.argb(255, 0, 0, 0));
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java244 return Color.argb(Color.alpha(color),
310 fg = Color.argb(alpha, r, g, b);
317 return Color.argb(high, r, g, b);
583 return Color.argb(a, r, g, b);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSIconViewImpl.java154 setTint(iv, Color.argb(alpha, channel, channel, channel));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DScrimView.java120 color = Color.argb((int) (Color.alpha(color) * mViewAlpha), Color.red(color),
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBarTransitions.java267 mColor = Color.argb(
/frameworks/base/core/java/android/app/
H A DNotificationChannel.java372 public void setLightColor(int argb) { argument
373 this.mLightColor = argb;
/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java60 return Color.argb(a, r, g, b);
549 return Color.argb((int) a, (int) r, (int) g, (int) b);
/frameworks/support/core-utils/java/android/support/v4/graphics/
H A DColorUtils.java59 return Color.argb(a, r, g, b);
548 return Color.argb((int) a, (int) r, (int) g, (int) b);
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DBitmapTest.java228 int cc = Color.argb(a0, rr, gg, bb);

Completed in 3774 milliseconds

12