/external/webkit/Source/WebKit/win/Interfaces/ |
DOMRange.idl | 32 interface IDOMNode; 72 HRESULT startContainer([out, retval] IDOMNode** node); 82 HRESULT endContainer([out, retval] IDOMNode** node); 97 HRESULT commonAncestorContainer([out, retval] IDOMNode** container); 102 HRESULT setStart([in] IDOMNode* refNode, [in] int offset); 107 HRESULT setEnd([in] IDOMNode* refNode, [in] int offset); 112 HRESULT setStartBefore([in] IDOMNode* refNode); 117 HRESULT setStartAfter([in] IDOMNode* refNode); 122 HRESULT setEndBefore([in] IDOMNode* refNode); 127 HRESULT setEndAfter([in] IDOMNode* refNode) [all...] |
IWebPluginHalterDelegate.idl | 31 interface IDOMNode; 42 HRESULT shouldHaltPlugin([in] IWebView* webView, [in] IDOMNode*, [in] BOOL isWindowed, [in] BSTR pluginName, [out, retval] BOOL* result);
|
DOMCore.idl | 95 interface IDOMNode : IDOMObject 120 HRESULT parentNode([out, retval] IDOMNode** result); 130 HRESULT firstChild([out, retval] IDOMNode** result); 135 HRESULT lastChild([out, retval] IDOMNode** result); 140 HRESULT previousSibling([out, retval] IDOMNode** result); 145 HRESULT nextSibling([out, retval] IDOMNode** result); 160 HRESULT insertBefore([in] IDOMNode* newChild, [in] IDOMNode* refChild, [out, retval] IDOMNode** result); 165 HRESULT replaceChild([in] IDOMNode* newChild, [in] IDOMNode* oldChild, [out, retval] IDOMNode** result) [all...] |
IWebArchive.idl | 77 HRESULT initWithNode([in] IDOMNode* node);
|
IWebHTMLRepresentation.idl | 33 interface IDOMNode; 64 HRESULT attributedStringFromDOMNodes([in] IDOMNode* startNode, [in] int startOffset, [in] IDOMNode* endNode, [in] int endOffset, [out, retval] IDataObject** attributedString);
|
IWebFramePrivate.idl | 88 HRESULT pauseAnimation([in] BSTR animationName, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* animationWasRunning); 89 HRESULT pauseTransition([in] BSTR propertyName, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* transitionWasRunning); 102 HRESULT pauseSVGAnimation([in] BSTR elementId, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* animationWasRunning);
|
DOMEvents.idl | 39 interface IDOMNode; 298 HRESULT fromElement([out, retval] IDOMNode** result); 301 HRESULT toElement([out, retval] IDOMNode** result); 318 HRESULT relatedNode([out, retval] IDOMNode** result); 340 HRESULT initMutationEvent([in] BSTR type, [in] BOOL canBubble, [in] BOOL cancelable, [in] IDOMNode* relatedNode, [in] BSTR prevValue, [in] BSTR newValue, [in] BSTR attrName, [in] unsigned short attrChange);
|
DOMHTML.idl | 38 interface IDOMNode; 61 HRESULT item([in] UINT index, [out, retval] IDOMNode** node); 66 HRESULT namedItem([in] BSTR name, [out, retval] IDOMNode** node); 93 HRESULT item([in] unsigned int index, [out, retval] IDOMNode** result); 98 HRESULT namedItem([in] BSTR name, [out, retval] IDOMNode** result);
|
IWebViewPrivate.idl | 222 HRESULT isNodeHaltedPlugin([in] IDOMNode*, [retval, out] BOOL*); 223 HRESULT restartHaltedPluginForNode([in] IDOMNode*); 224 HRESULT hasPluginForNodeBeenHalted([in] IDOMNode*, [retval, out] BOOL*);
|
IWebEditingDelegate.idl | 38 interface IDOMNode; 116 HRESULT shouldInsertNode([in] IWebView* webView, [in] IDOMNode* node, [in] IDOMRange* range, [in] WebViewInsertAction action);
|
/external/webkit/Source/WebKit/win/ |
DOMCoreClasses.h | 80 class DECLSPEC_UUID("062AEEE3-9E42-44DC-A8A9-236B216FE011") DOMNode : public DOMObject, public IDOMNode, public IDOMEventTarget { 86 static IDOMNode* createInstance(WebCore::Node* n); 126 // IDOMNode 140 /* [retval][out] */ IDOMNode** result); 146 /* [retval][out] */ IDOMNode** result); 149 /* [retval][out] */ IDOMNode** result); 152 /* [retval][out] */ IDOMNode** result); 155 /* [retval][out] */ IDOMNode** result); 164 /* [in] */ IDOMNode* newChild, 165 /* [in] */ IDOMNode* refChild [all...] |
DOMHTMLClasses.h | 89 /* [retval][out] */ IDOMNode **node); 93 /* [retval][out] */ IDOMNode **node); 150 /* [retval][out] */ IDOMNode **result); 154 /* [retval][out] */ IDOMNode **result); 206 // IDOMNode 220 /* [retval][out] */ IDOMNode **result) { return DOMDocument::parentNode(result); } 226 /* [retval][out] */ IDOMNode **result) { return DOMDocument::firstChild(result); } 229 /* [retval][out] */ IDOMNode **result) { return DOMDocument::lastChild(result); } 232 /* [retval][out] */ IDOMNode **result) { return DOMDocument::previousSibling(result); } 235 /* [retval][out] */ IDOMNode **result) { return DOMDocument::nextSibling(result); [all...] |
WebArchive.h | 65 /* [in] */ IDOMNode*);
|
DOMCoreClasses.cpp | 90 *ppvObject = static_cast<IDOMNode*>(this); 142 /* [retval][out] */ IDOMNode** result) 165 /* [retval][out] */ IDOMNode** /*result*/) 172 /* [retval][out] */ IDOMNode** /*result*/) 179 /* [retval][out] */ IDOMNode** /*result*/) 186 /* [retval][out] */ IDOMNode** result) 217 /* [in] */ IDOMNode* newChild, 218 /* [in] */ IDOMNode* refChild, 219 /* [retval][out] */ IDOMNode** result) 245 /* [in] */ IDOMNode* /*newChild*/ [all...] |
WebHTMLRepresentation.h | 61 /* [in] */ IDOMNode* startNode, 63 /* [in] */ IDOMNode* endNode,
|
WebArchive.cpp | 112 /* [in] */ IDOMNode* node)
|
DOMEventsClasses.cpp | 509 /* [retval][out] */ IDOMNode** /*result*/) 515 /* [retval][out] */ IDOMNode** /*result*/) 535 /* [retval][out] */ IDOMNode** /*result*/) 568 /* [in] */ IDOMNode* /*relatedNode*/,
|
WebHTMLRepresentation.cpp | 131 /* [in] */ IDOMNode* /*startNode*/, 133 /* [in] */ IDOMNode* /*endNode*/,
|
WebFrame.h | 256 virtual HRESULT STDMETHODCALLTYPE pauseAnimation(BSTR animationName, IDOMNode*, double secondsFromNow, BOOL* animationWasRunning); 257 virtual HRESULT STDMETHODCALLTYPE pauseTransition(BSTR propertyName, IDOMNode*, double secondsFromNow, BOOL* transitionWasRunning); 258 virtual HRESULT STDMETHODCALLTYPE pauseSVGAnimation(BSTR elementId, IDOMNode*, double secondsFromNow, BOOL* animationWasRunning);
|
WebActionPropertyBag.cpp | 157 IDOMNode* form = DOMNode::createInstance(m_form.get());
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebPluginHalterClient.cpp | 51 COMPtr<IDOMNode> domNode(AdoptCOM, DOMNode::createInstance(n));
|
/external/webkit/Tools/DumpRenderTree/win/ |
PolicyDelegate.cpp | 38 static wstring dumpPath(IDOMNode* node) 50 COMPtr<IDOMNode> parent; 142 COMPtr<IDOMNode> originatingNode(Query, V_UNKNOWN(&originatingNodeVar));
|
EditingDelegate.cpp | 77 static wstring dumpPath(IDOMNode* node) 89 COMPtr<IDOMNode> parent; 108 COMPtr<IDOMNode> startContainer; 112 COMPtr<IDOMNode> endContainer; 157 /* [in] */ IDOMNode* node,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
EclipseXmlPrettyPrinter.java | 33 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode; 146 if (node instanceof IDOMNode) { 151 IDOMNode textImpl = (IDOMNode) node;
|
AndroidXmlFormattingStrategy.java | 67 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode; 197 if (currentIndexedRegion instanceof IDOMNode) { 198 IDOMNode currentDOMNode = (IDOMNode) currentIndexedRegion; 225 if (currentIndexedRegion instanceof IDOMNode) { 226 IDOMNode currentDOMNode = (IDOMNode) currentIndexedRegion; [all...] |