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

  /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);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactDrawable.java 58 private static TypedArray sColors;
97 if (sColors == null) {
98 sColors = res.obtainTypedArray(R.array.letter_tile_colors);
99 sColorCount = sColors.length();
210 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 67 static int sColors[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
190 canvas.drawColor(sColors[sColorIndex]);
191 if (++sColorIndex >= sColors.length) sColorIndex = 0;

Completed in 207 milliseconds