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

/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessor.cpp66 RefPtr<Document> ownerDocument = sourceNode->document(); local
67 bool sourceIsDocument = (sourceNode == ownerDocument.get());
72 result = Document::create(DocumentInit(sourceIsDocument ? ownerDocument->url() : KURL(), frame));
75 result = DOMImplementation::createDocument(sourceMIMEType, frame, sourceIsDocument ? ownerDocument->url() : KURL(), false);
H A DXSLStyleSheetLibxslt.cpp101 if (m_embedded && ownerDocument() && ownerDocument()->transformSource())
102 return (xmlDocPtr)ownerDocument()->transformSource()->platformSource();
118 Document* document = ownerDocument();
132 Frame* frame = ownerDocument()->frame();
252 Document* XSLStyleSheet::ownerDocument() function in class:WebCore::XSLStyleSheet
H A DXSLTProcessorLibxslt.cpp117 Frame* frame = globalProcessor->xslStylesheet()->ownerDocument()->frame();
246 RefPtr<Document> ownerDocument = sourceNode->document(); local
247 bool sourceIsDocument = (sourceNode == ownerDocument.get());
250 if (sourceIsDocument && ownerDocument->transformSource())
251 sourceDoc = (xmlDocPtr)ownerDocument->transformSource()->platformSource();
253 sourceDoc = (xmlDocPtr)xmlDocPtrForString(ownerDocument->fetcher(), createMarkup(sourceNode),
254 sourceIsDocument ? ownerDocument->url().string() : String());
281 RefPtr<Document> ownerDocument = sourceNode->document(); local
283 setXSLTLoadCallBack(docLoaderFunc, this, ownerDocument->fetcher());
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebUserMediaRequest.cpp99 WebDocument WebUserMediaRequest::ownerDocument() const function in class:WebKit::WebUserMediaRequest
102 return WebDocument(m_private->ownerDocument());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRange.h57 Document* ownerDocument() const { return m_ownerDocument.get(); } function in class:WebCore::Range
H A DRange.cpp61 inline Range::Range(PassRefPtr<Document> ownerDocument) argument
62 : m_ownerDocument(ownerDocument)
74 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument) argument
76 return adoptRef(new Range(ownerDocument));
79 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
80 : m_ownerDocument(ownerDocument)
97 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) argument
99 return adoptRef(new Range(ownerDocument, startContainer, startOffset, endContainer, endOffset));
102 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, const Position& start, const Position& end) argument
104 return adoptRef(new Range(ownerDocument, star
[all...]
H A DNode.cpp1370 Document *Node::ownerDocument() const function in class:WebCore::Node
H A DDocument.cpp515 if (Document* ownerDocument = this->ownerDocument())
516 ownerDocument->didRemoveEventTargetNode(this);
2060 void Document::open(Document* ownerDocument) argument
2062 if (ownerDocument) {
2063 setURL(ownerDocument->url());
2064 m_cookieURL = ownerDocument->cookieURL();
2065 setSecurityOrigin(ownerDocument->securityOrigin());
2375 void Document::write(const SegmentedString& text, Document* ownerDocument) argument
2390 open(ownerDocument);
2396 write(const String& text, Document* ownerDocument) argument
2398 write(SegmentedString(text), ownerDocument); local
2401 writeln(const String& text, Document* ownerDocument) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackRegion.h100 Document* ownerDocument() { return toDocument(m_scriptExecutionContext); } function in class:WebCore::TextTrackRegion
H A DTextTrackCue.h203 Document* ownerDocument() { return toDocument(m_scriptExecutionContext); } function in class:WebCore::TextTrackCue
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElementInstance.cpp230 Document* SVGElementInstance::ownerDocument() const function in class:WebCore::SVGElementInstance
232 return m_element ? m_element->ownerDocument() : 0;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DUserMediaRequest.cpp116 Document* UserMediaRequest::ownerDocument() function in class:WebCore::UserMediaRequest
/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/chromium_org/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_org/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/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSStyleSheet.cpp157 Document* owner = ownerDocument();
188 reportMediaQueryWarningIfNeeded(ownerDocument(), m_mediaQueries.get());
224 Document* document = ownerDocument();
355 Document* CSSStyleSheet::ownerDocument() const function in class:WebCore::CSSStyleSheet
/external/chromium_org/third_party/jstemplate/
H A Dutil.js320 * support ownerDocument. If the node is a document itself, returns
323 * @param {Node|null|undefined} node The node whose ownerDocument is required.
326 function ownerDocument(node) { function
332 return node.ownerDocument || document;
/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/chromium_org/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/chromium_org/third_party/WebKit/Source/core/loader/
H A DDocumentLoader.cpp991 PassRefPtr<DocumentWriter> DocumentLoader::createWriterFor(Frame* frame, const Document* ownerDocument, const KURL& url, const String& mimeType, const String& encoding, bool userChosen, bool dispatch) argument
1014 if (ownerDocument) {
1015 document->setCookieURL(ownerDocument->cookieURL());
1016 document->setSecurityOrigin(ownerDocument->securityOrigin());
1034 void DocumentLoader::replaceDocument(const String& source, Document* ownerDocument) argument
1037 m_writer = createWriterFor(m_frame, ownerDocument, m_frame->document()->url(), mimeType(), m_writer ? m_writer->encoding() : "", m_writer ? m_writer->encodingWasChosenByUser() : false, true);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp888 if (it->value->canBind() && (!it->key->ownerDocument() || it->key->ownerDocument() == document))
973 StyleResolver* styleResolver = element->ownerDocument()->styleResolver();
998 StyleResolver* parentStyleResolver = parentElement->ownerDocument()->styleResolver();
1057 Document* doc = inspectorStyleSheet->pageStyleSheet() ? inspectorStyleSheet->pageStyleSheet()->ownerDocument() : 0;
1224 element->ownerDocument()->setNeedsStyleRecalc();
1313 sourceURL = InspectorDOMAgent::documentURLString(parentStyleSheet->ownerDocument());
1330 Document* doc = styleSheet->ownerDocument();
1422 Document* document = styleSheet->ownerDocument();
1492 TypeBuilder::CSS::StyleSheetOrigin::Enum InspectorCSSAgent::detectOrigin(CSSStyleSheet* pageStyleSheet, Document* ownerDocument) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 579 milliseconds