Searched defs:mColorIndex (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/policy/
H A DIconUtilities.java58 private int mColorIndex = 0; field in class:IconUtilities
155 canvas.drawColor(sColors[mColorIndex]);
156 if (++mColorIndex >= sColors.length) mColorIndex = 0;
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java481 // mColorIndex represents the offset into the available mColors that the
483 // animating, the mColorIndex moves by one to the next available color.
484 private int mColorIndex; field in class:MaterialProgressDrawable.Ring
610 mColorIndex = index;
611 mCurrentColor = mColors[mColorIndex];
622 return (mColorIndex + 1) % (mColors.length);
686 return mColors[mColorIndex];

Completed in 687 milliseconds