Home
last modified time | relevance | path

Searched refs:iconColor (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/privacy/
DOngoingPrivacyChip.kt35 private var iconColor = 0 in <lambda>() variable
59 it.setTint(iconColor) in <lambda>()
93 iconColor = in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
DSplashscreenContentDrawer.java416 final ColorCache.IconColor iconColor = mColorCache.getIconColor( in processAdaptiveIcon() local
424 Slog.d(TAG, "FgMainColor=" + Integer.toHexString(iconColor.mFgColor) in processAdaptiveIcon()
425 + " BgMainColor=" + Integer.toHexString(iconColor.mBgColor) in processAdaptiveIcon()
426 + " IsBgComplex=" + iconColor.mIsBgComplex in processAdaptiveIcon()
427 + " FromCache=" + (iconColor.mReuseCount > 0) in processAdaptiveIcon()
439 if (!iconColor.mIsBgComplex && mTmpAttrs.mIconBgColor == Color.TRANSPARENT in processAdaptiveIcon()
440 && (isRgbSimilarInHsv(mThemeColor, iconColor.mBgColor) in processAdaptiveIcon()
441 || (iconColor.mIsBgGrayscale in processAdaptiveIcon()
442 && !isRgbSimilarInHsv(mThemeColor, iconColor.mFgColor)))) { in processAdaptiveIcon()
449 iconColor.mFgNonTranslucentRatio < ENLARGE_FOREGROUND_ICON_THRESHOLD in processAdaptiveIcon()
[all …]
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
DFastBitmapDrawable.java88 protected FastBitmapDrawable(Bitmap b, int iconColor) { in FastBitmapDrawable() argument
89 this(b, iconColor, false); in FastBitmapDrawable()
92 protected FastBitmapDrawable(Bitmap b, int iconColor, boolean isDisabled) { in FastBitmapDrawable() argument
94 mIconColor = iconColor; in FastBitmapDrawable()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLockIcon.java152 void updateColor(int iconColor) { in updateColor() argument
153 if (mIconColor == iconColor) { in updateColor()
157 mIconColor = iconColor; in updateColor()
DKeyguardStatusBarView.java494 @ColorInt int iconColor = Utils.getColorStateListDefaultColor(mContext, in updateIconsAndTextColors() local
498 mCarrierLabel.setTextColor(iconColor); in updateIconsAndTextColors()
500 mIconManager.setTint(iconColor); in updateIconsAndTextColors()
503 applyDarkness(R.id.battery, mEmptyRect, intensity, iconColor); in updateIconsAndTextColors()
504 applyDarkness(R.id.clock, mEmptyRect, intensity, iconColor); in updateIconsAndTextColors()
DNotificationIconContainer.java688 public int iconColor = StatusBarIconView.NO_COLOR; field in NotificationIconContainer.IconState
791 icon.setIconColor(mInNotificationIconShelf ? mThemedTextColorPrimary : iconColor, in applyToView()
811 iconColor = ((StatusBarIconView) view).getStaticDrawableColor(); in initFrom()
DKeyguardBottomAreaView.java1017 int iconColor = Utils.getColorAttrDefaultColor( in updateAffordanceColors() local
1020 mWalletButton.getDrawable().setTint(iconColor); in updateAffordanceColors()
1021 mControlsButton.getDrawable().setTint(iconColor); in updateAffordanceColors()
/frameworks/base/core/tests/coretests/src/android/view/textclassifier/
DTextClassificationTest.java158 final int iconColor = Color.RED; in testParcelLegacy() local
163 generateTestIcon(width, height, iconColor), in testParcelLegacy()
185 assertEquals(iconColor, resultIcon.getPixel(0, 0)); in testParcelLegacy()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarIconView.java683 public void setIconColor(int iconColor, boolean animate) { in setIconColor() argument
684 if (mIconColor != iconColor) { in setIconColor()
685 mIconColor = iconColor; in setIconColor()
689 if (mCurrentSetColor == iconColor) { in setIconColor()
707 setColorInternal(iconColor); in setIconColor()
DNotificationShelf.java694 int iconColor = row.getOriginalIconColor(); local
695 shelfColor = NotificationUtils.interpolateColors(iconColor, shelfColor,
698 iconState.iconColor = shelfColor;
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/
DGlobalActionsDialogLite.java790 int iconColor = getEmergencyIconColor(context); in create() local
796 icon.getDrawable().setTint(iconColor); in create()