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

123456789

/external/webkit/Source/WebCore/inspector/front-end/
H A DCheckbox.js40 set checked(checked)
42 this._inputElement.checked = checked;
45 get checked()
47 return this._inputElement.checked;
H A DPanelEnablerView.js48 function enableOption(text, checked) {
53 if (checked)
54 option.checked = true;
98 return this.enabledAlways.checked;
H A DContextMenu.js57 appendCheckboxItem: function(label, handler, checked, disabled)
60 this._items.push({type: "checkbox", id: id, label: label, checked: !!checked, enabled: !disabled});
H A DWorkersSidebarPane.js44 this._enableWorkersCheckbox.checked = false;
84 this.setInstrumentation(this._enableWorkersCheckbox.checked);
91 this.setInstrumentation(this._enableWorkersCheckbox.checked);
/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLInputElement21.js78 HTMLInputElement.click should change the state of checked on a radio button.
89 var checked;
99 checked = testNode.checked;
101 assertFalse("notCheckedBeforeClick",checked);
103 checked = testNode.checked;
105 assertTrue("checkedAfterClick",checked);
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLInputElement21.js78 HTMLInputElement.click should change the state of checked on a radio button.
89 var checked;
99 checked = testNode.checked;
101 assertFalse("notCheckedBeforeClick",checked);
103 checked = testNode.checked;
105 assertTrue("checkedAfterClick",checked);
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dsystem_options.js49 [String($('accesibility-check').checked)]);
61 SystemOptions.SetAccessibilityCheckboxState = function(checked) {
62 $('accesibility-check').checked = checked;
/external/webkit/Source/WebKit/chromium/public/
H A DWebMenuItemInfo.h55 , checked(false)
65 bool checked; member in struct:WebKit::WebMenuItemInfo
/external/chromium/webkit/glue/
H A Dwebmenuitem.cc13 checked(false) {
23 checked(item.checked) {
33 checked(item.checked),
H A Dwebthemeengine_impl_win.cc40 extra->checked = false;
46 extra->checked = false;
52 extra->checked = false;
58 extra->checked = false;
64 extra->checked = false;
70 extra->checked = false;
81 extra->checked = false;
87 extra->checked = false;
93 extra->checked = false;
99 extra->checked
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dcertificate_edit_ca_trust_overlay.js51 // TODO(mattm): Send checked values as booleans. For now send them as
55 $('certificateCaTrustSSLCheckbox').checked.toString(),
56 $('certificateCaTrustEmailCheckbox').checked.toString(),
57 $('certificateCaTrustObjSignCheckbox').checked.toString()]);
76 // TODO(mattm): Send checked values as booleans. For now send them as
79 [$('certificateCaTrustSSLCheckbox').checked.toString(),
80 $('certificateCaTrustEmailCheckbox').checked.toString(),
81 $('certificateCaTrustObjSignCheckbox').checked.toString()]);
103 $('certificateCaTrustSSLCheckbox').checked = trustSSL;
104 $('certificateCaTrustEmailCheckbox').checked
[all...]
H A Dadvanced_options.js48 [String(event.target.checked)]);
94 [String($('promptForDownload').checked)]);
106 [String($('sslCheckRevocation').checked)]);
110 [String($('sslUseSSL3').checked)]);
114 [String($('sslUseTLS1').checked)]);
151 // Set the checked state of the metrics reporting checkbox.
153 checked, disabled) {
154 $('metricsReportingEnabled').checked = checked;
199 AdvancedOptions.SetPromptForDownload = function(checked, disable
[all...]
H A Dimport_data_overlay.js50 String($('import-history').checked),
51 String($('import-favorites').checked),
52 String($('import-passwords').checked),
53 String($('import-search').checked)]);
65 * Set enabled and checked state of the commit button.
70 $('import-history').checked || $('import-favorites').checked ||
71 $('import-passwords').checked || $('import-search').checked;
88 * Set enabled and checked state
[all...]
H A Dsync_setup_overlay.js129 if (f.option[i].checked) {
155 checkboxes[i].checked = true;
180 // checked. (If all data type checkboxes are disabled, it's because "keep
181 // everything synced" is checked.)
190 if (checkboxes[i].checked) {
256 "syncBookmarks": syncAll || f.bookmarksCheckbox.checked,
257 "syncPreferences": syncAll || f.preferencesCheckbox.checked,
258 "syncThemes": syncAll || f.themesCheckbox.checked,
259 "syncPasswords": syncAll || f.passwordsCheckbox.checked,
260 "syncAutofill": syncAll || f.autofillCheckbox.checked,
[all...]
/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/chromium/chrome/browser/resources/net_internals/
H A Dhttpthrottlingview.js26 this.enableCheckbox_.checked = enabled;
33 g_browser.enableHttpThrottling(this.enableCheckbox_.checked);
/external/webkit/Source/WebCore/html/
H A DHTMLDataGridCellElement.idl35 attribute boolean checked; // The checked state of the column, assuming the type of the column is checkbox.
36 attribute boolean indeterminate; // If the checked state is indeterminate.
H A DCheckboxInputType.cpp54 return !element()->checked();
77 state->checked = element()->checked();
83 element()->setChecked(!state->checked, true);
92 element()->setChecked(state.checked);
H A DBaseCheckableInputType.cpp45 result = element()->checked() ? "on" : "off";
56 if (!element()->checked())
97 return element()->checked() ? "on" : "";
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 DHTMLDataGridCellElement.h45 bool checked() const;
/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/WebCore/platform/mac/
H A DContextMenuItemMac.mm61 static PlatformMenuItemDescription createPlatformMenuItemDescription(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
68 [item setState:checked ? NSOnState : NSOffState];
82 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked)
84 m_platformDescription.adoptNS(createPlatformMenuItemDescription(type, action, title, enabled, checked));
87 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, Vector<ContextMenuItem>& subMenuItems)
89 m_platformDescription.adoptNS(createPlatformMenuItemDescription(SubmenuType, action, title, enabled, checked));
167 void ContextMenuItem::setChecked(bool checked)
169 if (checked)
185 bool ContextMenuItem::checked() const
/external/chromium/chrome/browser/ui/webui/options/chromeos/
H A Dstats_options_handler.cc57 FundamentalValue checked(MetricsCrosSettingsProvider::GetMetricsStatus());
61 "options.AdvancedOptions.SetMetricsReportingCheckboxState", checked,
/external/webkit/Source/WebCore/platform/qt/
H A DQtMobileWebStyle.h38 void drawRadio(QPainter* painter, const QSize& size, bool checked, QColor color) const;
39 QPixmap findRadio(const QSize& size, bool checked, bool disabled) const;

Completed in 434 milliseconds

123456789