HomeSort by relevance Sort by last modified time
    Searched defs:checked (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/chromium/chrome/browser/safe_browsing/
bloom_filter_unittest.cc 59 int checked = 0; local
68 checked++;
69 if (checked == count)
  /external/chromium/webkit/glue/
webmenuitem.h 35 bool checked; member in struct:WebMenuItem
  /external/webkit/Source/WebCore/bindings/js/
JSInspectorFrontendHostCustom.cpp 99 JSValue checked = item->get(exec, Identifier(exec, "checked")); local
113 if (!checked.isUndefined())
114 menuItem->setChecked(checked.toBoolean(exec));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InspectorFrontendHostCustom.cpp 87 v8::Local<v8::Value> checked = item->Get(v8::String::New("checked")); local
98 if (checked->IsBoolean())
99 menuItem->setChecked(checked->ToBoolean()->Value());
  /external/webkit/Source/WebCore/html/
HTMLDataGridCellElement.cpp 68 bool HTMLDataGridCellElement::checked() const function in class:WebCore::HTMLDataGridCellElement
73 void HTMLDataGridCellElement::setChecked(bool checked)
75 setAttribute(checkedAttr, checked ? "" : 0);
InputType.h 66 bool checked; member in struct:WebCore::ClickHandlingState
119 virtual bool getTypeSpecificValue(String&); // Checked first, before internal storage or the value attribute.
120 virtual String fallbackValue(); // Checked last, if both internal storage and value attribute are missing.
121 virtual String defaultValue(); // Checked after even fallbackValue, only when the valueWithDefault function is called.
HTMLInputElement.h 110 bool checked() const { return m_isChecked; } function in class:WebCore::HTMLInputElement
113 // 'indeterminate' is a state independent of the checked state that causes the control to draw in a way that hides the actual state.
228 // isChecked is used by the rendering tree/CSS while checked() is used by JS to determine checked state
  /external/webkit/Source/WebCore/platform/
ContextMenuItem.cpp 46 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
51 , m_checked(checked)
55 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems)
60 , m_checked(checked)
100 void ContextMenuItem::setChecked(bool checked)
102 m_checked = checked;
105 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
  /external/webkit/Source/WebKit/chromium/public/
WebMenuItemInfo.h 55 , checked(false)
65 bool checked; member in struct:WebKit::WebMenuItemInfo
  /external/webkit/Source/WebCore/platform/chromium/
ContextMenuItemChromium.cpp 78 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
80 return m_platformDescription.checked;
112 void ContextMenuItem::setChecked(bool checked)
114 m_platformDescription.checked = checked;
  /external/webkit/Source/WebCore/platform/qt/
ContextMenuItemQt.cpp 119 m_platformDescription.checked = on;
122 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
  /external/webkit/Source/WebKit2/Shared/
WebContextMenuItemData.h 49 WebContextMenuItemData(WebCore::ContextMenuItemType, WebCore::ContextMenuAction, const String& title, bool enabled, bool checked);
56 bool checked() const { return m_checked; } function in class:WebKit::WebContextMenuItemData
WebContextMenuItemData.cpp 47 WebContextMenuItemData::WebContextMenuItemData(WebCore::ContextMenuItemType type, WebCore::ContextMenuAction action, const String& title, bool enabled, bool checked)
52 , m_checked(checked)
82 m_checked = item.checked();
114 bool checked; local
118 if (!decoder->decode(CoreIPC::Out(type, action, title, checked, enabled, submenu)))
125 item = WebContextMenuItemData(static_cast<WebCore::ContextMenuItemType>(type), static_cast<WebCore::ContextMenuAction>(action), title, enabled, checked);
  /external/webkit/Source/WebCore/platform/gtk/
ContextMenuItemGtk.cpp 236 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
  /external/chromium/chrome/browser/
accessibility_events.h 84 bool checked,
92 void SetChecked(bool checked) { checked_ = checked; }
96 bool checked() const { return checked_; } function in class:AccessibilityRadioButtonInfo
111 bool checked);
117 void SetChecked(bool checked) { checked_ = checked; }
119 bool checked() const { return checked_; } function in class:AccessibilityCheckboxInfo
  /external/chromium/chrome/browser/extensions/
extension_context_menu_api.cc 16 const char kCheckedKey[] = "checked";
27 "Only items with type \"radio\" or \"checkbox\" can be checked";
113 bool* checked) {
115 *checked = default_value;
118 if (!properties.GetBoolean(kCheckedKey, checked))
120 if (checked && type != ExtensionMenuItem::CHECKBOX &&
236 bool checked; local
237 if (!ParseChecked(type, *properties, false, &checked))
241 new ExtensionMenuItem(id, title, checked, type, contexts));
310 // Checked state
311 bool checked; local
    [all...]
extension_menu_manager.cc 26 bool checked,
32 checked_(checked),
82 bool ExtensionMenuItem::SetChecked(bool checked) {
85 checked_ = checked;
141 if (item->type() == ExtensionMenuItem::RADIO && item->checked())
432 bool was_checked = item->checked();
437 bool checked = local
440 item->SetChecked(checked);
441 properties->SetBoolean("checked", item->checked());
    [all...]
extension_menu_manager.h 105 bool checked,
119 bool checked() const { return checked_; } function in class:ExtensionMenuItem
143 // Set the checked state to |checked|. Returns true if successful.
144 bool SetChecked(bool checked);
  /external/libxml2/include/libxml/
entities.h 59 int checked; /* was the entity content checked */ member in struct:_xmlEntity
  /external/webkit/Source/WebKit/efl/ewk/
ewk_contextmenu.cpp 59 Eina_Bool checked:1; member in struct:_Ewk_Context_Menu_Item
135 * @param checked
143 const char* title, Eina_Bool checked, Eina_Bool enabled)
153 item->checked = checked;
292 return o->checked;
295 Eina_Bool ewk_context_menu_item_checked_set(Ewk_Context_Menu_Item* o, Eina_Bool checked)
298 o->checked = checked;
406 (type, action, 0, core.title().utf8().data(), core.checked(),
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ColumnDialog.java 81 Object[] checked = mViewer.getCheckedElements(); local
82 mSelectedColumns = new LintColumn[checked.length];
83 for (int i = 0, n = checked.length; i < n; i++) {
84 mSelectedColumns[i] = (LintColumn) checked[i];
  /bionic/libc/netbsd/nameser/
ns_name.c 393 int n, len, checked, l; local
396 checked = 0;
419 checked += l + 1;
438 checked += 2;
444 if (checked >= eom - msg) {
  /external/chromium/chrome/browser/ui/views/
about_ipc_dialog.cc 82 void OnCheck(int id, bool checked) {
86 if (checked)
170 bool checked = (info->uNewState >> 12) == 2; local
171 OnCheck(static_cast<int>(info->lParam), checked);
  /external/webkit/Source/JavaScriptCore/wtf/
CurrentTime.cpp 149 static bool checked; local
151 if (checked)
155 checked = true;
  /frameworks/base/core/java/android/preference/
TwoStatePreference.java 72 * Sets the checked state and saves it to the {@link SharedPreferences}.
74 * @param checked The checked state.
76 public void setChecked(boolean checked) {
77 if (mChecked != checked) {
78 mChecked = checked;
79 persistBoolean(checked);
86 * Returns the checked state.
88 * @return The checked state.
101 * Sets the summary to be shown when checked
266 boolean checked; field in class:TwoStatePreference.SavedState
    [all...]

Completed in 7258 milliseconds

1 2 3 4