OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sColors
(Results
1 - 4
of
4
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/lettertiles/
LetterTileDrawable.java
49
private static TypedArray
sColors
;
82
if (
sColors
== null) {
83
sColors
= res.obtainTypedArray(R.array.letter_tile_colors);
177
return
sColors
.getColor(color, sDefaultColor);
/frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java
52
private static final int
sColors
[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
164
canvas.drawColor(
sColors
[mColorIndex]);
165
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
65
static int
sColors
[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
179
canvas.drawColor(
sColors
[sColorIndex]);
180
if (++sColorIndex >=
sColors
.length) sColorIndex = 0;
Completed in 38 milliseconds