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

12345678

/macosx-10.10/WebCore-7600.1.25/html/
H A DCheckboxInputType.cpp49 return element().isRequired() && !element().checked();
70 state.checked = element().checked();
76 element().setChecked(!state.checked, DispatchChangeEvent);
83 element().setChecked(state.checked);
H A DBaseCheckableInputType.cpp47 return FormControlState(element().checked() ? ASCIILiteral("on") : ASCIILiteral("off"));
57 if (!element().checked())
H A DRadioInputType.cpp107 // checked, or because of some explicit .focus() call), then allow space to check it.
108 if (element().checked())
131 // Allow keyboard focus if we're checked or if nothing in the group is checked.
132 return element().checked() || !element().checkedRadioButtonForGroup();
139 return element().checked();
147 // We want radio groups to end up in sane states, i.e., to have something checked.
151 state.checked = element().checked();
/macosx-10.10/WebCore-7600.1.25/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
H A DContextMenuItem.h192 ContextMenuItem(ContextMenuItemType, ContextMenuAction, const String&, bool enabled, bool checked);
203 bool checked() const;
215 ContextMenuItem(ContextMenuAction, const String&, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems);
230 ContextMenuItem(ContextMenuAction, const String&, bool enabled, bool checked, Vector<ContextMenuItem>& submenuItems);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_context_menu_item_private.h44 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 = nullptr, EwkContextMenu* parentMenu = nullptr);
55 bool checked() const { return m_isChecked; } function in class:EwkContextMenuItem
56 void setChecked(bool checked) { m_isChecked = checked; } argument
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 std::make_unique<Ewk_Context_Menu_Item>(type, action, title, checked, enabled).release();
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.10/WebCore-7600.1.25/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.10/vim-55/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.10/Libinfo-459/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.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_domhtmlinputelement.py9 self.failUnlessResultIsBOOL(DOMHTMLInputElement.checked)
/macosx-10.10/WebKit2-7600.1.25/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)
86 m_checked = item.checked();
135 bool checked;
136 if (!decoder.decode(checked))
151 item = WebContextMenuItemData(type, action, title, enabled, checked);
H A DWebContextMenuItemData.h50 WebContextMenuItemData(WebCore::ContextMenuItemType, WebCore::ContextMenuAction, const String& title, bool enabled, bool checked);
57 bool checked() const { return m_checked; } function in class:WebKit::WebContextMenuItemData
/macosx-10.10/JavaScriptCore-7600.1.17/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.10/WebKit2-7600.1.25/Shared/API/c/
H A DWKContextMenuItem.cpp59 WKContextMenuItemRef WKContextMenuItemCreateAsCheckableAction(WKContextMenuItemTag tag, WKStringRef title, bool enabled, bool checked) argument
62 return toAPI(WebContextMenuItem::create(WebContextMenuItemData(CheckableActionType, toImpl(tag), toImpl(title)->string(), enabled, checked)).leakRef());
67 UNUSED_PARAM(checked);
136 return toImpl(itemRef)->data()->checked();
H A DWKContextMenuItem.h39 WK_EXPORT WKContextMenuItemRef WKContextMenuItemCreateAsCheckableAction(WKContextMenuItemTag, WKStringRef title, bool enabled, bool checked);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DContextMenu.js32 WebInspector.ContextMenuItem = function(topLevelMenu, type, label, disabled, checked)
37 this._checked = checked;
72 return { type: "checkbox", id: this._id, label: this._label, checked: !!this._checked, enabled: !this._disabled };
99 appendCheckboxItem: function(label, handler, checked, disabled)
101 var item = new WebInspector.ContextMenuItem(this._contextMenu, "checkbox", label, disabled, checked);
/macosx-10.10/WebCore-7600.1.25/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
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_domhtmlinputelement.py9 self.assertResultIsBOOL(DOMHTMLInputElement.checked)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-WebKit-2.5.1/PyObjCTest/
H A Dtest_domhtmlinputelement.py9 self.assertResultIsBOOL(DOMHTMLInputElement.checked)
/macosx-10.10/KerberosHelper-151/Source/
H A DcheckLocalKDC7 my $checked = "/var/db/.checkLocalKDC";
116 `touch $checked`;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/DatePicker/
H A DMyWindowController.py257 checked = sender.selectedCell().state()
258 if checked:
305 checked = sender.selectedCell().state()
308 if checked:
314 if checked:
320 if checked:
334 checked = sender.selectedCell().state()
337 if checked:
343 if checked:
349 if checked
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/DatePicker/
H A DMyWindowController.py257 checked = sender.selectedCell().state()
258 if checked:
305 checked = sender.selectedCell().state()
308 if checked:
314 if checked:
320 if checked:
334 checked = sender.selectedCell().state()
337 if checked:
343 if checked:
349 if checked
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/DatePicker/
H A DMyWindowController.py257 checked = sender.selectedCell().state()
258 if checked:
305 checked = sender.selectedCell().state()
308 if checked:
314 if checked:
320 if checked:
334 checked = sender.selectedCell().state()
337 if checked:
343 if checked:
349 if checked
[all...]

Completed in 203 milliseconds

12345678