Home | History | Annotate | Download | only in widget

Lines Matching refs:secondaryProgress

325                         (id == R.id.progress || id == R.id.secondaryProgress));
538 doRefreshProgress(R.id.secondaryProgress, mSecondaryProgress, false, false);
729 * @param secondaryProgress the new secondary progress, between 0 and {@link #getMax()}
736 public synchronized void setSecondaryProgress(int secondaryProgress) {
741 if (secondaryProgress < 0) {
742 secondaryProgress = 0;
745 if (secondaryProgress > mMax) {
746 secondaryProgress = mMax;
749 if (secondaryProgress != mSecondaryProgress) {
750 mSecondaryProgress = secondaryProgress;
751 refreshProgress(R.id.secondaryProgress, mSecondaryProgress, false);
1099 int secondaryProgress;
1114 secondaryProgress = in.readInt();
1121 out.writeInt(secondaryProgress);
1143 ss.secondaryProgress = mSecondaryProgress;
1154 setSecondaryProgress(ss.secondaryProgress);