Searched refs:tintArea (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationIconAreaController.java100 * @param tintArea the area in which to tint the icons, specified in screen coordinates
102 public void setTintArea(Rect tintArea) { argument
103 if (tintArea == null) {
106 mTintArea.set(tintArea);
H A DStatusBarIconController.java481 * the screen {@param tintArea} in which to apply that tint
483 public static int getTint(Rect tintArea, View view, int color) { argument
484 if (isInArea(tintArea, view)) {
493 * {@param intensity} and the screen {@param tintArea} in which to apply that intensity
495 public static float getDarkIntensity(Rect tintArea, View view, float intensity) { argument
496 if (isInArea(tintArea, view)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSignalClusterView.java530 public void setIconTint(int tint, float darkIntensity, Rect tintArea) { argument
532 || !mTintArea.equals(tintArea);
535 mTintArea.set(tintArea);
680 public void setIconTint(int tint, float darkIntensity, Rect tintArea) { argument
682 StatusBarIconController.getDarkIntensity(tintArea, mMobile, darkIntensity),
684 setTint(mMobileType, StatusBarIconController.getTint(tintArea, mMobileType, tint));

Completed in 80 milliseconds