/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/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);
|
HTMLDataGridCellElement.h | 48 bool indeterminate() const;
|
HTMLInputElement.h | 113 // 'indeterminate' is a state independent of the checked state that causes the control to draw in a way that hides the actual state. 114 bool indeterminate() const { return m_isIndeterminate; } function in class:WebCore::HTMLInputElement 226 virtual bool isIndeterminate() const { return indeterminate(); }
|
/frameworks/base/core/java/android/widget/ |
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...] |
/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...] |
/cts/tests/src/android/app/cts/ |
AppStubActivity.java | 112 public boolean setProBarIndeterminate(boolean indeterminate){ 113 mIndterminate = indeterminate; 114 super.setProgressBarIndeterminate(indeterminate);
|
/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/Contacts/tests/res/layout/ |
fill_call_log_test.xml | 45 android:indeterminate="false"
|
/packages/apps/VideoEditor/res/layout/ |
empty_project_layout.xml | 30 android:indeterminate="true"/>
|
loading_layout.xml | 30 android:indeterminate="true"/>
|
ken_burns_layout.xml | 25 android:indeterminate="true"/>
|
/cts/tests/tests/app/src/android/app/cts/ |
ProgressDialogTest.java | 146 * note: the progress bar's style only supports indeterminate mode, 147 * so can't change indeterminate 279 * note: the progress bar's style only supports indeterminate mode, 306 * note: the progress bar's style only supports indeterminate mode, 335 * note: the progress bar's style only supports indeterminate mode, 336 * so can't change indeterminate
|
/external/webkit/Source/WebKit/chromium/public/linux/ |
WebThemeEngine.h | 89 bool indeterminate; // Whether the button state is indeterminate. member in struct:WebKit::WebThemeEngine::ButtonExtraParams
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityProgressIndicator.cpp | 56 // Indeterminate progress bar should return 0.
|
/frameworks/ex/chips/res/layout/ |
chips_waiting_for_directory_search.xml | 38 android:indeterminate="true"
|