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

1 2

  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLRepresentation.h 43 @class DOMElement;
64 - (DOMElement *)elementWithName:(NSString *)name inForm:(DOMElement *)form;
65 - (BOOL)elementDoesAutoComplete:(DOMElement *)element;
66 - (BOOL)elementIsPassword:(DOMElement *)element;
67 - (DOMElement *)formForElement:(DOMElement *)element;
68 - (DOMElement *)currentForm;
69 - (NSArray *)controlsInForm:(DOMElement *)form;
70 - (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 283 static HTMLFormElement* formElementFromDOMElement(DOMElement *element)
289 - (DOMElement *)elementWithName:(NSString *)name inForm:(DOMElement *)form
304 static HTMLInputElement* inputElementFromDOMElement(DOMElement* element)
310 - (BOOL)elementDoesAutoComplete:(DOMElement *)element
319 - (BOOL)elementIsPassword:(DOMElement *)element
325 - (DOMElement *)formForElement:(DOMElement *)element
331 - (DOMElement *)currentForm
336 - (NSArray *)controlsInForm:(DOMElement *)for
    [all...]
WebFormDelegate.m 73 - (void)frame:(WebFrame *)frame sourceFrame:(WebFrame *)sourceFrame willSubmitForm:(DOMElement *)form
WebUIDelegatePrivate.h 190 - (BOOL)webView:(WebView *)sender didPressMissingPluginButton:(DOMElement *)element;
240 - (BOOL)webView:(WebView *)sender supportsFullScreenForElement:(DOMElement *)element;
241 - (void)webView:(WebView *)sender enterFullScreenForElement:(DOMElement *)element;
242 - (void)webView:(WebView *)sender exitFullScreenForElement:(DOMElement *)element;
  /external/webkit/Source/WebCore/page/
DragClient.h 36 @class DOMElement;
41 class DOMElement;
71 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, Frame*) {};
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginContainerPrivate.h 46 - (void)_webPluginContainerSetMediaPlayerProxy:(WebMediaPlayerProxy *)proxy forElement:(DOMElement *)element;
48 - (void)_webPluginContainerPostMediaPlayerNotification:(int)notification forElement:(DOMElement *)element;
  /external/webkit/Source/WebKit/mac/DOM/
WebDOMOperationsPrivate.h 32 @interface DOMElement (WebDOMElementOperationsPrivate)
33 + (DOMElement *)_DOMElementFromJSContext:(JSContextRef)context value:(JSValueRef)value;
WebDOMOperations.mm 58 @implementation DOMElement (WebDOMElementOperationsPrivate)
60 + (DOMElement *)_DOMElementFromJSContext:(JSContextRef)context value:(JSValueRef)value
210 static_cast<HTMLInputElement*>(core((DOMElement *)self))->setAutofilled(autofilled);
215 static_cast<HTMLInputElement*>(core((DOMElement *)self))->setValueForUser(value);
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 472 IDOMElement* newElement = DOMElement::createInstance(static_cast<WebCore::Element*>(n));
611 *result = DOMElement::createInstance(m_document->documentElement());
624 *result = DOMElement::createInstance(m_document->createElement(tagNameString, ec).get());
745 *result = DOMElement::createInstance(m_document->getElementById(idString));
759 COMPtr<DOMElement> domEle;
821 // DOMElement - IUnknown ------------------------------------------------------
823 HRESULT STDMETHODCALLTYPE DOMElement::QueryInterface(REFIID riid, void** ppvObject)
829 *ppvObject = static_cast<DOMElement*>(this);
845 // DOMElement - IDOMNodeExtensions---------------------------------------------
847 HRESULT STDMETHODCALLTYPE DOMElement::boundingBox(
    [all...]
DOMHTMLClasses.h 436 class DOMHTMLElement : public DOMElement, public IDOMHTMLElement
441 DOMHTMLElement(WebCore::Element* e) : DOMElement(e) {}
445 virtual ULONG STDMETHODCALLTYPE AddRef(void) { return DOMElement::AddRef(); }
446 virtual ULONG STDMETHODCALLTYPE Release(void) { return DOMElement::Release(); }
451 /* [retval][out] */ BOOL *result) { return DOMElement::throwException(exceptionMessage, result); }
457 /* [retval][out] */ VARIANT *result) { return DOMElement::callWebScriptMethod(name, args, cArgs, result); }
461 /* [retval][out] */ VARIANT *result) { return DOMElement::evaluateWebScript(script, result); }
464 /* [in] */ BSTR name) { return DOMElement::removeWebScriptKey(name); }
467 /* [retval][out] */ BSTR* stringRepresentation) { return DOMElement::stringRepresentation(stringRepresentation); }
471 /* [retval][out] */ VARIANT *result) { return DOMElement::webScriptValueAtIndex(index, result);
    [all...]
  /external/webkit/Source/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 216 static CachedImage* imageFromElement(DOMElement *domElement)
218 Element* element = core(domElement);
230 element:(DOMElement *)element
261 - (id)_web_declareAndWriteDragImageForElement:(DOMElement *)element
  /external/webkit/Source/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/Source/WebKit/mac/WebCoreSupport/
WebDragClient.h 39 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, WebCore::Frame*);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebDragClient.h 51 virtual void declareAndWriteDragImage(NSPasteboard*, DOMElement*, NSURL*, NSString*, WebCore::Frame*);
  /external/webkit/Tools/DumpRenderTree/mac/
PolicyDelegate.mm 34 #import <WebKit/DOMElement.h>
81 if (DOMElement *originatingNode = [[actionInformation objectForKey:WebActionElementKey] objectForKey:WebElementDOMNodeKey])
UIDelegate.mm 238 - (BOOL)webView:(WebView *)webView supportsFullScreenForElement:(DOMElement*)element withKeyboard:(BOOL)withKeyboard
243 - (void)webView:(WebView *)webView enterFullScreenForElement:(DOMElement*)element listener:(NSObject<WebKitFullScreenListener>*)listener
249 - (void)webView:(WebView *)webView exitFullScreenForElement:(DOMElement*)element listener:(NSObject<WebKitFullScreenListener>*)listener
255 - (BOOL)webView:(WebView *)webView didPressMissingPluginButton:(DOMElement *)element
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm 181 - (DOMCSSStyleDeclaration *)_computedStyleForElement:(DOMElement *)element
195 - (DOMCSSStyleDeclaration *)_specifiedStyleForElement:(DOMElement *)element
211 DOMElement *element = (DOMElement *)node;
386 DOMElement *element = (DOMElement *)node;
507 - (BOOL)_elementIsBlockLevel:(DOMElement *)element
526 - (BOOL)_elementHasOwnBackgroundColor:(DOMElement *)element
538 - (DOMElement *)_blockLevelElementForNode:(DOMNode *)node
540 DOMElement *element = (DOMElement *)node
    [all...]

Completed in 415 milliseconds

1 2