Searched defs:sendToAnyElement (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DBaseButtonInputType.cpp86 void BaseButtonInputType::accessKeyAction(bool sendToAnyElement) argument
88 InputType::accessKeyAction(sendToAnyElement);
90 // Send mouse button events if the caller specified sendToAnyElement.
92 element()->dispatchSimulatedClick(0, sendToAnyElement);
H A DBaseCheckableInputType.cpp86 void BaseCheckableInputType::accessKeyAction(bool sendToAnyElement) argument
88 InputType::accessKeyAction(sendToAnyElement);
90 // Send mouse button events if the caller specified sendToAnyElement.
92 element()->dispatchSimulatedClick(0, sendToAnyElement);
H A DHTMLLegendElement.cpp90 void HTMLLegendElement::accessKeyAction(bool sendToAnyElement) argument
93 control->accessKeyAction(sendToAnyElement);
H A DHTMLButtonElement.cpp165 void HTMLButtonElement::accessKeyAction(bool sendToAnyElement) argument
168 // send the mouse button events iff the caller specified sendToAnyElement
169 dispatchSimulatedClick(0, sendToAnyElement);
H A DHTMLLabelElement.cpp149 void HTMLLabelElement::accessKeyAction(bool sendToAnyElement) argument
152 element->accessKeyAction(sendToAnyElement);
154 HTMLElement::accessKeyAction(sendToAnyElement);
H A DRangeInputType.cpp246 void RangeInputType::accessKeyAction(bool sendToAnyElement) argument
248 InputType::accessKeyAction(sendToAnyElement);
250 // Send mouse button events if the caller specified sendToAnyElement.
252 element()->dispatchSimulatedClick(0, sendToAnyElement);
H A DHTMLAnchorElement.cpp234 void HTMLAnchorElement::accessKeyAction(bool sendToAnyElement) argument
236 // send the mouse button events if the caller specified sendToAnyElement
237 dispatchSimulatedClick(0, sendToAnyElement);
H A DHTMLElement.cpp740 void HTMLElement::accessKeyAction(bool sendToAnyElement) argument
742 if (sendToAnyElement)
H A DHTMLSelectElement.cpp424 void HTMLSelectElement::accessKeyAction(bool sendToAnyElement) argument
427 dispatchSimulatedClick(0, sendToAnyElement);
H A DHTMLInputElement.cpp544 void HTMLInputElement::accessKeyAction(bool sendToAnyElement) argument
546 m_inputType->accessKeyAction(sendToAnyElement);
/external/webkit/Source/WebCore/wml/
H A DWMLAElement.cpp140 void WMLAElement::accessKeyAction(bool sendToAnyElement) argument
142 // send the mouse button events if the caller specified sendToAnyElement
143 dispatchSimulatedClick(0, sendToAnyElement);
H A DWMLSelectElement.cpp187 void WMLSelectElement::accessKeyAction(bool sendToAnyElement) argument
190 dispatchSimulatedClick(0, sendToAnyElement);

Completed in 2038 milliseconds