HomeSort by relevance Sort by last modified time
    Searched refs:ProgressBar (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
ProgressBarModifier.java 21 import android.widget.ProgressBar;
27 ProgressBar pb = (ProgressBar) view;
  /external/chromium_org/ui/views/controls/
progress_bar.h 15 class VIEWS_EXPORT ProgressBar : public View {
18 ProgressBar();
19 virtual ~ProgressBar();
63 DISALLOW_COPY_AND_ASSIGN(ProgressBar);
progress_bar_unittest.cc 14 ProgressBar bar;
25 ProgressBar bar;
progress_bar.cc 134 const char ProgressBar::kViewClassName[] = "ProgressBar";
136 ProgressBar::ProgressBar()
142 ProgressBar::~ProgressBar() {
145 double ProgressBar::GetNormalizedValue() const {
152 void ProgressBar::SetDisplayRange(double min_display_value,
163 void ProgressBar::SetValue(double value) {
170 void ProgressBar::SetTooltipText(const string16& tooltip_text)
    [all...]
  /external/chromium_org/ui/views/examples/
progress_bar_example.h 14 class ProgressBar;
32 ProgressBar* progress_bar_;
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
ProgressBarWrapper.java 21 import android.widget.ProgressBar;
30 private final ProgressBar mDeterminate;
31 private final ProgressBar mIndeterminate;
34 public ProgressBarWrapper(ProgressBar determinate,
35 ProgressBar indeterminate, boolean isIndeterminate) {
  /external/chromium/chrome/browser/chromeos/
setting_level_bubble_view.h 12 class ProgressBar;
42 views::ProgressBar* progress_bar_;
  /external/chromium_org/ui/app_list/views/
progress_bar_view.h 19 class ProgressBarView : public views::ProgressBar {
  /cts/tests/tests/widget/src/android/widget/cts/
ProgressBarTest.java 32 import android.widget.ProgressBar;
45 new ProgressBar(mContext);
47 new ProgressBar(mContext, null);
49 new ProgressBar(mContext, null, android.R.attr.progressBarStyle);
53 ProgressBar progressBar = new ProgressBar(mContext);
54 assertTrue(progressBar.isIndeterminate());
56 progressBar.setIndeterminate(true);
57 assertTrue(progressBar.isIndeterminate())
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ProgressBar.java 31 class ProgressBar {
33 private static ProgressBar mProgressBar;
47 public static ProgressBar getProgressBar(Context context) {
49 mProgressBar = new ProgressBar(context);
60 private ProgressBar(Context context) {
  /external/chromium/chrome/browser/chromeos/login/
update_view.h 13 class ProgressBar;
73 views::ProgressBar* progress_bar_;
  /packages/apps/Gallery/src/com/android/camera/
DeleteImage.java 27 import android.widget.ProgressBar;
35 private ProgressBar mProgressBar;
56 mProgressBar = (ProgressBar) findViewById(R.id.delete_progress);
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsPreference.java 25 import android.widget.ProgressBar;
56 final ProgressBar progress = (ProgressBar) view.findViewById(android.R.id.progress);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerGaugePreference.java 24 import android.widget.ProgressBar;
60 final ProgressBar progress = (ProgressBar) view.findViewById(android.R.id.progress);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ProgressBar1.java 23 import android.widget.ProgressBar;
43 final ProgressBar progressHorizontal = (ProgressBar) findViewById(R.id.progress_horizontal);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
RequesterTestActivity.java 33 import android.widget.ProgressBar;
77 private ProgressBar mProgress;
111 mProgress = (ProgressBar) findViewById(R.id.p2p_progress);
112 mProgress.setVisibility(ProgressBar.VISIBLE);
165 mProgress.setVisibility(ProgressBar.VISIBLE);
187 mProgress.setVisibility(ProgressBar.INVISIBLE);
198 mProgress.setVisibility(ProgressBar.INVISIBLE);
213 mProgress.setVisibility(ProgressBar.VISIBLE);
234 mProgress.setVisibility(ProgressBar.INVISIBLE);
  /external/chromium_org/ui/message_center/views/
notification_view.h 14 class ProgressBar;
78 views::ProgressBar* progress_bar_view_;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowProgressBar.java 6 import android.widget.ProgressBar;
8 @Implements(ProgressBar.class)
  /frameworks/support/v4/java/android/support/v4/widget/
ContentLoadingProgressBar.java 22 import android.widget.ProgressBar;
25 * ContentLoadingProgressBar implements a ProgressBar that waits a minimum time to be
30 public class ContentLoadingProgressBar extends ProgressBar {
  /packages/apps/UnifiedEmail/src/com/android/mail/
MinTimeProgressView.java 22 import android.widget.ProgressBar;
25 * MinTimeProgressView implements a ProgressBar that waits MIN_DELAY ms to be
32 public class MinTimeProgressView extends ProgressBar {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentRetainInstance.java 30 import android.widget.ProgressBar;
99 ProgressBar mProgressBar;
178 mProgressBar = (ProgressBar)getTargetFragment().getView().findViewById(
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentRetainInstanceSupport.java 31 import android.widget.ProgressBar;
100 ProgressBar mProgressBar;
179 mProgressBar = (ProgressBar)getTargetFragment().getView().findViewById(
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ProgressBarTest.java 3 import android.widget.ProgressBar;
19 private ProgressBar progressBar;
23 progressBar = new ProgressBar(null);
28 assertThat(progressBar.getMax(), equalTo(100));
34 progressBar.setMax(max);
35 assertThat(progressBar.getMax(), equalTo(max));
42 progressBar.setProgress(progress);
43 assertThat(progressBar.getProgress(), equalTo(progress))
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
TextProgressBar.java 28 import android.widget.ProgressBar;
33 * Container that links together a {@link ProgressBar} and {@link Chronometer}
35 * and updates the {@link ProgressBar} based on a preset finishing time.
43 * respect to the {@link ProgressBar} position. For example, if
45 * just ahead of the leading edge of the {@link ProgressBar} position.
55 ProgressBar mProgressBar = null;
87 // Check if Chronometer should move with with ProgressBar
92 } else if (childId == PROGRESSBAR_ID && child instanceof ProgressBar) {
93 mProgressBar = (ProgressBar) child;
99 * This value is used to adjust the {@link ProgressBar} against the elapse
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
StopProgressView.java 10 import android.widget.ProgressBar;
13 public class StopProgressView extends ProgressBar {

Completed in 767 milliseconds

1 2 3 4 5