Searched defs:checked (Results 1 - 25 of 72) sorted by relevance

123

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
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.
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...]
/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/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
H A DEffectPanel.java328 void emitterChecked (int index, boolean checked) { argument
329 editor.setEnabled(index, checked);
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
H A DEffectPanel.java251 void emitterChecked (int index, boolean checked) { argument
252 editor.setEnabled(editor.effect.getEmitters().get(index), checked);
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
H A DImageButton.java25 * the {@link Button.ButtonStyle#up}, {@link Button.ButtonStyle#down}, and {@link Button.ButtonStyle#checked} nine patches define
109 public ImageButtonStyle (Drawable up, Drawable down, Drawable checked, Drawable imageUp, Drawable imageDown, argument
111 super(up, down, checked);
H A DImageTextButton.java151 public ImageTextButtonStyle (Drawable up, Drawable down, Drawable checked, BitmapFont font) { argument
152 super(up, down, checked, font);
H A DTextButton.java112 public TextButtonStyle (Drawable up, Drawable down, Drawable checked, BitmapFont font) { argument
113 super(up, down, checked);
H A DButton.java32 /** A button is a {@link Table} with a checked state and additional {@link ButtonStyle style} fields for pressed, unpressed, and
33 * checked. Each time a button is clicked, the checked state is toggled. Being a table, a button can contain any other actors.<br>
38 * {@link ChangeEvent} is fired when the button is clicked. Cancelling the event will restore the checked button state to what is
104 public Button (Drawable up, Drawable down, Drawable checked) { argument
105 this(new ButtonStyle(up, down, checked));
128 /** Toggles the checked state. This method changes the checked state, which fires a {@link ChangeEvent} (if programmatic change
174 else if (isChecked && style.checked != null)
175 background = (isOver() && style.checkedOver != null) ? style.checkedOver : style.checked;
266 public Drawable up, down, over, checked, checkedOver, disabled; field in class:Button.ButtonStyle
273 ButtonStyle(Drawable up, Drawable down, Drawable checked) argument
[all...]
/external/libxml2/include/libxml/
H A Dentities.h59 int checked; /* was the entity content checked */ member in struct:_xmlEntity
/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/chromium-trace/catapult/third_party/webtest/webtest/
H A Dforms.py126 for i, (option_value, checked, option_text) in enumerate(self.options):
137 for i, (option, checked, text) in enumerate(self.options):
152 for option, checked, text in self.options:
153 if checked:
191 for i, (option, checked, text) in enumerate(self.options):
207 for i, (option, checked, text) in enumerate(self.options):
224 for option, checked, text in self.options:
225 if checked:
245 for option, checked, text in self.options:
246 if checked
287 checked = property(checked__get, checked__set) variable in class:Checkbox
[all...]
/external/libunwind_llvm/src/
H A Dlibunwind.cpp354 static bool checked = false; local
356 if (!checked) {
358 checked = true;
366 static bool checked = false; local
368 if (!checked) {
370 checked = true;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenuItem.java138 public MenuItem setChecked(boolean checked) { argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DEmitUtils.java764 final BitSet checked) throws Exception {
768 // need to check classes that have not already been checked via switches
770 if (checked == null || !checked.get(i)) {
803 checked.set(index);
813 member_helper_type(e, (List)fbuckets.get(key), callback, typer, def, end, checked);
758 member_helper_type(final CodeEmitter e, List members, final ObjectSwitchCallback callback, final ParameterTyper typer, final Label def, final Label end, final BitSet checked) argument
/external/opencv3/modules/flann/include/opencv2/flann/
H A Dhierarchical_clustering_index.h555 std::vector<bool> checked(size_,false);
558 findNN(root[i], result, vec, checks, maxChecks, heap, checked);
564 findNN(node, result, vec, checks, maxChecks, heap, checked);
741 * checks = how many points in the dataset have been checked so far
747 Heap<BranchSt>* heap, std::vector<bool>& checked)
755 if (!checked[index]) {
758 checked[index] = true;
779 findNN(node->childs[best_index],result,vec, checks, maxChecks, heap, checked);
746 findNN(NodePtr node, ResultSet<DistanceType>& result, const ElementType* vec, int& checks, int maxChecks, Heap<BranchSt>* heap, std::vector<bool>& checked) argument
H A Dkdtree_index.h444 DynamicBitset checked(size_);
448 searchLevel(result, vec, tree_roots_[i], 0, checkCount, maxCheck, epsError, heap, checked);
453 searchLevel(result, vec, branch.node, branch.mindist, checkCount, maxCheck, epsError, heap, checked);
468 float epsError, Heap<BranchSt>* heap, DynamicBitset& checked)
478 Once a vector is checked, we set its location in vind to the
482 if ( checked.test(index) || ((checkCount>=maxCheck)&& result_set.full()) ) return;
483 checked.set(index);
513 searchLevel(result_set, vec, bestChild, mindist, checkCount, maxCheck, epsError, heap, checked);
467 searchLevel(ResultSet<DistanceType>& result_set, const ElementType* vec, NodePtr node, DistanceType mindist, int& checkCount, int maxCheck, float epsError, Heap<BranchSt>* heap, DynamicBitset& checked) argument
/external/ltrace/sysdeps/linux-gnu/
H A Dtrace.c63 static int checked = 0; local
64 if (checked)
66 checked = 1;
/external/opencv3/modules/features2d/src/
H A Dmser.cpp142 checked = false;
200 if( checked )
202 checked = true;
246 bool checked; member in struct:cv::MSER_Impl::CompHistory
285 h->checked = true;
289 h->checked = false;
/external/v8/src/ia32/
H A Ddisasm-ia32.cc285 byte checked = vex_byte0_ == 0xc4 ? vex_byte2_ : vex_byte1_; local
286 return (checked & 4) == 0;
291 byte checked = vex_byte0_ == 0xc4 ? vex_byte2_ : vex_byte1_; local
292 return (checked & 3) == 0;
297 byte checked = vex_byte0_ == 0xc4 ? vex_byte2_ : vex_byte1_; local
298 return (checked & 3) == 1;
303 byte checked = vex_byte0_ == 0xc4 ? vex_byte2_ : vex_byte1_; local
304 return (checked & 3) == 2;
309 byte checked = vex_byte0_ == 0xc4 ? vex_byte2_ : vex_byte1_; local
310 return (checked
335 byte checked = vex_byte0_ == 0xc4 ? vex_byte2_ : vex_byte1_; local
[all...]
/external/v8/src/x64/
H A Ddisasm-x64.cc361 byte checked = vex_byte0_ == VEX3_PREFIX ? vex_byte2_ : vex_byte1_; local
362 return (checked & 4) == 0;
367 byte checked = vex_byte0_ == VEX3_PREFIX ? vex_byte2_ : vex_byte1_; local
368 return (checked & 3) == 0;
373 byte checked = vex_byte0_ == VEX3_PREFIX ? vex_byte2_ : vex_byte1_; local
374 return (checked & 3) == 1;
379 byte checked = vex_byte0_ == VEX3_PREFIX ? vex_byte2_ : vex_byte1_; local
380 return (checked & 3) == 2;
385 byte checked = vex_byte0_ == VEX3_PREFIX ? vex_byte2_ : vex_byte1_; local
386 return (checked
406 byte checked = vex_byte0_ == VEX3_PREFIX ? vex_byte2_ : vex_byte1_; local
[all...]
/external/v8/test/cctest/
H A Dtest-api-interceptors.cc3631 auto checked = v8::ObjectTemplate::New(isolate); local
3632 checked->SetAccessCheckCallback(SimpleAccessChecker);
3643 checked->NewInstance(context.local()).ToLocalChecked();
3647 ->Set(context.local(), v8_str("checked"), checked_instance)
3650 "checked.__proto__ = intercepted_1;"
3655 ExpectInt32("checked.whatever", 17);
3656 CHECK(!CompileRun("Object.getOwnPropertyDescriptor(checked, 'whatever')")
3661 ExpectInt32("checked.whatever", intercept_data_0.value);
3664 CompileRun("Object.getOwnPropertyDescriptor(checked, 'whatever')");
3670 ExpectInt32("checked
3718 auto checked = v8::ObjectTemplate::New(isolate); local
[all...]
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
H A Dknockout-2.0.0.js12 ga:function(a){return r.a.fb(a,document)},s:function(e,b,f){if("undefined"!=typeof jQuery){if(a(e,b))var d=f,f=function(a,e){var b=this.checked;if(e)this.checked=e.Ya!==m;d.call(this,a);this.checked=b};jQuery(e).bind(b,f)}else"function"==typeof e.addEventListener?e.addEventListener(b,f,p):"undefined"!=typeof e.attachEvent?e.attachEvent("on"+b,function(a){f.call(e,a)}):c(Error("Browser doesn't support addEventListener or attachEvent"))},sa:function(b,f){(!b||!b.nodeType)&&c(Error("element must be a DOM node when calling triggerEvent"));
13 if("undefined"!=typeof jQuery){var d=[];a(b,f)&&d.push({Ya:b.checked});jQuery(b).trigger(f,d)}else if("function"==typeof document.createEvent)"function"==typeof b.dispatchEvent?(d=document.createEvent(e[f]||"HTMLEvents"),d.initEvent(f,m,m,window,0,0,0,0,0,p,p,p,p,0,b),b.dispatchEvent(d)):c(Error("The supplied element doesn't support dispatchEvent"));else if("undefined"!=typeof b.fireEvent){if("click"==f&&"INPUT"==b.tagName&&("checkbox"==b.type.toLowerCase()||"radio"==b.type.toLowerCase()))b.checked=
14 b.checked!==m;b.fireEvent("on"+f)}else c(Error("Browser doesn't support triggering events"))},d:function(a){return r.V(a)?a():a},eb:function(a,e){return 0<=r.a.k((a.className||"").split(/\s+/),e)},Qa:function(a,e,b){var f=r.a.eb(a,e);if(b&&!f)a.className=(a.className||"")+" "+e;else if(f&&!b){for(var b=(a.className||"").split(/\s+/),f="",d=0;d<b.length;d++)b[d]!=e&&(f+=b[d]+" ");a.className=r.a.z(f)}},outerHTML:function(a){if(j===l){var e=a.outerHTML;if("string"==typeof e)return e}e=window.document.createElement("div");
70 r.c.checked={init:function(a,b,d){r.a.s(a,"click",function(){var e;if("checkbox"==a.type)e=a.checked;else if("radio"==a.type&&a.checked)e=a.value;else return;var f=b();"checkbox"==a.type&&r.a.d(f)instanceof Array?(e=r.a.k(r.a.d(f),a.value),a.checked
[all...]
/external/opencv3/modules/highgui/src/
H A Dwindow_QT.cpp1449 void CvPushButton::callCallBack(bool checked) argument
1452 callback(checked, userdata);
1472 void CvCheckBox::callCallBack(bool checked) argument
1475 callback(checked, userdata);
1494 void CvRadioButton::callCallBack(bool checked) argument
1497 callback(checked, userdata);

Completed in 1308 milliseconds

123