Searched defs:argb (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DColor.java111 public static int argb(int alpha, int red, int green, int blue) { method in class:Color
184 * Convert the argb color to its HSV components.
188 * @param color the argb color to convert. The alpha component is ignored.
202 * @return the resulting argb color
215 * @param alpha the alpha component of the returned argb color.
217 * @return the resulting argb color
/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerInternal.java27 void notificationLightPulse(int argb, int onMillis, int offMillis); argument
/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/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java98 public void notificationLightPulse(int argb, int onMillis, int offMillis) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java120 void notificationLightPulse(int argb, int onMillis, int offMillis); argument
308 public void notificationLightPulse(int argb, int onMillis, int offMillis) { argument
310 mHandler.obtainMessage(MSG_NOTIFICATION_LIGHT_PULSE, onMillis, offMillis, argb)
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java785 private int getMultipliedAlpha(int argb, int alpha) { argument
786 return (int) (Color.alpha(argb) * (alpha / 255.0) + 0.5);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java885 * @param argb The color used to fill the shape
891 public void setColor(@ColorInt int argb) { argument
892 mGradientState.setSolidColors(ColorStateList.valueOf(argb));
893 mFillPaint.setColor(argb);
/frameworks/base/core/java/android/app/
H A DNotification.java2847 public Builder setLights(@ColorInt int argb, int onMs, int offMs) { argument
2848 mN.ledARGB = argb;
3201 * @param argb The accent color to use
3205 public Builder setColor(@ColorInt int argb) { argument
3206 mN.color = argb;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java3043 public void notificationLightPulse(int argb, int onMillis, int offMillis) { argument
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java1345 * Set the argb value that you would like the LED on the device to blink, as well as the
1349 public Builder setLights(@ColorInt int argb, int onMs, int offMs) { argument
1350 mNotification.ledARGB = argb;
1651 * @param argb The accent color to use
1655 public Builder setColor(@ColorInt int argb) { argument
1656 mColor = argb;

Completed in 412 milliseconds