Searched refs:isIndeterminate (Results 1 - 16 of 16) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowProgressBar.java14 private boolean isIndeterminate; field in class:ShadowProgressBar
41 if (!isIndeterminate()) this.progress = Math.min(max, progress);
46 return isIndeterminate ? 0 : progress;
51 if (!isIndeterminate()) this.secondaryProgress = Math.min(max, secondaryProgress);
56 return isIndeterminate ? 0 : secondaryProgress;
61 this.isIndeterminate = indeterminate;
65 public boolean isIndeterminate() { method in class:ShadowProgressBar
66 return isIndeterminate;
71 if (!isIndeterminate()) setProgress(progress + diff);
76 if (!isIndeterminate()) setSecondaryProgres
[all...]
H A DShadowProgressDialog.java51 public boolean isIndeterminate() { method in class:ShadowProgressDialog
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DProgressDialogTest.java54 assertThat(dialog.isIndeterminate(), equalTo(false));
57 assertThat(dialog.isIndeterminate(), equalTo(true));
60 assertThat(dialog.isIndeterminate(), equalTo(false));
71 assertTrue(shadowProgressDialog.isIndeterminate());
137 assertEquals(expectedIndeterminate, dialog.isIndeterminate());
H A DProgressBarTest.java57 assertFalse(progressBar.isIndeterminate());
59 assertTrue(progressBar.isIndeterminate());
/external/chromium_org/third_party/WebKit/public/web/
H A DWebAccessibilityObject.h106 WEBKIT_EXPORT bool isIndeterminate() const;
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAccessibilityNodeObject.h129 virtual bool isIndeterminate() const OVERRIDE;
H A DAccessibilityObject.h346 virtual bool isIndeterminate() const { return false; } function in class:WebCore::AccessibilityObject
H A DAccessibilityNodeObject.cpp666 bool AccessibilityNodeObject::isIndeterminate() const function in class:WebCore::AccessibilityNodeObject
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumWin.cpp430 if (isIndeterminate(o))
483 if (isChecked(o) && !isIndeterminate(o))
H A DRenderTheme.cpp794 if (isIndeterminate(o))
819 bool RenderTheme::isIndeterminate(const RenderObject* o) const function in class:WebCore::RenderTheme
1328 extraParams.button.indeterminate = isIndeterminate(o);
1370 extraParams.button.indeterminate = isIndeterminate(o);
H A DRenderTheme.h332 bool isIndeterminate(const RenderObject*) const;
H A DRenderThemeChromiumDefault.cpp215 extraParams.button.indeterminate = isIndeterminate(o);
H A DRenderThemeChromiumMac.mm601 bool indeterminate = isIndeterminate(o);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebAccessibilityObject.cpp283 bool WebAccessibilityObject::isIndeterminate() const function in class:WebKit::WebAccessibilityObject
288 return m_private->isIndeterminate();
/external/chromium/webkit/glue/
H A Dwebaccessibility.cc257 if (o.isIndeterminate())
/external/chromium_org/content/renderer/accessibility/
H A Daccessibility_node_serializer.cc301 if (o.isIndeterminate())

Completed in 402 milliseconds