OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSecondaryProgress
(Results
1 - 3
of
3
) sorted by null
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java
83
private int
mSecondaryProgress
;
120
setSecondaryProgress(a.getInt(2,
mSecondaryProgress
));
244
mSecondaryProgress
= 0;
373
doRefreshProgress(android.R.id.secondaryProgress,
mSecondaryProgress
, false, false);
512
if (secondaryProgress !=
mSecondaryProgress
) {
513
mSecondaryProgress
= secondaryProgress;
514
refreshProgress(android.R.id.secondaryProgress,
mSecondaryProgress
, false);
547
return mIndeterminate ? 0 :
mSecondaryProgress
;
606
setSecondaryProgress(
mSecondaryProgress
+ diff);
884
ss.secondaryProgress =
mSecondaryProgress
;
[
all
...]
/frameworks/base/core/java/android/widget/
ProgressBar.java
203
private int
mSecondaryProgress
;
292
a.getInt(R.styleable.ProgressBar_secondaryProgress,
mSecondaryProgress
));
414
mSecondaryProgress
= 0;
551
doRefreshProgress(R.id.secondaryProgress,
mSecondaryProgress
, false, false);
749
if (secondaryProgress !=
mSecondaryProgress
) {
750
mSecondaryProgress
= secondaryProgress;
751
refreshProgress(R.id.secondaryProgress,
mSecondaryProgress
, false);
786
return mIndeterminate ? 0 :
mSecondaryProgress
;
847
setSecondaryProgress(
mSecondaryProgress
+ diff);
[
all
...]
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java
200
private int
mSecondaryProgress
;
285
a.getInt(R.styleable.ProgressBar_secondaryProgress,
mSecondaryProgress
));
403
mSecondaryProgress
= 0;
534
doRefreshProgress(R.id.secondaryProgress,
mSecondaryProgress
, false, false);
700
if (secondaryProgress !=
mSecondaryProgress
) {
701
mSecondaryProgress
= secondaryProgress;
702
refreshProgress(R.id.secondaryProgress,
mSecondaryProgress
, false);
737
return mIndeterminate ? 0 :
mSecondaryProgress
;
798
setSecondaryProgress(
mSecondaryProgress
+ diff);
[
all
...]
Completed in 40 milliseconds