OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:secondaryProgress
(Results
1 - 22
of
22
) sorted by null
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowProgressBar.java
12
private int
secondaryProgress
;
50
public void setSecondaryProgress(int
secondaryProgress
) {
51
if (!isIndeterminate()) this.
secondaryProgress
= Math.min(max,
secondaryProgress
);
56
return isIndeterminate ? 0 :
secondaryProgress
;
76
if (!isIndeterminate()) setSecondaryProgress(
secondaryProgress
+ diff);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java
63
android.R.attr.
secondaryProgress
,
171
(id == android.R.id.progress || id == android.R.id.
secondaryProgress
));
373
doRefreshProgress(android.R.id.
secondaryProgress
, mSecondaryProgress, false, false);
493
* @param
secondaryProgress
the new secondary progress, between 0 and {@link #getMax()}
499
public synchronized void setSecondaryProgress(int
secondaryProgress
) {
504
if (
secondaryProgress
< 0) {
505
secondaryProgress
= 0;
508
if (
secondaryProgress
> mMax) {
509
secondaryProgress
= mMax;
512
if (
secondaryProgress
!= mSecondaryProgress)
[
all
...]
/frameworks/base/core/java/android/widget/
ProgressBar.java
327
(id == R.id.progress || id == R.id.
secondaryProgress
));
546
doRefreshProgress(R.id.
secondaryProgress
, mSecondaryProgress, false, false);
724
* @param
secondaryProgress
the new secondary progress, between 0 and {@link #getMax()}
731
public synchronized void setSecondaryProgress(int
secondaryProgress
) {
736
if (
secondaryProgress
< 0) {
737
secondaryProgress
= 0;
740
if (
secondaryProgress
> mMax) {
741
secondaryProgress
= mMax;
744
if (
secondaryProgress
!= mSecondaryProgress) {
745
mSecondaryProgress =
secondaryProgress
;
[
all
...]
RatingBar.java
273
final int
secondaryProgress
= (int) (Math.ceil(progressInStars) * ratio);
274
setSecondaryProgress(
secondaryProgress
);
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java
321
(id == R.id.progress || id == R.id.
secondaryProgress
));
534
doRefreshProgress(R.id.
secondaryProgress
, mSecondaryProgress, false, false);
680
* @param
secondaryProgress
the new secondary progress, between 0 and {@link #getMax()}
687
public synchronized void setSecondaryProgress(int
secondaryProgress
) {
692
if (
secondaryProgress
< 0) {
693
secondaryProgress
= 0;
696
if (
secondaryProgress
> mMax) {
697
secondaryProgress
= mMax;
700
if (
secondaryProgress
!= mSecondaryProgress) {
701
mSecondaryProgress =
secondaryProgress
;
[
all
...]
/frameworks/base/core/java/android/app/
ProgressDialog.java
222
public void setSecondaryProgress(int
secondaryProgress
) {
224
mProgress.setSecondaryProgress(
secondaryProgress
);
227
mSecondaryProgressVal =
secondaryProgress
;
Activity.java
[
all
...]
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/6/
android.jar
/prebuilts/sdk/15/
android.jar
/prebuilts/sdk/18/
android.jar
/prebuilts/sdk/19/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/current/
android.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/17/
android.jar
/prebuilts/sdk/9/
android.jar
/prebuilts/sdk/7/
android.jar
/prebuilts/sdk/13/
android.jar
Completed in 1225 milliseconds