HomeSort by relevance Sort by last modified time
    Searched refs:DOMElement (Results 1 - 25 of 42) sorted by null

1 2

  /external/webkit/WebKit/mac/Plugins/
WebNullPluginView.h 31 @class DOMElement;
36 DOMElement *element;
39 - (id)initWithFrame:(NSRect)frame error:(NSError *)error DOMElement:(DOMElement *)element;
WebPluginContainerPrivate.h 46 - (void)_webPluginContainerSetMediaPlayerProxy:(WebMediaPlayerProxy *)proxy forElement:(DOMElement *)element;
48 - (void)_webPluginContainerPostMediaPlayerNotification:(int)notification forElement:(DOMElement *)element;
WebNullPluginView.mm 40 - initWithFrame:(NSRect)frame error:(NSError *)err DOMElement:(DOMElement *)elem
73 DOMElement *localElement = element;
WebBaseNetscapePluginView.h 39 @class DOMElement;
  /external/webkit/WebKit/mac/WebView/
WebHTMLRepresentation.h 43 @class DOMElement;
63 - (DOMElement *)elementWithName:(NSString *)name inForm:(DOMElement *)form;
64 - (BOOL)elementDoesAutoComplete:(DOMElement *)element;
65 - (BOOL)elementIsPassword:(DOMElement *)element;
66 - (DOMElement *)formForElement:(DOMElement *)element;
67 - (DOMElement *)currentForm;
68 - (NSArray *)controlsInForm:(DOMElement *)form;
69 - (NSString *)searchForLabels:(NSArray *)labels beforeElement:(DOMElement *)element resultDistance:(WebNSUInteger*)outDistance resultIsInCellAbove:(BOOL*)outIsInCellAbove
    [all...]
WebDataSourceInternal.h 39 @class DOMElement;
49 - (DOMElement *)_imageElementWithImageResource:(WebResource *)resource;
WebFormDelegate.h 31 @class DOMElement;
62 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
WebHTMLRepresentation.mm 267 static HTMLFormElement* formElementFromDOMElement(DOMElement *element)
273 - (DOMElement *)elementWithName:(NSString *)name inForm:(DOMElement *)form
288 static HTMLInputElement* inputElementFromDOMElement(DOMElement* element)
294 - (BOOL)elementDoesAutoComplete:(DOMElement *)element
302 - (BOOL)elementIsPassword:(DOMElement *)element
309 - (DOMElement *)formForElement:(DOMElement *)element
315 - (DOMElement *)currentForm
320 - (NSArray *)controlsInForm:(DOMElement *)for
    [all...]
WebFormDelegate.m 73 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
WebView.h 39 @class DOMElement;
698 - (DOMCSSStyleDeclaration *)computedStyleForElement:(DOMElement *)element pseudoElement:(NSString *)pseudoElement;
  /external/webkit/WebCore/page/
DragClient.h 36 @class DOMElement;
41 class DOMElement;
72 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, Frame*) {};
  /external/webkit/WebKit/win/
DOMCoreClasses.cpp 432 IDOMElement* newElement = DOMElement::createInstance(static_cast<WebCore::Element*>(n));
571 *result = DOMElement::createInstance(m_document->documentElement());
584 *result = DOMElement::createInstance(m_document->createElement(tagNameString, ec).get());
705 *result = DOMElement::createInstance(m_document->getElementById(idString));
719 COMPtr<DOMElement> domEle;
781 // DOMElement - IUnknown ------------------------------------------------------
783 HRESULT STDMETHODCALLTYPE DOMElement::QueryInterface(REFIID riid, void** ppvObject)
789 *ppvObject = static_cast<DOMElement*>(this);
805 // DOMElement - IDOMNodeExtensions---------------------------------------------
807 HRESULT STDMETHODCALLTYPE DOMElement::boundingBox(
    [all...]
DOMHTMLClasses.h 438 class DOMHTMLElement : public DOMElement, public IDOMHTMLElement
443 DOMHTMLElement(WebCore::Element* e) : DOMElement(e) {}
447 virtual ULONG STDMETHODCALLTYPE AddRef(void) { return DOMElement::AddRef(); }
448 virtual ULONG STDMETHODCALLTYPE Release(void) { return DOMElement::Release(); }
453 /* [retval][out] */ BOOL *result) { return DOMElement::throwException(exceptionMessage, result); }
459 /* [retval][out] */ VARIANT *result) { return DOMElement::callWebScriptMethod(name, args, cArgs, result); }
463 /* [retval][out] */ VARIANT *result) { return DOMElement::evaluateWebScript(script, result); }
466 /* [in] */ BSTR name) { return DOMElement::removeWebScriptKey(name); }
469 /* [retval][out] */ BSTR* stringRepresentation) { return DOMElement::stringRepresentation(stringRepresentation); }
473 /* [retval][out] */ VARIANT *result) { return DOMElement::webScriptValueAtIndex(index, result);
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSViewExtras.h 33 @class DOMElement;
62 - (void)_web_DragImageForElement:(DOMElement *)element
WebCoreStatistics.h 33 @class DOMElement;
87 - (NSString *)counterValueForElement:(DOMElement*)element;
88 - (int)pageNumberForElement:(DOMElement*)element:(float)pageWidthInPixels:(float)pageHeightInPixels;
WebNSPasteboardExtras.h 31 @class DOMElement;
70 element:(DOMElement*)element
77 - (id)_web_declareAndWriteDragImageForElement:(DOMElement *)element
WebNSPasteboardExtras.mm 215 static CachedImage* imageFromElement(DOMElement *domElement)
217 Element* element = core(domElement);
229 element:(DOMElement *)element
260 - (id)_web_declareAndWriteDragImageForElement:(DOMElement *)element
WebCoreStatistics.mm 264 - (NSString *)counterValueForElement:(DOMElement*)element
269 - (int)pageNumberForElement:(DOMElement*)element:(float)pageWidthInPixels:(float)pageHeightInPixels
  /external/webkit/WebCore/bindings/objc/
DOMExtensions.h 31 #import <WebCore/DOMElement.h>
55 @interface DOMElement (DOMElementAppKitExtensions)
DOMCore.h 34 #import <WebCore/DOMElement.h>
DOMPrivate.h 52 @interface DOMElement (WebPrivate)
PublicDOMInterfaces.h 37 @property(readonly, retain) DOMElement *ownerElement;
80 @property(readonly, retain) DOMElement *documentElement;
106 - (DOMElement *)createElement:(NSString *)tagName;
117 - (DOMElement *)createElementNS:(NSString *)namespaceURI :(NSString *)qualifiedName;
122 - (DOMElement *)createElementNS:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
125 - (DOMElement *)getElementById:(NSString *)elementId;
129 - (DOMCSSStyleDeclaration *)getOverrideStyle:(DOMElement *)element :(NSString *)pseudoElement;
130 - (DOMCSSStyleDeclaration *)getOverrideStyle:(DOMElement *)element pseudoElement:(NSString *)pseudoElement AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
131 - (DOMCSSStyleDeclaration *)getComputedStyle:(DOMElement *)element :(NSString *)pseudoElement;
132 - (DOMCSSStyleDeclaration *)getComputedStyle:(DOMElement *)element pseudoElement:(NSString *)pseudoElement AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER
    [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebDragClient.h 40 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, WebCore::Frame*);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
PolicyDelegate.mm 34 #import <WebKit/DOMElement.h>
81 if (DOMElement *originatingNode = [[actionInformation objectForKey:WebActionElementKey] objectForKey:WebElementDOMNodeKey])
  /external/webkit/WebKit/win/WebCoreSupport/
WebEditorClient.cpp 318 IDOMElement* domElement = DOMElement::createInstance(e);
319 if (domElement) {
321 if (SUCCEEDED(domElement->QueryInterface(IID_IDOMHTMLInputElement, (void**)&domInputElement))) {
325 domElement->Release();
335 IDOMElement* domElement = DOMElement::createInstance(e);
336 if (domElement) {
338 if (SUCCEEDED(domElement->QueryInterface(IID_IDOMHTMLInputElement, (void**)&domInputElement))) {
342 domElement->Release()
    [all...]

Completed in 1841 milliseconds

1 2