/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowProgressDialog.java | 15 private boolean indeterminate; field in class:ShadowProgressDialog 23 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate) { 24 return show(context, title, message, indeterminate, false, null); 28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) { 29 return show(context, title, message, indeterminate, cancelable, null); 33 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, ProgressDialog.OnCancelListener onCancelListener) { 37 progressDialog.setIndeterminate(indeterminate); 46 public void setIndeterminate(boolean indeterminate) { 47 this.indeterminate = indeterminate; [all...] |
ShadowProgressBar.java | 60 public void setIndeterminate(boolean indeterminate) { 61 this.isIndeterminate = indeterminate;
|
/external/webkit/Source/WebCore/manual-tests/dom/ |
progressbar.html | 2 <h1>Indeterminate progress bar</h1> 4 This is an example of <progress></progress> an indeterminate progress bar.<br> 6 This is an example of <progress dir=rtl></progress> a right-to-left indeterminate progress bar.<br>
|
/external/chromium/webkit/glue/ |
webthemeengine_impl_win.cc | 41 extra->indeterminate = false; 47 extra->indeterminate = false; 53 extra->indeterminate = false; 59 extra->indeterminate = false; 65 extra->indeterminate = false; 71 extra->indeterminate = false; 82 extra->indeterminate = false; 88 extra->indeterminate = false; 94 extra->indeterminate = false; 100 extra->indeterminate = false [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
dock_icon.h | 23 // Indicates whether the progress indicator should be in an indeterminate state 25 - (void)setIndeterminate:(BOOL)indeterminate;
|
dock_icon.mm | 26 // Indicates whether the progress indicator should be in an indeterminate state 28 @property (nonatomic) BOOL indeterminate; 38 @synthesize indeterminate = indeterminate_; 210 - (void)setIndeterminate:(BOOL)indeterminate { 214 [dockTileView setIndeterminate:indeterminate];
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
ProgressBarWrapper.java | 26 * gracefully switching back and forth between indeterminate and determinate 35 ProgressBar indeterminate, boolean isIndeterminate) { 37 mIndeterminate = indeterminate;
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
ProgressBarICS.java | 64 android.R.attr.indeterminate, 122 final boolean indeterminate = a.getBoolean(3, mIndeterminate); 154 setIndeterminate(mOnlyIndeterminate || indeterminate); 237 * <li>indeterminate = false</li> 256 * <p>Indicate whether this progress bar is in indeterminate mode.</p> 258 * @return true if the progress bar is in indeterminate mode 265 * <p>Change the indeterminate mode for this progress bar. In indeterminate 269 * If this progress bar's style only supports indeterminate mode (such as the circular 272 * @param indeterminate true to enable the indeterminate mod [all...] |
/frameworks/base/core/java/android/app/ |
ProgressDialog.java | 98 CharSequence message, boolean indeterminate) { 99 return show(context, title, message, indeterminate, false, null); 103 CharSequence message, boolean indeterminate, boolean cancelable) { 104 return show(context, title, message, indeterminate, cancelable, null); 108 CharSequence message, boolean indeterminate, 113 dialog.setIndeterminate(indeterminate); 295 public void setIndeterminate(boolean indeterminate) { 297 mProgress.setIndeterminate(indeterminate); 299 mIndeterminate = indeterminate;
|
/external/webkit/Source/WebCore/html/ |
HTMLDataGridCellElement.cpp | 78 bool HTMLDataGridCellElement::indeterminate() const function in class:WebCore::HTMLDataGridCellElement 83 void HTMLDataGridCellElement::setIndeterminate(bool indeterminate) 85 setAttribute(indeterminateAttr, indeterminate ? "" : 0);
|
CheckboxInputType.cpp | 78 state->indeterminate = element()->indeterminate(); 80 if (state->indeterminate) 91 element()->setIndeterminate(state.indeterminate);
|
HTMLDataGridCellElement.idl | 36 attribute boolean indeterminate; // If the checked state is indeterminate.
|
RadioInputType.cpp | 162 state->indeterminate = element()->indeterminate(); 165 if (element()->indeterminate()) 184 element()->setIndeterminate(state.indeterminate);
|
/frameworks/base/core/java/android/widget/ |
ProgressBar.java | 71 * A progress bar can also be made indeterminate. In indeterminate mode, the 73 * applications when the length of the task is unknown. The indeterminate progress bar can be either 116 * By default, the progress bar is a spinning wheel (an indeterminate indicator). To change to a 402 * <li>indeterminate = false</li> 421 * <p>Indicate whether this progress bar is in indeterminate mode.</p> 423 * @return true if the progress bar is in indeterminate mode 431 * <p>Change the indeterminate mode for this progress bar. In indeterminate 435 * If this progress bar's style only supports indeterminate mode (such as the circula [all...] |
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/ |
ProgressBar.java | 68 * A progress bar can also be made indeterminate. In indeterminate mode, the 70 * applications when the length of the task is unknown. The indeterminate progress bar can be either 113 * By default, the progress bar is a spinning wheel (an indeterminate indicator). To change to a 396 * <li>indeterminate = false</li> 415 * <p>Indicate whether this progress bar is in indeterminate mode.</p> 417 * @return true if the progress bar is in indeterminate mode 425 * <p>Change the indeterminate mode for this progress bar. In indeterminate 429 * If this progress bar's style only supports indeterminate mode (such as the circula [all...] |
/frameworks/base/docs/html/training/notify-user/ |
display-progress.jd | 49 "indeterminate" form of the indicator (an activity indicator). 58 determinate and indeterminate forms are described in the following sections. 67 progress bar is indeterminate (<strong>true</strong>) or determinate (<strong>false</strong>). 138 To display a continuing (indeterminate) activity indicator, add it to your notification with 141 declares that the indicator is indeterminate. The result is an indicator 166 indeterminate: 169 // Sets an activity indicator for an operation of indeterminate length
|
/cts/tests/src/android/app/cts/ |
AppStubActivity.java | 112 public boolean setProBarIndeterminate(boolean indeterminate){ 113 mIndterminate = indeterminate; 114 super.setProgressBarIndeterminate(indeterminate);
|
/cts/tests/tests/app/src/android/app/cts/ |
ProgressDialogTest.java | 102 * note: the progress bar's style only supports indeterminate mode, 103 * so can't change indeterminate 198 * note: the progress bar's style only supports indeterminate mode, 213 * note: the progress bar's style only supports indeterminate mode, 230 * note: the progress bar's style only supports indeterminate mode, 231 * so can't change indeterminate
|
/frameworks/opt/photoviewer/res/layout/ |
photo_fragment_view.xml | 48 android:indeterminate="true" 57 android:indeterminate="false"
|
/cts/apps/CtsVerifier/res/layout/ |
p2p_requester_main.xml | 43 android:indeterminate="true"
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
ProgressBar2.java | 27 * Demonstrates the use of indeterminate progress bars as widgets and in the
|
ProgressBar4.java | 29 * Demonstrates how to use an indeterminate progress indicator in the window's title bar.
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/ |
mozilla | 41 indeterminate
|
/packages/apps/Dialer/res/layout/ |
phone_loading_contacts.xml | 27 android:indeterminate="true"
|
/packages/apps/VideoEditor/res/layout/ |
empty_project_layout.xml | 30 android:indeterminate="true"/>
|