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

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMediaDevicesRequest.cpp58 WebDocument WebMediaDevicesRequest::ownerDocument() const function in class:blink::WebMediaDevicesRequest
61 return WebDocument(m_private->ownerDocument());
H A DWebUserMediaRequest.cpp90 WebDocument WebUserMediaRequest::ownerDocument() const function in class:blink::WebUserMediaRequest
93 return WebDocument(m_private->ownerDocument());
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaDevicesRequest.cpp54 Document* MediaDevicesRequest::ownerDocument() function in class:blink::MediaDevicesRequest
H A DUserMediaRequest.cpp120 Document* UserMediaRequest::ownerDocument() function in class:blink::UserMediaRequest
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentInit.cpp52 static Document* ownerDocument(LocalFrame* frame) function in namespace:blink
69 , m_owner(ownerDocument(frame))
H A DRange.h58 Document& ownerDocument() const { ASSERT(m_ownerDocument); return *m_ownerDocument.get(); } function in class:blink::FINAL
H A DRange.cpp60 inline Range::Range(Document& ownerDocument) argument
61 : m_ownerDocument(&ownerDocument)
72 PassRefPtrWillBeRawPtr<Range> Range::create(Document& ownerDocument) argument
74 return adoptRefWillBeNoop(new Range(ownerDocument));
77 inline Range::Range(Document& ownerDocument, Node* startContainer, int startOffset, Node* endContainer, int endOffset) argument
78 : m_ownerDocument(&ownerDocument)
94 PassRefPtrWillBeRawPtr<Range> Range::create(Document& ownerDocument, Node* startContainer, int startOffset, Node* endContainer, int endOffset) argument
96 return adoptRefWillBeNoop(new Range(ownerDocument, startContainer, startOffset, endContainer, endOffset));
99 PassRefPtrWillBeRawPtr<Range> Range::create(Document& ownerDocument, const Position& start, const Position& end) argument
101 return adoptRefWillBeNoop(new Range(ownerDocument, star
[all...]
H A DNode.cpp1200 Document* Node::ownerDocument() const function in class:blink::Node
H A DDocument.cpp2311 void Document::open(Document* ownerDocument, ExceptionState& exceptionState) argument
2318 if (ownerDocument) {
2319 setURL(ownerDocument->url());
2320 m_cookieURL = ownerDocument->cookieURL();
2321 setSecurityOrigin(ownerDocument->securityOrigin());
2711 void Document::write(const SegmentedString& text, Document* ownerDocument, ExceptionState& exceptionState) argument
2734 open(ownerDocument);
2740 void Document::write(const String& text, Document* ownerDocument, ExceptionState& exceptionState) argument
2742 write(SegmentedString(text), ownerDocument, exceptionState); local
2745 void Document::writeln(const String& text, Document* ownerDocument, ExceptionStat argument
[all...]
/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.cpp171 if (Document* document = ownerDocument())
201 Document* owner = ownerDocument();
236 reportMediaQueryWarningIfNeeded(ownerDocument(), m_mediaQueries.get());
280 Document* document = ownerDocument();
417 Document* CSSStyleSheet::ownerDocument() const function in class:blink::CSSStyleSheet
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLStyleSheetLibxslt.cpp72 XSLStyleSheet::XSLStyleSheet(Document* ownerDocument, Node* styleSheetRootNode, const String& originalURL, const KURL& finalURL, bool embedded) argument
83 , m_ownerDocument(ownerDocument)
120 if (m_embedded && ownerDocument() && ownerDocument()->transformSource())
121 return (xmlDocPtr)ownerDocument()->transformSource()->platformSource();
137 if (Document* document = ownerDocument())
150 if (LocalFrame* frame = ownerDocument()->frame())
271 Document* XSLStyleSheet::ownerDocument() function in class:blink::XSLStyleSheet
/external/chromium_org/third_party/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/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.cpp794 PassRefPtrWillBeRawPtr<DocumentWriter> DocumentLoader::createWriterFor(const Document* ownerDocument, const DocumentInit& init, const AtomicString& mimeType, const AtomicString& encoding, bool dispatch) argument
805 if (ownerDocument) {
806 document->setCookieURL(ownerDocument->cookieURL());
807 document->setSecurityOrigin(ownerDocument->securityOrigin());
808 if (ownerDocument->isTransitionDocument())
831 void DocumentLoader::replaceDocumentWhileExecutingJavaScriptURL(const DocumentInit& init, const String& source, Document* ownerDocument) argument
833 m_writer = createWriterFor(ownerDocument, init, mimeType(), m_writer ? m_writer->encoding() : emptyAtom, true);
H A DFrameLoader.cpp281 void FrameLoader::replaceDocumentWhileExecutingJavaScriptURL(const String& source, Document* ownerDocument) argument
305 documentLoader->replaceDocumentWhileExecutingJavaScriptURL(init, source, ownerDocument);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp1205 Document* TextIterator::ownerDocument() const function in class:blink::TextIterator
1663 Document* CharacterIterator::ownerDocument() const function in class:blink::CharacterIterator
1665 return m_textIterator.ownerDocument();
2263 return Range::create(entireRange->ownerDocument(), start, end);
2342 RefPtrWillBeRawPtr<Range> beforeStartRange = it.ownerDocument()->createRange();
2398 return Range::create(range->ownerDocument(), resultStart, resultEnd);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp510 Document* owner = styleSheet->ownerDocument();
527 Document* owner = parentSheet ? parentSheet->ownerDocument() : 0;
669 Document* ownerDocument = element->ownerDocument(); local
671 if (!ownerDocument->isActive())
679 StyleResolver& styleResolver = ownerDocument->ensureStyleResolver();
705 StyleResolver& parentStyleResolver = parentElement->ownerDocument()->ensureStyleResolver();
986 element->ownerDocument()->setNeedsStyleRecalc(SubtreeStyleChange);
1010 OwnPtr<MediaQueryEvaluator> mediaEvaluator = adoptPtr(new MediaQueryEvaluator(parentStyleSheet->ownerDocument()->frame()));
1013 RefPtr<MediaValues> mediaValues = MediaValues::createDynamicIfFrameExists(parentStyleSheet->ownerDocument()
1295 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 1116 milliseconds