HomeSort by relevance Sort by last modified time
    Searched defs:restoreAlpha (Results 1 - 2 of 2) sorted by null

  /frameworks/base/graphics/java/android/graphics/drawable/
NinePatchDrawable.java 248 final int restoreAlpha;
250 restoreAlpha = mPaint.getAlpha();
251 mPaint.setAlpha((int) (restoreAlpha * mNinePatchState.mBaseAlpha + 0.5f));
253 restoreAlpha = -1;
262 if (restoreAlpha >= 0) {
263 mPaint.setAlpha(restoreAlpha);
BitmapDrawable.java 510 final int restoreAlpha;
513 restoreAlpha = p.getAlpha();
514 p.setAlpha((int) (restoreAlpha * state.mBaseAlpha + 0.5f));
516 restoreAlpha = -1;
564 if (restoreAlpha >= 0) {
565 paint.setAlpha(restoreAlpha);

Completed in 53 milliseconds