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

123

/external/chromium/chrome/browser/safe_browsing/
H A Dbloom_filter_unittest.cc59 int checked = 0; local
68 checked++;
69 if (checked == count)
/external/chromium/webkit/glue/
H A Dwebmenuitem.h35 bool checked; member in struct:WebMenuItem
/external/webkit/Source/WebCore/html/
H A DHTMLDataGridCellElement.cpp68 bool HTMLDataGridCellElement::checked() const function in class:WebCore::HTMLDataGridCellElement
73 void HTMLDataGridCellElement::setChecked(bool checked) argument
75 setAttribute(checkedAttr, checked ? "" : 0);
H A DInputType.h66 bool checked; member in struct:WebCore::ClickHandlingState
H A DHTMLInputElement.h110 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/WebKit/chromium/public/
H A DWebMenuItemInfo.h55 , checked(false)
65 bool checked; member in struct:WebKit::WebMenuItemInfo
/external/webkit/Source/WebCore/bindings/js/
H A DJSInspectorFrontendHostCustom.cpp99 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/
H A DV8InspectorFrontendHostCustom.cpp87 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/platform/
H A DContextMenuItem.cpp46 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
51 , m_checked(checked)
55 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems) argument
60 , m_checked(checked)
100 void ContextMenuItem::setChecked(bool checked) argument
102 m_checked = checked;
105 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
/external/webkit/Source/WebCore/platform/brew/
H A DContextMenuItemBrew.cpp120 void ContextMenuItem::setChecked(bool checked) argument
/external/webkit/Source/WebCore/platform/chromium/
H A DContextMenuItemChromium.cpp78 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
80 return m_platformDescription.checked;
112 void ContextMenuItem::setChecked(bool checked) argument
114 m_platformDescription.checked = checked;
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKContextMenuItem.cpp48 WKContextMenuItemRef WKContextMenuItemCreateAsCheckableAction(WKContextMenuItemTag tag, WKStringRef title, bool enabled, bool checked) argument
50 return toAPI(WebContextMenuItem::create(WebContextMenuItemData(CheckableActionType, toImpl(tag), toImpl(title)->string(), enabled, checked)).leakRef());
85 return toImpl(itemRef)->data()->checked();
/external/webkit/Source/WebKit2/Shared/
H A DWebContextMenuItemData.h49 WebContextMenuItemData(WebCore::ContextMenuItemType, WebCore::ContextMenuAction, const String& title, bool enabled, bool checked);
56 bool checked() const { return m_checked; } function in class:WebKit::WebContextMenuItemData
H A DWebContextMenuItemData.cpp47 WebContextMenuItemData::WebContextMenuItemData(WebCore::ContextMenuItemType type, WebCore::ContextMenuAction action, const String& title, bool enabled, bool checked) argument
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/
H A DContextMenuItemGtk.cpp236 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
/external/webkit/Source/WebCore/platform/haiku/
H A DContextMenuItemHaiku.cpp146 void ContextMenuItem::setChecked(bool checked) argument
149 m_platformDescription->SetMarked(checked);
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuItemQt.cpp119 m_platformDescription.checked = on;
122 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem
H A DQtMobileWebStyle.cpp87 void QtMobileWebStyle::drawRadio(QPainter* painter, const QSize& size, bool checked, QColor color) const argument
111 if (checked) {
118 QPixmap QtMobileWebStyle::findRadio(const QSize& size, bool checked, bool disabled) const argument
123 + (disabled ? QLatin1String("disabled") : QLatin1String("enabled")) + (checked ? QLatin1String("-checked") : QLatin1String(""));
128 drawRadio(&painter, size, checked, disabled ? Qt::lightGray : Qt::darkGray);
/external/chromium/chrome/browser/
H A Daccessibility_events.cc69 bool checked,
73 checked_(checked),
92 bool checked)
94 checked_(checked) {
66 AccessibilityRadioButtonInfo( Profile* profile, const std::string& name, bool checked, int item_index, int item_count) argument
90 AccessibilityCheckboxInfo(Profile* profile, const std::string& name, bool checked) argument
H A Daccessibility_events.h84 bool checked,
92 void SetChecked(bool checked) { checked_ = checked; } argument
96 bool checked() const { return checked_; } function in class:AccessibilityRadioButtonInfo
111 bool checked);
117 void SetChecked(bool checked) { checked_ = checked; } argument
119 bool checked() const { return checked_; } function in class:AccessibilityCheckboxInfo
/external/libxml2/include/libxml/
H A Dentities.h59 int checked; /* was the entity content checked */ member in struct:_xmlEntity
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_contextmenu.cpp59 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) argument
298 o->checked = checked;
406 (type, action, 0, core.title().utf8().data(), core.checked(),
141 ewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Action action, Ewk_Context_Menu* submenu, const char* title, Eina_Bool checked, Eina_Bool enabled) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_context_menu_api.cc16 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));
311 bool checked; local
109 ParseChecked( ExtensionMenuItem::Type type, const DictionaryValue& properties, bool default_value, bool* checked) argument
[all...]
H A Dextension_menu_manager.cc26 bool checked,
32 checked_(checked),
82 bool ExtensionMenuItem::SetChecked(bool checked) { argument
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());
24 ExtensionMenuItem(const Id& id, const std::string& title, bool checked, Type type, const ContextList& contexts) argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DCurrentTime.cpp149 static bool checked; local
151 if (checked)
155 checked = true;

Completed in 560 milliseconds

123