Searched defs:document (Results 226 - 250 of 714) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DElementStyleResources.cpp40 PassRefPtr<StyleImage> ElementStyleResources::styleImage(Document& document, const TextLinkColors& textLinkColors, Color currentColor, CSSPropertyID property, CSSValue* value) argument
43 return cachedOrPendingFromValue(document, property, toCSSImageValue(value));
77 PassRefPtr<StyleImage> ElementStyleResources::cachedOrPendingFromValue(Document& document, CSSPropertyID property, CSSImageValue* value) argument
84 value->restoreCachedResourceIfNeeded(document);
H A DSharedStyleFinder.h71 Document& document() const { return element().document(); } function in class:blink::SharedStyleFinder
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFragment.cpp32 DocumentFragment::DocumentFragment(Document* document, ConstructionType constructionType) argument
33 : ContainerNode(document, constructionType)
37 PassRefPtrWillBeRawPtr<DocumentFragment> DocumentFragment::create(Document& document) argument
39 return adoptRefWillBeNoop(new DocumentFragment(&document, Node::CreateDocumentFragment));
44 return "#document-fragment";
68 RefPtrWillBeRawPtr<DocumentFragment> clone = create(document());
H A DDocumentMarkerControllerTest.cpp53 Document& document() const { return *m_document; } function in class:__anon11045::DocumentMarkerControllerTest
68 m_document = &m_dummyPageHolder->document();
74 return document().createTextNode(String::fromUTF8(textContents));
81 document().updateLayout();
88 document().body()->setInnerHTML(String::fromUTF8(bodyContent), ASSERT_NO_EXCEPTION);
94 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
110 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
124 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
137 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
151 RefPtrWillBeRawPtr<Element> parent = toElement(document()
[all...]
H A DDocumentParser.cpp36 DocumentParser::DocumentParser(Document* document) argument
39 , m_document(document)
41 ASSERT(document);
H A DDocumentTest.cpp56 Document& document() const { return m_dummyPageHolder->document(); } function in class:__anon11046::DocumentTest
73 static PassOwnPtrWillBeRawPtr<MockDocumentVisibilityObserver> create(Document& document) argument
75 return adoptPtrWillBeNoop(new MockDocumentVisibilityObserver(document));
83 MockDocumentVisibilityObserver(Document& document) : DocumentVisibilityObserver(document) { } argument
89 OwnPtrWillBeRawPtr<MockDocumentVisibilityObserver> observer1 = MockDocumentVisibilityObserver::create(document());
92 OwnPtrWillBeRawPtr<MockDocumentVisibilityObserver> observer2 = MockDocumentVisibilityObserver::create(document());
121 Document& alternateDocument = alternatePage->document();
131 observer2->setObservedDocument(document());
[all...]
H A DScriptedAnimationController.h46 static PassRefPtrWillBeRawPtr<ScriptedAnimationController> create(Document* document) argument
48 return adoptRefWillBeNoop(new ScriptedAnimationController(document));
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DBreakBlockquoteCommand.cpp43 BreakBlockquoteCommand::BreakBlockquoteCommand(Document& document) argument
44 : CompositeEditCommand(document)
76 RefPtrWillBeRawPtr<HTMLBRElement> breakElement = createBreakElement(document());
H A DEditCommand.cpp37 EditCommand::EditCommand(Document& document) argument
38 : m_document(&document)
47 EditCommand::EditCommand(Document* document, const VisibleSelection& startingSelection, const VisibleSelection& endingSelection) argument
48 : m_document(document)
H A DEditCommand.h61 Document& document() const { return *m_document.get(); } function in class:blink::EditCommand
86 explicit SimpleEditCommand(Document& document) : EditCommand(document) { } argument
H A DInputMethodControllerTest.cpp23 HTMLDocument& document() const { return *m_document; } function in class:__anon11063::InputMethodControllerTest
37 m_document = toHTMLDocument(&m_dummyPageHolder->document());
44 document().write(elementCode);
45 document().updateLayout();
46 Element* element = document().getElementById(elementId);
H A DSimplifyMarkupCommand.cpp37 SimplifyMarkupCommand::SimplifyMarkupCommand(Document& document, Node* firstNode, Node* nodeAfterLast) argument
38 : CompositeEditCommand(document), m_firstNode(firstNode), m_nodeAfterLast(nodeAfterLast)
H A DSurroundingText.cpp58 ASSERT(startPosition.document() == endPosition.document());
62 Document* document = startPosition.document(); local
63 // The position will have no document if it is null (as in no position).
64 if (!document)
67 // The forward range starts at the selection end and ends at the document's
70 RefPtrWillBeRawPtr<Range> forwardRange = Range::create(*document, endPosition, lastPositionInNode(document->documentElement()).parentAnchoredEquivalent());
77 if (!forwardRange || !Range::create(*document, endPositio
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameViewAutoSizeInfo.cpp65 Document* document = m_frameView->frame().document(); local
66 if (!document || !document->isActive())
69 Element* documentElement = document->documentElement();
84 document->updateLayoutIgnorePendingStylesheets();
86 RenderView* renderView = document->renderView();
144 && !m_frameView->frame().document()->loadEventFinished() && (newSize.height() < size.height() || newSize.width() < size.width()))
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLIElement.cpp36 inline HTMLLIElement::HTMLLIElement(Document& document) argument
37 : HTMLElement(liTag, document)
85 ASSERT(!document().childNeedsDistributionRecalc());
H A DHTMLMarqueeElement.cpp37 inline HTMLMarqueeElement::HTMLMarqueeElement(Document& document) argument
38 : HTMLElement(marqueeTag, document)
39 , ActiveDOMObject(&document)
43 PassRefPtrWillBeRawPtr<HTMLMarqueeElement> HTMLMarqueeElement::create(Document& document) argument
45 RefPtrWillBeRawPtr<HTMLMarqueeElement> marqueeElement(adoptRefWillBeNoop(new HTMLMarqueeElement(document)));
61 ActiveDOMObject::didMoveToNewExecutionContext(&document());
157 document().updateLayout();
H A DHTMLOListElement.cpp35 inline HTMLOListElement::HTMLOListElement(Document& document) argument
36 : HTMLElement(olTag, document)
101 document().updateDistributionForNodeIfNeeded(this);
H A DHTMLSummaryElement.cpp38 PassRefPtrWillBeRawPtr<HTMLSummaryElement> HTMLSummaryElement::create(Document& document) argument
40 RefPtrWillBeRawPtr<HTMLSummaryElement> summary = adoptRefWillBeNoop(new HTMLSummaryElement(document));
45 HTMLSummaryElement::HTMLSummaryElement(Document& document) argument
46 : HTMLElement(summaryTag, document)
57 root.appendChild(DetailsMarkerControl::create(document()));
58 root.appendChild(HTMLContentElement::create(document()));
H A DHTMLTableColElement.cpp37 inline HTMLTableColElement::HTMLTableColElement(const QualifiedName& tagName, Document& document) argument
38 : HTMLTablePartElement(tagName, document)
H A DHTMLTableRowElement.cpp42 inline HTMLTableRowElement::HTMLTableRowElement(Document& document) argument
43 : HTMLTablePartElement(trTag, document)
125 RefPtrWillBeRawPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document());
/external/chromium_org/third_party/WebKit/Source/core/html/imports/
H A DHTMLImportTreeRoot.cpp15 PassOwnPtrWillBeRawPtr<HTMLImportTreeRoot> HTMLImportTreeRoot::create(Document* document) argument
17 return adoptPtrWillBeNoop(new HTMLImportTreeRoot(document));
20 HTMLImportTreeRoot::HTMLImportTreeRoot(Document* document) argument
22 , m_document(document)
38 Document* HTMLImportTreeRoot::document() const function in class:blink::HTMLImportTreeRoot
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserScheduler.cpp44 ActiveParserSession::ActiveParserSession(Document* document) argument
45 : m_document(document)
59 PumpSession::PumpSession(unsigned& nestingLevel, Document* document) argument
61 , ActiveParserSession(document)
H A DHTMLScriptRunner.h49 static PassOwnPtrWillBeRawPtr<HTMLScriptRunner> create(Document* document, HTMLScriptRunnerHost* host) argument
51 return adoptPtrWillBeNoop(new HTMLScriptRunner(document, host));
91 Deque<PendingScript> m_scriptsToExecuteAfterParsing; // http://www.whatwg.org/specs/web-apps/current-work/#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMeterShadowElement.cpp45 inline MeterShadowElement::MeterShadowElement(Document& document) argument
46 : HTMLDivElement(document)
61 inline MeterInnerElement::MeterInnerElement(Document& document) argument
62 : MeterShadowElement(document)
66 PassRefPtrWillBeRawPtr<MeterInnerElement> MeterInnerElement::create(Document& document) argument
68 RefPtrWillBeRawPtr<MeterInnerElement> element = adoptRefWillBeNoop(new MeterInnerElement(document));
87 inline MeterBarElement::MeterBarElement(Document& document) argument
88 : MeterShadowElement(document)
92 PassRefPtrWillBeRawPtr<MeterBarElement> MeterBarElement::create(Document& document) argument
94 RefPtrWillBeRawPtr<MeterBarElement> element = adoptRefWillBeNoop(new MeterBarElement(document));
99 MeterValueElement(Document& document) argument
104 create(Document& document) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DDocumentWriter.cpp47 PassRefPtrWillBeRawPtr<DocumentWriter> DocumentWriter::create(Document* document, const AtomicString& mimeType, const AtomicString& encoding) argument
49 return adoptRefWillBeNoop(new DocumentWriter(document, mimeType, encoding));
52 DocumentWriter::DocumentWriter(Document* document, const AtomicString& mimeType, const AtomicString& encoding) argument
53 : m_document(document)
56 // original parser, even if the document acquires a new parser (e.g., via
57 // document.open).

Completed in 425 milliseconds

1234567891011>>