Home
last modified time | relevance | path

Searched refs:newColors (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationTemplateViewWrapper.java395 int[] newColors = new int[colors.length]; in disableActionView() local
401 newColors[j] = color; in disableActionView()
404 textColors.getStates(), newColors); in disableActionView()
/frameworks/base/core/java/android/appwidget/
DAppWidgetHostView.java969 private boolean isSameColorMapping(SparseIntArray oldColors, SparseIntArray newColors) { in isSameColorMapping() argument
970 if (oldColors.size() != newColors.size()) { in isSameColorMapping()
974 if (oldColors.keyAt(i) != newColors.keyAt(i) in isSameColorMapping()
975 || oldColors.valueAt(i) != newColors.valueAt(i)) { in isSameColorMapping()
/frameworks/base/core/java/com/android/internal/util/
DContrastColorUtil.java319 int[] newColors = new int[colors.length]; in ensureColorSpanContrast() local
320 for (int i = 0; i < newColors.length; i++) { in ensureColorSpanContrast()
322 newColors[i] = ContrastColorUtil.ensureLargeTextContrast( in ensureColorSpanContrast()
326 newColors); in ensureColorSpanContrast()
/frameworks/base/core/java/android/service/wallpaper/
DWallpaperService.java939 final WallpaperColors newColors = onComputeColors(); in notifyColorsChanged() local
941 mConnection.onWallpaperColorsChanged(newColors, mDisplay.getDisplayId()); in notifyColorsChanged()