HomeSort by relevance Sort by last modified time
    Searched refs:indeterminate (Results 1 - 24 of 24) sorted by null

  /packages/apps/Email/src/com/android/email/activity/
ProgressListener.java 31 * @param indeterminate
34 long maxProgress, boolean indeterminate);
42 * @param indeterminate
45 long maxProgress, boolean indeterminate);
  /external/webkit/WebCore/html/
HTMLDataGridCellElement.idl 36 attribute boolean indeterminate; // If the checked state is indeterminate.
HTMLDataGridCellElement.cpp 74 bool HTMLDataGridCellElement::indeterminate() const function in class:WebCore::HTMLDataGridCellElement
79 void HTMLDataGridCellElement::setIndeterminate(bool indeterminate)
81 setAttribute(indeterminateAttr, indeterminate ? "" : 0);
HTMLDataGridCellElement.h 51 bool indeterminate() const;
HTMLInputElement.h 97 virtual bool isIndeterminate() const { return indeterminate(); }
134 bool indeterminate() const { return m_indeterminate; } function in class:WebCore::HTMLInputElement
HTMLInputElement.idl 83 attribute boolean indeterminate;
HTMLInputElement.cpp     [all...]
  /frameworks/base/core/java/android/app/
ProgressDialog.java 89 CharSequence message, boolean indeterminate) {
90 return show(context, title, message, indeterminate, false, null);
94 CharSequence message, boolean indeterminate, boolean cancelable) {
95 return show(context, title, message, indeterminate, cancelable, null);
99 CharSequence message, boolean indeterminate,
104 dialog.setIndeterminate(indeterminate);
273 public void setIndeterminate(boolean indeterminate) {
275 mProgress.setIndeterminate(indeterminate);
277 mIndeterminate = indeterminate;
Activity.java     [all...]
  /cts/tests/src/android/app/cts/
AppStubActivity.java 112 public boolean setProBarIndeterminate(boolean indeterminate){
113 mIndterminate = indeterminate;
114 super.setProgressBarIndeterminate(indeterminate);
  /frameworks/base/core/java/android/widget/
ProgressBar.java 66 * A progress bar can also be made indeterminate. In indeterminate mode, the
317 * <li>indeterminate = false</li>
336 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
338 * @return true if the progress bar is in indeterminate mode
346 * <p>Change the indeterminate mode for this progress bar. In indeterminate
350 * If this progress bar's style only supports indeterminate mode (such as the circular
353 * @param indeterminate true to enable the indeterminate mod
    [all...]
RemoteViews.java 699 * If indeterminate is true, then the values for max and progress are ignored.
704 * @param indeterminate True if the progress bar is indeterminate,
708 boolean indeterminate) {
709 setBoolean(viewId, "setIndeterminate", indeterminate);
710 if (!indeterminate) {
    [all...]
  /external/webkit/WebCore/platform/chromium/
ThemeChromiumMac.mm 263 // Checked and Indeterminate
265 bool indeterminate = (states & IndeterminateState);
268 if (oldIndeterminate != indeterminate || checked != oldChecked)
269 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
  /external/webkit/WebCore/platform/mac/
ThemeMac.mm 117 // Checked and Indeterminate
119 bool indeterminate = (states & IndeterminateState);
122 if (oldIndeterminate != indeterminate || checked != oldChecked)
123 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
  /external/webkit/WebCore/css/
CSSSelector.cpp 101 DEFINE_STATIC_LOCAL(AtomicString, indeterminate, ("indeterminate"));
238 else if (m_value == indeterminate)
  /external/webkit/WebCore/rendering/
RenderThemeChromiumMac.mm 610 bool indeterminate = isIndeterminate(o);
613 if (oldIndeterminate != indeterminate) {
614 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
    [all...]
RenderThemeMac.mm 539 bool indeterminate = isIndeterminate(o);
542 if (oldIndeterminate != indeterminate) {
543 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
    [all...]
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 617 @property BOOL indeterminate AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 994 milliseconds