HomeSort by relevance Sort by last modified time
    Searched refs:sColors (Results 1 - 6 of 6) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ColorPicker.java 40 private static TypedArray sColors;
43 * Cached value of {@code sColors.length()}.
54 if (sColors == null) {
55 sColors = res.obtainTypedArray(R.array.letter_tile_colors);
56 sColorCount = sColors.length();
64 return sColors.getColor(color, sDefaultColor);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/lettertiles/
LetterTileDrawable.java 49 private static TypedArray sColors;
80 if (sColors == null) {
81 sColors = res.obtainTypedArray(R.array.letter_tile_colors);
183 final int color = Math.abs(identifier.hashCode()) % sColors.length();
184 return sColors.getColor(color, sDefaultColor);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 43 private static final int sColors[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
155 canvas.drawColor(sColors[mColorIndex]);
156 if (++mColorIndex >= sColors.length) mColorIndex = 0;
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 62 static int sColors[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
150 canvas.drawColor(sColors[sColorIndex]);
151 if (++sColorIndex >= sColors.length) sColorIndex = 0;
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 69 static int sColors[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
202 canvas.drawColor(sColors[sColorIndex]);
203 if (++sColorIndex >= sColors.length) sColorIndex = 0;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
LLand.java 721 private final int[] sColors = new int[] {
742 getBackground().setTint(sColors[0]);
    [all...]

Completed in 625 milliseconds