OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sColors
(Results
1 - 9
of
9
) 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
47
private static TypedArray
sColors
;
75
if (
sColors
== null) {
76
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/services/core/java/com/android/server/policy/
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
97
static int
sColors
[] = { 0xffff0000, 0xff00ff00, 0xff0000ff };
284
canvas.drawColor(
sColors
[sColorIndex]);
285
if (++sColorIndex >=
sColors
.length) sColorIndex = 0;
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
MLand.java
[
all
...]
/external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar
android-all-5.0.0_r2-robolectric-1.jar
android-all-5.1.1_r9-robolectric-1.jar
Completed in 285 milliseconds