Searched defs:ownerDocument (Results 1 - 23 of 23) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMImplementationCustom.cpp36 Document* ownerDocument = impl()->ownerDocument(); local
37 if (!ownerDocument)
39 markStack.addOpaqueRoot(ownerDocument);
/external/webkit/Source/WebCore/dom/
H A DDOMImplementation.h44 static PassRefPtr<DOMImplementation> create(Document* ownerDocument) { return adoptRef(new DOMImplementation(ownerDocument)); } argument
65 Document* ownerDocument() { return m_ownerDocument; } function in class:WebCore::DOMImplementation
69 DOMImplementation(Document* ownerDocument);
H A DRange.h49 Document* ownerDocument() const { return m_ownerDocument.get(); } function in class:WebCore::Range
H A DDOMImplementation.cpp174 DOMImplementation::DOMImplementation(Document* ownerDocument) argument
175 : m_ownerDocument(ownerDocument)
H A DRange.cpp54 inline Range::Range(PassRefPtr<Document> ownerDocument) argument
55 : m_ownerDocument(ownerDocument)
66 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument) argument
68 return adoptRef(new Range(ownerDocument));
71 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
72 : m_ownerDocument(ownerDocument)
91 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
93 return adoptRef(new Range(ownerDocument, startContainer, startOffset, endContainer, endOffset));
96 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, const Position& start, const Position& end) argument
98 return adoptRef(new Range(ownerDocument, star
[all...]
H A DDocument.cpp1914 void Document::open(Document* ownerDocument) argument
1916 if (ownerDocument) {
1917 setURL(ownerDocument->url());
1918 m_cookieURL = ownerDocument->cookieURL();
1919 ScriptExecutionContext::setSecurityOrigin(ownerDocument->securityOrigin());
2227 void Document::write(const SegmentedString& text, Document* ownerDocument) argument
2247 open(ownerDocument);
2258 void Document::write(const String& text, Document* ownerDocument) argument
2260 write(SegmentedString(text), ownerDocument); local
2263 void Document::writeln(const String& text, Document* ownerDocument) argument
[all...]
H A DNode.cpp1836 Document *Node::ownerDocument() const function in class:WebCore::Node
/external/webkit/Source/WebCore/xml/
H A DXPathNamespace.cpp44 Document* XPathNamespace::ownerDocument() const function in class:WebCore::XPathNamespace
46 return m_ownerElement->ownerDocument();
H A DXSLStyleSheetQt.cpp64 Document* document = ownerDocument();
90 Document* XSLStyleSheet::ownerDocument() function in class:WebCore::XSLStyleSheet
H A DXSLTProcessor.cpp71 RefPtr<Document> ownerDocument = sourceNode->document(); local
72 bool sourceIsDocument = (sourceNode == ownerDocument.get());
77 result = Document::create(frame, sourceIsDocument ? ownerDocument->url() : KURL());
80 result = DOMImplementation::createDocument(sourceMIMEType, frame, sourceIsDocument ? ownerDocument->url() : KURL(), false);
H A DXSLStyleSheetLibxslt.cpp109 if (m_embedded && ownerDocument() && ownerDocument()->transformSource())
110 return (xmlDocPtr)ownerDocument()->transformSource()->platformSource();
130 Document* document = ownerDocument();
146 if (Frame* frame = ownerDocument()->frame())
261 Document* XSLStyleSheet::ownerDocument() function in class:WebCore::XSLStyleSheet
H A DXSLTProcessorLibxslt.cpp139 if (Frame* frame = globalProcessor->xslStylesheet()->ownerDocument()->frame())
267 RefPtr<Document> ownerDocument = sourceNode->document(); local
268 bool sourceIsDocument = (sourceNode == ownerDocument.get());
271 if (sourceIsDocument && ownerDocument->transformSource())
272 sourceDoc = (xmlDocPtr)ownerDocument->transformSource()->platformSource();
274 sourceDoc = (xmlDocPtr)xmlDocPtrForString(ownerDocument->cachedResourceLoader(), createMarkup(sourceNode),
275 sourceIsDocument ? ownerDocument->url().string() : String());
302 RefPtr<Document> ownerDocument = sourceNode->document(); local
304 setXSLTLoadCallBack(docLoaderFunc, this, ownerDocument->cachedResourceLoader());
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Dutil.js324 * support ownerDocument. If the node is a document itself, returns
327 * @param {Node|null|undefined} node The node whose ownerDocument is required.
330 function ownerDocument(node) { function
336 return node.ownerDocument || document;
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
H A Dutil.js324 * support ownerDocument. If the node is a document itself, returns
327 * @param {Node|null|undefined} node The node whose ownerDocument is required.
330 function ownerDocument(node) { function
336 return node.ownerDocument || document;
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h77 Document* ownerDocument() const { return m_element ? m_element->ownerDocument() : 0; } function in class:WebCore::SVGElementInstance
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h160 virtual HRESULT STDMETHODCALLTYPE ownerDocument(
384 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMDocument
385 /* [retval][out] */ IDOMDocument** result) { return DOMNode::ownerDocument(result); }
615 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMElement
616 /* [retval][out] */ IDOMDocument** result) { return DOMNode::ownerDocument(result); }
H A DDOMCoreClasses.cpp204 HRESULT STDMETHODCALLTYPE DOMNode::ownerDocument( function in class:DOMNode
212 *result = DOMDocument::createInstance(m_node->ownerDocument());
H A DDOMHTMLClasses.h240 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLDocument
241 /* [retval][out] */ IDOMDocument **result) { return DOMDocument::ownerDocument(result); }
514 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLElement
515 /* [retval][out] */ IDOMDocument **result) { return DOMElement::ownerDocument(result); }
773 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLFormElement
774 /* [retval][out] */ IDOMDocument **result) { return DOMHTMLElement::ownerDocument(result); }
1078 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLSelectElement
1079 /* [retval][out] */ IDOMDocument **result) { return DOMHTMLElement::ownerDocument(result); }
1402 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLOptionElement
1403 /* [retval][out] */ IDOMDocument **result) { return DOMHTMLElement::ownerDocument(resul
1700 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLInputElement
2110 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLTextAreaElement
2435 virtual HRESULT STDMETHODCALLTYPE ownerDocument( function in class:DOMHTMLIFrameElement
[all...]
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Djstemplate_compiled.js19 var element = ownerDocument(owner).createElement(tagName);
42 var element = ownerDocument(owner).createTextNode(value);
52 * support ownerDocument.
54 * @param {Node} node The node whose ownerDocument is required.
57 function ownerDocument(node) { function
58 return (node ? node.ownerDocument : null) || document;
1155 var t = domCreateTextNode(ownerDocument(template), value);
/external/webkit/Source/WebCore/inspector/
H A DInspectorCSSAgent.cpp200 CSSStyleSelector* selector = element->ownerDocument()->styleSelector();
228 CSSStyleSelector* parentSelector = parentElement->ownerDocument()->styleSelector();
483 String InspectorCSSAgent::detectOrigin(CSSStyleSheet* pageStyleSheet, Document* ownerDocument) argument
495 InspectorStyleSheet* viaInspectorStyleSheetForOwner = viaInspectorStyleSheet(ownerDocument, false);
H A DInspectorStyleSheet.cpp904 Document* InspectorStyleSheet::ownerDocument() const function in class:WebCore::InspectorStyleSheet
1071 if (!m_pageStyleSheet || !ownerDocument())
1075 InspectorResourceAgent::resourceContent(&error, ownerDocument()->frame(), m_pageStyleSheet->finalURL(), result);
1220 Document* InspectorStyleSheetForInlineStyle::ownerDocument() const function in class:WebCore::InspectorStyleSheetForInlineStyle
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h285 @property(readonly, retain) DOMDocument *ownerDocument; variable
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 4949 milliseconds