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

/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerInternal.java24 void notificationLightPulse(int argb, int onMillis, int offMillis); argument
/frameworks/base/graphics/java/android/graphics/
H A DColor.java107 public static int argb(int alpha, int red, int green, int blue) { method in class:Color
235 * @return the resulting argb color
252 * @return the resulting argb color
327 * Convert the argb color to its HSV components.
331 * @param color the argb color to convert. The alpha component is ignored.
345 * @return the resulting argb color
358 * @param alpha the alpha component of the returned argb color.
360 * @return the resulting argb color
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java103 public 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/
H A DCommandQueue.java100 public void notificationLightPulse(int argb, int onMillis, int offMillis); argument
236 public void notificationLightPulse(int argb, int onMillis, int offMillis) { argument
238 mHandler.obtainMessage(MSG_NOTIFICATION_LIGHT_PULSE, onMillis, offMillis, argb)
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java789 private int getMultipliedAlpha(int argb, int alpha) { argument
790 return (int) (Color.alpha(argb) * (alpha / 255.0) + 0.5);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java711 * @param argb The color used to fill the shape
716 public void setColor(int argb) { argument
717 mGradientState.setColorStateList(ColorStateList.valueOf(argb));
718 mFillPaint.setColor(argb);
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java1170 * Set the argb value that you would like the LED on the device to blnk, as well as the
1174 public Builder setLights(int argb, int onMs, int offMs) { argument
1175 mNotification.ledARGB = argb;
1476 * @param argb The accent color to use
1480 public Builder setColor(int argb) { argument
1481 mColor = argb;
/frameworks/base/core/java/android/app/
H A DNotification.java2388 public Builder setLights(int argb, int onMs, int offMs) { argument
2389 mLedArgb = argb;
2708 * @param argb The accent color to use
2712 public Builder setColor(int argb) { argument
2713 mColor = argb;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java2562 public void notificationLightPulse(int argb, int onMillis, int offMillis) { argument

Completed in 261 milliseconds