Searched refs:checked (Results 1 - 25 of 108) sorted by relevance

12345

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCheckedTextView.java11 private boolean checked; field in class:ShadowCheckedTextView
15 checked = !checked;
20 return checked;
24 public void setChecked(boolean checked) { argument
25 this.checked = checked;
H A DShadowCompoundButton.java11 * Keeps track of whether or not its "checked" state is set and deals with listeners in an appropriate way.
16 private boolean checked; field in class:ShadowCompoundButton
21 setChecked(this.attributeSet.getAttributeBooleanValue("android", "checked", false));
26 setChecked(!checked);
37 return checked;
41 @Override public void setChecked(boolean checked) { argument
42 if (this.checked != checked) {
43 this.checked = checked;
[all...]
H A DShadowRadioButton.java17 @Override public void setChecked(boolean checked) { argument
18 super.setChecked(checked);
22 checked state it's child RadioButtons. Feel free to implement properly.
/external/jetty/src/java/org/eclipse/jetty/security/
H A DRoleInfo.java50 public void setChecked(boolean checked) argument
52 this._checked = checked;
53 if (!checked)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DComponentsView.java358 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS : "true".equals(newValue);
359 filterAdvancedScenarios(checked, false/*do not update preference*/);
360 this.filterAdvancedScenarios.setChecked(checked);
365 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS : "true".equals(newValue);
366 filterOldBuilds(checked, false/*do not update preference*/);
367 this.filterOldBuilds.setChecked(checked);
393 boolean checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS);
394 this.filterAdvancedScenarios.setChecked(checked);
395 if (checked) {
H A DComponentResultsView.java296 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS : "true".equals(newValue);
297 this.filterAdvancedScenarios.setChecked(checked);
303 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS : "true".equals(newValue);
304 this.filterOldBuilds.setChecked(checked);
310 boolean checked = newValue == null ? IPerformancesConstants.DEFAULT_FILTER_NIGHTLY_BUILDS : "true".equals(newValue);
311 this.filterNightlyBuilds.setChecked(checked);
388 boolean checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, IPerformancesConstants.DEFAULT_FILTER_ADVANCED_SCENARIOS);
389 this.filterAdvancedScenarios.setChecked(checked);
392 checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_NIGHTLY_BUILDS, IPerformancesConstants.DEFAULT_FILTER_NIGHTLY_BUILDS);
393 this.filterNightlyBuilds.setChecked(checked);
[all...]
H A DPerformancesView.java613 boolean checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_NIGHTLY_BUILDS, IPerformancesConstants.DEFAULT_FILTER_NIGHTLY_BUILDS);
614 this.filterNightlyBuilds.setChecked(checked);
615 if (checked) {
620 checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_OLD_BUILDS, IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS);
621 this.filterOldBuilds.setChecked(checked);
622 if (checked) {
627 checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_LAST_BUILDS, IPerformancesConstants.DEFAULT_FILTER_LAST_BUILDS);
628 this.filterLastBuilds.setChecked(checked);
629 if (checked) {
/external/libcxxabi/src/Unwind/
H A Dlibunwind.cpp355 static bool checked = false; local
357 if (!checked) {
359 checked = true;
367 static bool checked = false; local
369 if (!checked) {
371 checked = true;
/external/llvm/test/MC/Mips/
H A Dnooddspreg-error.s13 # An explicit .gnu_attribute must be checked against the effective
H A Dmips_abi_flags_xx_set.s36 # An explicit .gnu_attribute must be checked against the effective
H A Dmips_abi_flags_xx.s44 # An explicit .gnu_attribute must be checked against the effective
H A Dnooddspreg-cmdarg.s41 # An explicit .gnu_attribute must be checked against the effective
H A Dnooddspreg.s43 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips32/
H A Dabiflags.s35 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips32r2/
H A Dabiflags.s36 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips32r3/
H A Dabiflags.s36 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips32r5/
H A Dabiflags.s36 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips64/
H A Dabiflags.s35 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips64r2/
H A Dabiflags.s35 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips64r3/
H A Dabiflags.s35 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/mips64r5/
H A Dabiflags.s35 # An explicit .gnu_attribute must be checked against the effective
/external/llvm/test/MC/Mips/msa/
H A Dabiflags.s36 # An explicit .gnu_attribute must be checked against the effective
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTest.java1783 CheckedFuture<String, TestException> checked = Futures.makeChecked(
1786 future.setException(new IOException("checked"));
1788 assertTrue(checked.isDone());
1789 assertFalse(checked.isCancelled());
1792 checked.get();
1799 checked.get(5, TimeUnit.SECONDS);
1806 checked.checkedGet();
1813 checked.checkedGet(5, TimeUnit.SECONDS);
1823 CheckedFuture<String, TestException> checked = Futures.makeChecked(
1829 checked
[all...]
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DBarPlotExampleActivity.java366 private void onS1CheckBoxClicked(boolean checked) { argument
367 if (checked) {
375 private void onS2CheckBoxClicked(boolean checked) { argument
376 if (checked) {
/external/libxml2/include/libxml/
H A Dentities.h59 int checked; /* was the entity content checked */ member in struct:_xmlEntity

Completed in 524 milliseconds

12345