OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:currentForm
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebKit/mac/WebView/
WebHTMLRepresentation.h
68
- (DOMElement *)
currentForm
;
WebHTMLRepresentation.mm
331
- (DOMElement *)
currentForm
333
return kit(core([_private->dataSource webFrame])->selection()->
currentForm
());
/external/webkit/Source/WebKit/win/
WebHTMLRepresentation.h
84
virtual HRESULT STDMETHODCALLTYPE
currentForm
(
WebHTMLRepresentation.cpp
182
HRESULT STDMETHODCALLTYPE WebHTMLRepresentation::
currentForm
(
188
return m_frame->
currentForm
(form);
WebFrame.cpp
499
HRESULT STDMETHODCALLTYPE WebFrame::
currentForm
(
500
/* [retval][out] */ IDOMElement **
currentForm
)
502
if (!
currentForm
) {
507
*
currentForm
= 0;
510
if (HTMLFormElement* formElement = coreFrame->selection()->
currentForm
())
511
*
currentForm
= DOMElement::createInstance(formElement);
514
return *
currentForm
? S_OK : E_FAIL;
[
all
...]
WebFrame.h
153
virtual HRESULT STDMETHODCALLTYPE
currentForm
(
/external/webkit/Source/WebKit/win/Interfaces/
IWebFrame.idl
219
HRESULT
currentForm
([out, retval] IDOMElement** frameElement);
IWebHTMLRepresentation.idl
87
- (DOMElement *)
currentForm
;
89
HRESULT
currentForm
([out, retval] IDOMElement** form);
/external/webkit/Source/WebCore/editing/
SelectionController.h
181
HTMLFormElement*
currentForm
() const;
SelectionController.cpp
[
all
...]
Completed in 125 milliseconds