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

123456789

/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DCheckbox.js44 set checked(checked)
46 this._inputElement.checked = checked;
49 get checked()
51 return this._inputElement.checked;
H A DAuditLauncherView.js110 if (this._selectAllCheckboxElement.checked || selectedCategories[category.displayName]) {
111 category._checkboxElement.checked = true;
147 if (this._sortedCategories[category]._checkboxElement.checked)
160 this._auditController.initiateAudit(catIds, this._progressIndicator, this._auditPresentStateElement.checked, onAuditStarted.bind(this), this._setAuditRunning.bind(this, false));
195 childNodes[i].firstChild.checked = checkCategories;
202 this._currentCategoriesCount += event.target.checked ? 1 : -1;
203 this._selectAllCheckboxElement.checked = this._currentCategoriesCount === this._sortedCategories.length;
239 this._selectAllClicked(event.target.checked, true);
244 this._selectAllCheckboxElement.checked = this._selectedCategoriesSetting.get()[WebInspector.AuditLauncherView.AllCategoriesKey];
259 this._auditPresentStateElement.checked
[all...]
H A DPanelEnablerView.js53 function enableOption(text, checked) {
58 if (checked)
59 option.checked = true;
96 return this.enabledAlways.checked;
H A DProfileLauncherView.js129 var checked = !this._profileTypeSelectorForm.children.length;
137 if (checked) {
138 optionElement.checked = checked;
H A DContextMenu.js37 * @param {boolean=} checked
39 WebInspector.ContextMenuItem = function(topLevelMenu, type, label, disabled, checked)
44 this._checked = checked;
85 return { type: "checkbox", id: this._id, label: this._label, checked: !!this._checked, enabled: !this._disabled };
134 appendCheckboxItem: function(label, handler, checked, disabled)
136 var item = new WebInspector.ContextMenuItem(this._contextMenu, "checkbox", label, disabled, checked);
H A DOverridesView.js88 input.checked = setting.get();
92 setting.set(input.checked);
115 checkboxElement.checked = false;
206 if (checkboxElement.checked) {
213 WebInspector.userAgentSupport.toggleUserAgentOverride(checkboxElement.checked);
278 checkboxElement.checked = false;
293 var controlsDisabled = !this._metricsCheckboxElement.checked;
349 this._metricsCheckboxElement.checked = !!metrics.toSetting();
410 checkboxElement.checked = false;
424 var controlsDisabled = !this._geolocationOverrideCheckboxElement.checked;
[all...]
H A DBreakpointsSidebarPane.js98 checkbox.checked = breakpoint.enabled();
185 breakpoint.setEnabled(event.target.checked);
212 if (breakpoints[i].checkbox.checked)
348 checkboxElement.checked = enabled;
382 if (element._checkboxElement.checked)
410 if (event.target.checked)
431 this._setBreakpoint(text, element._checkboxElement.checked);
462 breakpoints.push({ url: url, enabled: this._breakpointElements[url]._checkboxElement.checked });
577 var checked = categoryItem.checkbox.checked;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/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
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DCheckboxInputType.cpp55 return element()->isRequired() && !element()->checked();
78 state->checked = element()->checked();
84 element()->setChecked(!state->checked, DispatchChangeEvent);
93 element()->setChecked(state.checked);
H A DBaseCheckableInputType.cpp48 return FormControlState(element()->checked() ? "on" : "off");
58 if (!element()->checked())
H A DRadioInputType.cpp113 // checked, or because of some explicit .focus() call), then allow space to check it.
114 if (element()->checked())
137 // Allow keyboard focus if we're checked or if nothing in the group is checked.
138 return element()->checked() || !element()->checkedRadioButtonForGroup();
145 return element()->checked();
153 // We want radio groups to end up in sane states, i.e., to have something checked.
159 state->checked = element()->checked();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_context_menu_item_private.h49 static PassOwnPtr<EwkContextMenuItem> create(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Item_Action action, const char* title, Eina_Bool checked, Eina_Bool enabled, PassRefPtr<EwkContextMenu> subMenu = 0, EwkContextMenu* parentMenu = 0) argument
51 return adoptPtr(new EwkContextMenuItem(type, action, title, checked, enabled, subMenu, parentMenu));
63 bool checked() const { return m_isChecked; } function in class:EwkContextMenuItem
64 void setChecked(bool checked) { m_isChecked = checked; } argument
76 EwkContextMenuItem(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Item_Action action, const char* title, Eina_Bool checked, Eina_Bool enabled, PassRefPtr<EwkContextMenu> subMenu, EwkContextMenu* parentMenu);
H A Dewk_context_menu_item.cpp53 EwkContextMenuItem::EwkContextMenuItem(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Item_Action action, const char* title, Eina_Bool checked, Eina_Bool enabled, PassRefPtr<EwkContextMenu> subMenu, EwkContextMenu* parentMenu) argument
57 , m_isChecked(checked)
64 Ewk_Context_Menu_Item* ewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Item_Action action, const char* title, Eina_Bool checked, Eina_Bool enabled) argument
66 return Ewk_Context_Menu_Item::create(type, action, title, checked, enabled).leakPtr();
128 return item->checked();
131 Eina_Bool ewk_context_menu_item_checked_set(Ewk_Context_Menu_Item* item, Eina_Bool checked) argument
135 item->setChecked(checked);
/macosx-10.9.5/CPANInternal-140/Net-DNS/
H A Dnetdns.c92 int len = -1, checked = 0; local
115 checked += n + 1;
152 checked += 2;
158 if (checked >= eomorig - msg)
/macosx-10.9.5/WebCore-7537.78.1/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
/macosx-10.9.5/vim-53/runtime/spell/
H A Dhe.vim1 " For Hebrew capitals should not be checked. But only change the
H A Dyi.vim1 " For Yiddish capitals should not be checked. But only change the
/macosx-10.9.5/Libinfo-449.1.3/dns.subproj/
H A Dres_comp.c84 int len = -1, checked = 0; local
105 checked += n + 1;
124 checked += 2;
130 if (checked >= eomorig - msg)
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_domhtmlinputelement.py9 self.failUnlessResultIsBOOL(DOMHTMLInputElement.checked)
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DRenderThemeQtMobile.h139 void drawCheckBox(const QRect&, bool checked, bool enabled = true);
140 void drawRadioButton(const QRect&, bool checked, bool enabled = true);
147 void drawCheckableBackground(QPainter*, const QRect&, bool checked, bool enabled) const;
149 QPixmap findCheckBox(const QSize&, bool checked, bool enabled) const;
151 void drawRadio(QPainter*, const QSize&, bool checked, bool enabled) const;
152 QPixmap findRadio(const QSize&, bool checked, bool enabled) const;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebContextMenuItemData.cpp50 WebContextMenuItemData::WebContextMenuItemData(WebCore::ContextMenuItemType type, WebCore::ContextMenuAction action, const String& title, bool enabled, bool checked) argument
55 , m_checked(checked)
85 m_checked = item.checked();
131 bool checked;
132 if (!decoder.decode(checked))
147 item = WebContextMenuItemData(type, action, title, enabled, checked);
H A DWebContextMenuItemData.h51 WebContextMenuItemData(WebCore::ContextMenuItemType, WebCore::ContextMenuAction, const String& title, bool enabled, bool checked);
58 bool checked() const { return m_checked; } function in class:WebKit::WebContextMenuItemData
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Regress/
H A Dregress-216320.js345 if(form.INH[i].checked==true){ isnh=form.INH[i].value; }
355 if(form.NHB[i].checked==true){ beh=form.NHB[i].value; }
359 if(form.NHS[i].checked==true){ skl=form.NHS[i].value; }
372 if(form.RCD[3].checked==false){
379 if(status!=12){ for(i=0; i<form.RCD.length; i++){ if(form.RCD[i].checked==true)rating=form.RCD[i].value; } }
420 if(form.MSRQ.checked==true){
433 if ( (form.TOC.value=="YES") && (form.RSRQ.checked==true) ) {
439 if(form.RSRQ.checked==true){
452 if ( (form.TOC.value=="YES") && (form.MSRQ.checked==true) ) {
479 if(form.ESRQ.checked
[all...]
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_contextmenu.cpp58 bool checked : 1; member in struct:_Ewk_Context_Menu_Item
104 Ewk_Context_Menu* submenu, const char* title, Eina_Bool checked, Eina_Bool enabled)
112 item->checked = checked;
187 return item->checked;
190 Eina_Bool ewk_context_menu_item_checked_set(Ewk_Context_Menu_Item* item, Eina_Bool checked) argument
193 item->checked = checked;
289 Ewk_Context_Menu_Item* menu_item = ewk_context_menu_item_new(type, action, menu, 0, core.title().utf8().data(), core.checked(), core.enabled());
103 ewk_context_menu_item_new(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Action action, Ewk_Context_Menu* parentMenu, Ewk_Context_Menu* submenu, const char* title, Eina_Bool checked, Eina_Bool enabled) argument
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DContextMenuItemGtk.cpp122 static PlatformMenuItemDescription createPlatformMenuItemDescription(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
132 gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(platformAction.get()), checked); local
174 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
176 m_platformDescription = createPlatformMenuItemDescription(type, action, title, enabled, checked);
179 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, Vector<ContextMenuItem>& subMenuItems) argument
181 m_platformDescription = createPlatformMenuItemDescription(SubmenuType, action, title, enabled, checked);
260 bool ContextMenuItem::checked() const function in class:WebCore::ContextMenuItem

Completed in 192 milliseconds

123456789