ownerDocument     527 Source/bindings/v8/ScriptController.cpp     RefPtr<Document> ownerDocument(m_frame->document());
ownerDocument     555 Source/bindings/v8/ScriptController.cpp         loader->replaceDocument(scriptResult, ownerDocument.get());
ownerDocument     178 Source/bindings/v8/V8LazyEventListener.cpp     v8::Handle<v8::Object> documentWrapper = toObjectWrapper<Document>(m_node ? m_node->ownerDocument() : 0, isolate);
ownerDocument     165 Source/core/css/CSSStyleSheet.cpp         if (Document* document = ownerDocument())
ownerDocument     195 Source/core/css/CSSStyleSheet.cpp     Document* owner = ownerDocument();
ownerDocument     230 Source/core/css/CSSStyleSheet.cpp     reportMediaQueryWarningIfNeeded(ownerDocument(), m_mediaQueries.get());
ownerDocument     274 Source/core/css/CSSStyleSheet.cpp     Document* document = ownerDocument();
ownerDocument      89 Source/core/css/CSSStyleSheet.h     Document* ownerDocument() const;
ownerDocument     527 Source/core/css/StyleSheetContents.cpp         return (*m_loadingClients.begin())->ownerDocument();
ownerDocument     528 Source/core/css/StyleSheetContents.cpp     return (*m_completedClients.begin())->ownerDocument();
ownerDocument     542 Source/core/css/StyleSheetContents.cpp     if (!sheet->ownerDocument())
ownerDocument     546 Source/core/css/StyleSheetContents.cpp         if (sheet->ownerDocument() != document)
ownerDocument     557 Source/core/css/StyleSheetContents.cpp     if (!sheet->ownerDocument() || !m_loadingClients.isEmpty() || !m_completedClients.isEmpty())
ownerDocument     561 Source/core/css/StyleSheetContents.cpp         removeSheetFromCache(sheet->ownerDocument());
ownerDocument     567 Source/core/css/StyleSheetContents.cpp     ASSERT(m_loadingClients.contains(sheet) || !sheet->ownerDocument());
ownerDocument     572 Source/core/css/StyleSheetContents.cpp     if (!sheet->ownerDocument())
ownerDocument     622 Source/core/css/StyleSheetContents.cpp         if (Document* document = (*it)->ownerDocument())
ownerDocument      49 Source/core/css/resolver/ScopedStyleResolver.cpp     Document* sheetDocument = sheet->ownerDocument();
ownerDocument     142 Source/core/dom/ContainerNodeAlgorithms.h             if (Document* containerDocument = container.ownerDocument())
ownerDocument    2257 Source/core/dom/Document.cpp void Document::open(Document* ownerDocument)
ownerDocument    2259 Source/core/dom/Document.cpp     if (ownerDocument) {
ownerDocument    2260 Source/core/dom/Document.cpp         setURL(ownerDocument->url());
ownerDocument    2261 Source/core/dom/Document.cpp         m_cookieURL = ownerDocument->cookieURL();
ownerDocument    2262 Source/core/dom/Document.cpp         setSecurityOrigin(ownerDocument->securityOrigin());
ownerDocument    2648 Source/core/dom/Document.cpp void Document::write(const SegmentedString& text, Document* ownerDocument)
ownerDocument    2666 Source/core/dom/Document.cpp         open(ownerDocument);
ownerDocument    2672 Source/core/dom/Document.cpp void Document::write(const String& text, Document* ownerDocument)
ownerDocument    2674 Source/core/dom/Document.cpp     write(SegmentedString(text), ownerDocument);
ownerDocument    2677 Source/core/dom/Document.cpp void Document::writeln(const String& text, Document* ownerDocument)
ownerDocument    2679 Source/core/dom/Document.cpp     write(text, ownerDocument);
ownerDocument    2680 Source/core/dom/Document.cpp     write("\n", ownerDocument);
ownerDocument     522 Source/core/dom/Document.h     void open(Document* ownerDocument = 0);
ownerDocument     547 Source/core/dom/Document.h     void write(const SegmentedString& text, Document* ownerDocument = 0);
ownerDocument     548 Source/core/dom/Document.h     void write(const String& text, Document* ownerDocument = 0);
ownerDocument     549 Source/core/dom/Document.h     void writeln(const String& text, Document* ownerDocument = 0);
ownerDocument      68 Source/core/dom/DocumentInit.cpp     , m_owner(ownerDocument(frame))
ownerDocument     447 Source/core/dom/Node.h     Document* ownerDocument() const;
ownerDocument      61 Source/core/dom/Range.cpp inline Range::Range(Document& ownerDocument)
ownerDocument      62 Source/core/dom/Range.cpp     : m_ownerDocument(&ownerDocument)
ownerDocument      74 Source/core/dom/Range.cpp PassRefPtrWillBeRawPtr<Range> Range::create(Document& ownerDocument)
ownerDocument      76 Source/core/dom/Range.cpp     return adoptRefWillBeNoop(new Range(ownerDocument));
ownerDocument      79 Source/core/dom/Range.cpp inline Range::Range(Document& ownerDocument, Node* startContainer, int startOffset, Node* endContainer, int endOffset)
ownerDocument      80 Source/core/dom/Range.cpp     : m_ownerDocument(&ownerDocument)
ownerDocument      97 Source/core/dom/Range.cpp PassRefPtrWillBeRawPtr<Range> Range::create(Document& ownerDocument, Node* startContainer, int startOffset, Node* endContainer, int endOffset)
ownerDocument      99 Source/core/dom/Range.cpp     return adoptRefWillBeNoop(new Range(ownerDocument, startContainer, startOffset, endContainer, endOffset));
ownerDocument     102 Source/core/dom/Range.cpp PassRefPtrWillBeRawPtr<Range> Range::create(Document& ownerDocument, const Position& start, const Position& end)
ownerDocument     104 Source/core/dom/Range.cpp     return adoptRefWillBeNoop(new Range(ownerDocument, start.containerNode(), start.computeOffsetInContainerNode(), end.containerNode(), end.computeOffsetInContainerNode()));
ownerDocument      58 Source/core/dom/Range.h     Document& ownerDocument() const { ASSERT(m_ownerDocument); return *m_ownerDocument.get(); }
ownerDocument     271 Source/core/editing/EditorCommand.cpp     return Range::create(a->ownerDocument(), start->startContainer(), start->startOffset(), end->endContainer(), end->endOffset());
ownerDocument      71 Source/core/editing/SpellCheckRequester.cpp     const Vector<DocumentMarker*>& markers = checkingRange->ownerDocument().markers().markersInRange(checkingRange.get(), DocumentMarker::SpellCheckClientMarkers());
ownerDocument     529 Source/core/editing/TextCheckingHelper.cpp     Document& doc = m_range->ownerDocument();
ownerDocument    2085 Source/core/editing/TextIterator.cpp         RefPtrWillBeRawPtr<Range> beforeStartRange = startRange->ownerDocument().createRange();
ownerDocument    2127 Source/core/editing/TextIterator.cpp     range->ownerDocument().updateLayout();
ownerDocument     632 Source/core/editing/markup.cpp     Document& document = range->ownerDocument();
ownerDocument     822 Source/core/editing/markup.cpp     Document& document = context->ownerDocument();
ownerDocument     382 Source/core/html/HTMLMediaElement.cpp     if (ownerDocument()->isMediaDocument())
ownerDocument     225 Source/core/inspector/DOMEditor.cpp         ASSERT(m_node->ownerDocument());
ownerDocument     226 Source/core/inspector/DOMEditor.cpp         DOMPatchSupport domPatchSupport(m_domEditor.get(), *m_node->ownerDocument());
ownerDocument     151 Source/core/inspector/InspectorCSSAgent.cpp         Document* document = styleSheet->ownerDocument();
ownerDocument     477 Source/core/inspector/InspectorCSSAgent.cpp         Document* document = styleSheet->ownerDocument();
ownerDocument     539 Source/core/inspector/InspectorCSSAgent.cpp         Document* owner = styleSheet->ownerDocument();
ownerDocument     556 Source/core/inspector/InspectorCSSAgent.cpp         Document* owner = parentSheet ? parentSheet->ownerDocument() : 0;
ownerDocument     676 Source/core/inspector/InspectorCSSAgent.cpp     Document* ownerDocument = element->ownerDocument();
ownerDocument     678 Source/core/inspector/InspectorCSSAgent.cpp     if (!ownerDocument->isActive())
ownerDocument     686 Source/core/inspector/InspectorCSSAgent.cpp     StyleResolver& styleResolver = ownerDocument->ensureStyleResolver();
ownerDocument     712 Source/core/inspector/InspectorCSSAgent.cpp             StyleResolver& parentStyleResolver = parentElement->ownerDocument()->ensureStyleResolver();
ownerDocument     986 Source/core/inspector/InspectorCSSAgent.cpp     element->ownerDocument()->setNeedsStyleRecalc(SubtreeStyleChange);
ownerDocument    1058 Source/core/inspector/InspectorCSSAgent.cpp                 sourceURL = InspectorDOMAgent::documentURLString(parentStyleSheet->ownerDocument());
ownerDocument    1075 Source/core/inspector/InspectorCSSAgent.cpp                     Document* doc = styleSheet->ownerDocument();
ownerDocument    1164 Source/core/inspector/InspectorCSSAgent.cpp         Document* document = styleSheet->ownerDocument();
ownerDocument    1248 Source/core/inspector/InspectorCSSAgent.cpp TypeBuilder::CSS::StyleSheetOrigin::Enum InspectorCSSAgent::detectOrigin(CSSStyleSheet* pageStyleSheet, Document* ownerDocument)
ownerDocument    1259 Source/core/inspector/InspectorCSSAgent.cpp         InspectorStyleSheet* viaInspectorStyleSheetForOwner = viaInspectorStyleSheet(ownerDocument, false);
ownerDocument    1401 Source/core/inspector/InspectorCSSAgent.cpp         if (element && element->ownerDocument())
ownerDocument    1402 Source/core/inspector/InspectorCSSAgent.cpp             documentsToChange.add(element->ownerDocument());
ownerDocument     174 Source/core/inspector/InspectorCSSAgent.h     TypeBuilder::CSS::StyleSheetOrigin::Enum detectOrigin(CSSStyleSheet* pageStyleSheet, Document* ownerDocument);
ownerDocument     307 Source/core/inspector/InspectorController.cpp     Document* document = node->ownerDocument();
ownerDocument     843 Source/core/inspector/InspectorDOMAgent.cpp     Document* document = node->isDocumentNode() ? toDocument(node) : node->ownerDocument();
ownerDocument    1938 Source/core/inspector/InspectorDOMAgent.cpp     if (!host->ownerDocument())
ownerDocument    1951 Source/core/inspector/InspectorDOMAgent.cpp     if (!host->ownerDocument())
ownerDocument    2095 Source/core/inspector/InspectorDOMAgent.cpp     Node* resultNode = renderer ? renderer->generatingNode() : node->ownerDocument();
ownerDocument    2101 Source/core/inspector/InspectorDOMAgent.cpp     Document* document = node->isDocumentNode() ? &node->document() : node->ownerDocument();
ownerDocument     172 Source/core/inspector/InspectorInstrumentation.h     return styleSheet ? instrumentingAgentsFor(styleSheet->ownerDocument()) : 0;
ownerDocument     421 Source/core/inspector/InspectorStyleSheet.cpp     StyleSheetHandler handler(text(), m_pageStyleSheet->ownerDocument(), newStyleSheet.get(), result.get());
ownerDocument     422 Source/core/inspector/InspectorStyleSheet.cpp     BisonCSSParser(parserContextForDocument(m_pageStyleSheet->ownerDocument())).parseSheet(newStyleSheet.get(), text(), TextPosition::minimumPosition(), &handler);
ownerDocument     558 Source/core/inspector/InspectorStyleSheet.cpp     StyleSheetHandler handler(declarationText, ownerDocument(), styleSheetContents.get(), &sourceData);
ownerDocument     559 Source/core/inspector/InspectorStyleSheet.cpp     BisonCSSParser(parserContextForDocument(ownerDocument())).parseDeclaration(tempMutableStyle.get(), declarationText, &handler, styleSheetContents.get());
ownerDocument     828 Source/core/inspector/InspectorStyleSheet.cpp     return m_parentStyleSheet->ownerDocument();
ownerDocument    1004 Source/core/inspector/InspectorStyleSheet.cpp     m_pageStyleSheet->ownerDocument()->styleResolverChanged(RecalcStyleImmediately, FullStyleUpdate);
ownerDocument    1054 Source/core/inspector/InspectorStyleSheet.cpp     if (!checkStyleRuleSelector(m_pageStyleSheet->ownerDocument(), selector)) {
ownerDocument    1144 Source/core/inspector/InspectorStyleSheet.cpp     Document* document = styleSheet->ownerDocument();
ownerDocument    1376 Source/core/inspector/InspectorStyleSheet.cpp     return m_pageStyleSheet->ownerDocument();
ownerDocument    1509 Source/core/inspector/InspectorStyleSheet.cpp     if (!ownerDocument() || !ownerDocument()->frame())
ownerDocument    1513 Source/core/inspector/InspectorStyleSheet.cpp     bool success = m_resourceAgent->fetchResourceContent(ownerDocument()->frame(), KURL(ParsedURLString, m_pageStyleSheet->href()), result, &base64Encoded) && !base64Encoded;
ownerDocument    1583 Source/core/inspector/InspectorStyleSheet.cpp         InspectorCSSAgent::InlineStyleOverrideScope overrideScope(m_element->ownerDocument());
ownerDocument     157 Source/core/inspector/InspectorStyleSheet.h     inline Document* ownerDocument() const;
ownerDocument     180 Source/core/inspector/InspectorStyleSheet.h     virtual Document* ownerDocument() const = 0;
ownerDocument     223 Source/core/inspector/InspectorStyleSheet.h     virtual Document* ownerDocument() const OVERRIDE;
ownerDocument     286 Source/core/inspector/InspectorStyleSheet.h     virtual Document* ownerDocument() const OVERRIDE;
ownerDocument     777 Source/core/loader/DocumentLoader.cpp PassRefPtr<DocumentWriter> DocumentLoader::createWriterFor(LocalFrame* frame, const Document* ownerDocument, const KURL& url, const AtomicString& mimeType, const AtomicString& encoding, bool userChosen, bool dispatch)
ownerDocument     802 Source/core/loader/DocumentLoader.cpp     if (ownerDocument) {
ownerDocument     803 Source/core/loader/DocumentLoader.cpp         document->setCookieURL(ownerDocument->cookieURL());
ownerDocument     804 Source/core/loader/DocumentLoader.cpp         document->setSecurityOrigin(ownerDocument->securityOrigin());
ownerDocument     828 Source/core/loader/DocumentLoader.cpp void DocumentLoader::replaceDocument(const String& source, Document* ownerDocument)
ownerDocument     831 Source/core/loader/DocumentLoader.cpp     m_writer = createWriterFor(m_frame, ownerDocument, m_frame->document()->url(), mimeType(), m_writer ? m_writer->encoding() : emptyAtom,  m_writer ? m_writer->encodingWasChosenByUser() : false, true);
ownerDocument     146 Source/core/loader/DocumentLoader.h         static PassRefPtr<DocumentWriter> createWriterFor(LocalFrame*, const Document* ownerDocument, const KURL&, const AtomicString& mimeType, const AtomicString& encoding, bool userChosen, bool dispatch);
ownerDocument      56 Source/core/loader/DocumentWriter.h     void replaceDocument(const String&, Document* ownerDocument);
ownerDocument     157 Source/core/page/DragController.cpp     Document& document = context->ownerDocument();
ownerDocument     463 Source/core/page/DragController.cpp     RefPtr<LocalFrame> innerFrame = element->ownerDocument()->frame();
ownerDocument     493 Source/core/page/DragController.cpp     ResourceFetcher* fetcher = range->ownerDocument().fetcher();
ownerDocument     269 Source/core/page/PageSerializer.cpp         ASSERT(styleSheet->ownerDocument());
ownerDocument     270 Source/core/page/PageSerializer.cpp         Document& document = *styleSheet->ownerDocument();
ownerDocument    1296 Source/core/rendering/RenderObject.cpp     range->ownerDocument().updateLayout();
ownerDocument      77 Source/core/rendering/RenderVideo.cpp     if (size.isEmpty() && node()->ownerDocument() && node()->ownerDocument()->isMediaDocument())
ownerDocument     115 Source/core/rendering/RenderVideo.cpp     if (video->ownerDocument() && video->ownerDocument()->isMediaDocument())
ownerDocument     234 Source/core/svg/SVGElementInstance.cpp     return m_element ? m_element->ownerDocument() : 0;
ownerDocument      76 Source/core/svg/SVGElementInstance.h     inline Document* ownerDocument() const;
ownerDocument      76 Source/core/svg/SVGFEImageElement.cpp     FetchRequest request(ResourceRequest(ownerDocument()->completeURL(hrefString())), localName());
ownerDocument     889 Source/core/testing/Internals.cpp     range->ownerDocument().updateLayoutIgnorePendingStylesheets();
ownerDocument     890 Source/core/testing/Internals.cpp     range->ownerDocument().markers().addTextMatchMarker(range, isActive);
ownerDocument     106 Source/core/xml/XPathPath.cpp             context = context->ownerDocument();
ownerDocument      78 Source/core/xml/XSLStyleSheet.h     Document* ownerDocument();
ownerDocument     101 Source/core/xml/XSLStyleSheetLibxslt.cpp     if (m_embedded && ownerDocument() && ownerDocument()->transformSource())
ownerDocument     102 Source/core/xml/XSLStyleSheetLibxslt.cpp         return (xmlDocPtr)ownerDocument()->transformSource()->platformSource();
ownerDocument     118 Source/core/xml/XSLStyleSheetLibxslt.cpp     Document* document = ownerDocument();
ownerDocument     132 Source/core/xml/XSLStyleSheetLibxslt.cpp     LocalFrame* frame = ownerDocument()->frame();
ownerDocument      66 Source/core/xml/XSLTProcessor.cpp     RefPtr<Document> ownerDocument(sourceNode->document());
ownerDocument      67 Source/core/xml/XSLTProcessor.cpp     bool sourceIsDocument = (sourceNode == ownerDocument.get());
ownerDocument      71 Source/core/xml/XSLTProcessor.cpp     DocumentInit init(sourceIsDocument ? ownerDocument->url() : KURL(), frame);
ownerDocument     112 Source/core/xml/XSLTProcessorLibxslt.cpp         LocalFrame* frame = globalProcessor->xslStylesheet()->ownerDocument()->frame();
ownerDocument     242 Source/core/xml/XSLTProcessorLibxslt.cpp     RefPtr<Document> ownerDocument(sourceNode->document());
ownerDocument     243 Source/core/xml/XSLTProcessorLibxslt.cpp     bool sourceIsDocument = (sourceNode == ownerDocument.get());
ownerDocument     246 Source/core/xml/XSLTProcessorLibxslt.cpp     if (sourceIsDocument && ownerDocument->transformSource())
ownerDocument     247 Source/core/xml/XSLTProcessorLibxslt.cpp         sourceDoc = (xmlDocPtr)ownerDocument->transformSource()->platformSource();
ownerDocument     249 Source/core/xml/XSLTProcessorLibxslt.cpp         sourceDoc = (xmlDocPtr)xmlDocPtrForString(ownerDocument->fetcher(), createMarkup(sourceNode),
ownerDocument     250 Source/core/xml/XSLTProcessorLibxslt.cpp             sourceIsDocument ? ownerDocument->url().string() : String());
ownerDocument     277 Source/core/xml/XSLTProcessorLibxslt.cpp     RefPtr<Document> ownerDocument(sourceNode->document());
ownerDocument     279 Source/core/xml/XSLTProcessorLibxslt.cpp     setXSLTLoadCallBack(docLoaderFunc, this, ownerDocument->fetcher());
ownerDocument      49 Source/modules/mediastream/MediaDevicesRequest.h     Document* ownerDocument();
ownerDocument      58 Source/modules/mediastream/UserMediaRequest.h     Document* ownerDocument();
ownerDocument     107 Source/web/TextFinder.cpp     if (m_activeMatch && &m_activeMatch->ownerDocument() != m_ownerFrame.frame()->document())
ownerDocument    1220 Source/web/WebFrameImpl.cpp     RefPtrWillBeRawPtr<Range> markerRange = Range::create(caretRange->ownerDocument(), caretRange->startContainer(), markers[0]->startOffset(), caretRange->endContainer(), markers[0]->endOffset());
ownerDocument    1907 Source/web/WebFrameImpl.cpp     RefPtr<Document> ownerDocument(frame()->document());
ownerDocument    1922 Source/web/WebFrameImpl.cpp         frame()->document()->loader()->replaceDocument(scriptResult, ownerDocument.get());
ownerDocument      68 Source/web/WebMediaDevicesRequest.cpp     return WebDocument(m_private->ownerDocument());
ownerDocument     124 Source/web/WebRange.cpp     LocalFrame* frame = m_private->ownerDocument().frame();
ownerDocument     101 Source/web/WebUserMediaRequest.cpp     return WebDocument(m_private->ownerDocument());
ownerDocument      61 public/web/WebMediaDevicesRequest.h     BLINK_EXPORT WebDocument ownerDocument() const;
ownerDocument      73 public/web/WebUserMediaRequest.h     BLINK_EXPORT WebDocument ownerDocument() const;