Home
last modified time | relevance | path

Searched refs:DOMNode (Results 1 – 25 of 73) sorted by relevance

123

/external/webkit/WebKit/win/
DDOMCoreClasses.h80 class DECLSPEC_UUID("062AEEE3-9E42-44DC-A8A9-236B216FE011") DOMNode : public DOMObject, public IDOM…
83 DOMNode(WebCore::Node* n);
84 ~DOMNode();
306 class DOMDocument : public DOMNode, public IDOMDocument, public IDOMViewCSS, public IDOMDocumentEve…
318 virtual ULONG STDMETHODCALLTYPE AddRef(void) { return DOMNode::AddRef(); } in AddRef()
319 virtual ULONG STDMETHODCALLTYPE Release(void) { return DOMNode::Release(); } in Release()
324 … /* [retval][out] */ BOOL *result) { return DOMNode::throwException(exceptionMessage, result); } in throwException()
330 …/* [retval][out] */ VARIANT *result) { return DOMNode::callWebScriptMethod(name, args, cArgs, resu… in callWebScriptMethod()
334 /* [retval][out] */ VARIANT *result) { return DOMNode::evaluateWebScript(script, result); } in evaluateWebScript()
337 /* [in] */ BSTR name) { return DOMNode::removeWebScriptKey(name); } in removeWebScriptKey()
[all …]
DDOMCoreClasses.cpp87 HRESULT STDMETHODCALLTYPE DOMNode::QueryInterface(REFIID riid, void** ppvObject) in QueryInterface()
92 else if (IsEqualGUID(riid, __uuidof(DOMNode))) in QueryInterface()
93 *ppvObject = static_cast<DOMNode*>(this); in QueryInterface()
103 HRESULT STDMETHODCALLTYPE DOMNode::nodeName( in nodeName()
116 HRESULT STDMETHODCALLTYPE DOMNode::nodeValue( in nodeValue()
128 HRESULT STDMETHODCALLTYPE DOMNode::setNodeValue( in setNodeValue()
135 HRESULT STDMETHODCALLTYPE DOMNode::nodeType( in nodeType()
142 HRESULT STDMETHODCALLTYPE DOMNode::parentNode( in parentNode()
148 *result = DOMNode::createInstance(m_node->parentNode()); in parentNode()
152 HRESULT STDMETHODCALLTYPE DOMNode::childNodes( in childNodes()
[all …]
/external/webkit/WebCore/bindings/objc/
DPublicDOMInterfaces.h33 @interface DOMAttr : DOMNode WEBKIT_VERSION_1_3
44 @interface DOMCharacterData : DOMNode WEBKIT_VERSION_1_3
77 @interface DOMDocument : DOMNode WEBKIT_VERSION_1_3
116 - (DOMNode *)importNode:(DOMNode *)importedNode :(BOOL)deep;
120 - (DOMNode *)importNode:(DOMNode *)importedNode deep:(BOOL)deep AVAILABLE_WEBKIT_VERSION_3_0_AND_LA…
121 - (DOMNode *)adoptNode:(DOMNode *)source AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
136 - (DOMNodeIterator *)createNodeIterator:(DOMNode *)root whatToShow:(unsigned)whatToShow filter:(id …
137 - (DOMTreeWalker *)createTreeWalker:(DOMNode *)root whatToShow:(unsigned)whatToShow filter:(id <DOM…
138 - (DOMNodeIterator *)createNodeIterator:(DOMNode *)root :(unsigned)whatToShow :(id <DOMNodeFilter>)…
139 - (DOMTreeWalker *)createTreeWalker:(DOMNode *)root :(unsigned)whatToShow :(id <DOMNodeFilter>)filt…
[all …]
DDOMExtensions.h42 #import <WebCore/DOMNode.h>
50 @interface DOMNode (DOMNodeExtensions)
DDOMInternal.mm97 if (![self isKindOfClass:[DOMNode class]]) {
105 DOMNode *n = (DOMNode *)self;
DDOMEvents.h28 #import <WebCore/DOMNode.h>
DDOMCore.h40 #import <WebCore/DOMNode.h>
DDOMPrivate.h29 @interface DOMNode (DOMNodeExtensionsPendingPublic)
/external/webkit/WebKit/win/Interfaces/
DDOMRange.idl70 - (DOMNode *)startContainer;
80 - (DOMNode *)endContainer;
95 - (DOMNode *)commonAncestorContainer;
100 - (void)setStart:(DOMNode *)refNode :(int)offset;
105 - (void)setEnd:(DOMNode *)refNode :(int)offset;
110 - (void)setStartBefore:(DOMNode *)refNode;
115 - (void)setStartAfter:(DOMNode *)refNode;
120 - (void)setEndBefore:(DOMNode *)refNode;
125 - (void)setEndAfter:(DOMNode *)refNode;
135 - (void)selectNode:(DOMNode *)refNode;
[all …]
DDOMCore.idl87 @interface DOMNode : DOMObject <DOMEventTarget>
118 - (DOMNode *)parentNode;
128 - (DOMNode *)firstChild;
133 - (DOMNode *)lastChild;
138 - (DOMNode *)previousSibling;
143 - (DOMNode *)nextSibling;
158 - (DOMNode *)insertBefore:(DOMNode *)newChild :(DOMNode *)refChild;
163 - (DOMNode *)replaceChild:(DOMNode *)newChild :(DOMNode *)oldChild;
168 - (DOMNode *)removeChild:(DOMNode *)oldChild;
173 - (DOMNode *)appendChild:(DOMNode *)newChild;
[all …]
DIWebHTMLRepresentation.idl62 …- (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:…
/external/webkit/WebKit/mac/WebView/
DWebHTMLViewPrivate.h36 @class DOMNode;
41 - (NSRect)highlightRectForLine:(NSRect)lineRect representedNode:(DOMNode *)node;
42 …nLine:(NSRect)lineRect behindText:(BOOL)text entireLine:(BOOL)line representedNode:(DOMNode *)node;
103 - (DOMNode *)_insertOrderedList;
104 - (DOMNode *)_insertUnorderedList;
107 - (DOMNode *)_increaseSelectionListLevel;
108 - (DOMNode *)_increaseSelectionListLevelOrdered;
109 - (DOMNode *)_increaseSelectionListLevelUnordered;
DWebFramePrivate.h39 @class DOMNode;
106 - (BOOL)_pauseAnimation:(NSString*)name onNode:(DOMNode *)node atTime:(NSTimeInterval)time;
107 - (BOOL)_pauseTransitionOfProperty:(NSString*)name onNode:(DOMNode*)node atTime:(NSTimeInterval)tim…
111 - (BOOL)_pauseSVGAnimation:(NSString*)elementId onSMILNode:(DOMNode *)node atTime:(NSTimeInterval)t…
DWebUIDelegatePrivate.h117 - (BOOL)webView:(WebView *)sender shouldHaltPlugin:(DOMNode *)pluginNode isWindowed:(BOOL)isWindowe…
144 - (void)webView:(WebView *)sender formStateDidChangeForNode:(DOMNode *)node;
145 - (void)webView:(WebView *)sender formDidFocusNode:(DOMNode *)node;
146 - (void)webView:(WebView *)sender formDidBlurNode:(DOMNode *)node;
DWebHTMLRepresentation.h42 @class DOMNode;
61 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(
DWebTextIterator.h35 @class DOMNode;
94 - (DOMNode *)currentNode;
DWebFrameInternal.h42 @class DOMNode;
134 - (NSRect)_caretRectAtNode:(DOMNode *)node offset:(int)offset affinity:(NSSelectionAffinity)affinit…
149 - (void)_replaceSelectionWithNode:(DOMNode *)node selectReplacement:(BOOL)selectReplacement smartRe…
DWebViewPrivate.h474 + (BOOL)_isNodeHaltedPlugin:(DOMNode *)node;
475 + (BOOL)_hasPluginForNodeBeenHalted:(DOMNode *)node;
476 + (void)_restartHaltedPluginForNode:(DOMNode *)node;
575 - (void)_replaceSelectionWithNode:(DOMNode *)node matchStyle:(BOOL)matchStyle;
DWebView.h40 @class DOMNode;
723 - (void)replaceSelectionWithNode:(DOMNode *)node;
/external/webkit/WebCore/inspector/front-end/
DDOMAgent.js32 WebInspector.DOMNode = function(doc, payload) { class in WebInspector
83 WebInspector.DOMNode.prototype = {
155 var node = new WebInspector.DOMNode(this.ownerDocument, payload);
177 var node = new WebInspector.DOMNode(this.ownerDocument, payload);
240 WebInspector.DOMNode.call(this, this, payload);
282 WebInspector.DOMDocument.prototype.__proto__ = WebInspector.DOMNode.prototype;
298 return WebInspector.DOMNode;
303 return WebInspector.DOMNode;
402 var root = new WebInspector.DOMNode(this.document, payload);
/external/webkit/WebKitTools/DumpRenderTree/mac/
DEditingDelegate.mm36 @interface DOMNode (dumpPath) interface in dumpPath
40 @implementation DOMNode (dumpPath) implementation in dumpPath
43 DOMNode *parent = [self parentNode];
89 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)r…
/external/webkit/WebKit/mac/DOM/
DWebDOMOperations.mm49 @implementation DOMNode (WebDOMNodeOperations) implementation in WebDOMNodeOperations
64 @implementation DOMNode (WebDOMNodeOperationsInternal) implementation in WebDOMNodeOperationsInternal
105 - (DOMRange *)_createRangeWithNode:(DOMNode *)node
DWebDOMOperationsPrivate.h35 @interface DOMNode (WebDOMNodeOperationsPendingPublic)
DWebDOMOperations.h36 @interface DOMNode (WebDOMNodeOperations)
/external/webkit/WebKit/win/WebCoreSupport/
DWebPluginHalterClient.cpp51 COMPtr<IDOMNode> domNode(AdoptCOM, DOMNode::createInstance(n)); in shouldHaltPlugin()

123