Searched defs:document (Results 101 - 125 of 496) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/dom/
H A DDocumentParser.cpp33 DocumentParser::DocumentParser(Document* document) argument
36 , m_document(document)
38 ASSERT(document);
H A DDocumentType.cpp31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId) argument
32 : Node(document, CreateOther)
56 return create(document(), m_name, m_publicId, m_systemId);
61 // Our document node can be null if we were created by a DOMImplementation. We use the parent() instead.
73 if (document() && document()->doctype() == this)
74 document()->setDocType(0);
H A DNotation.cpp28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId) argument
29 : ContainerNode(document)
H A DScriptRunner.h45 static PassOwnPtr<ScriptRunner> create(Document* document) { return new ScriptRunner(document); } argument
H A DScriptedAnimationController.cpp38 ScriptedAnimationController::ScriptedAnimationController(Document* document) argument
39 : m_document(document)
86 // We want to run the callback for all elements in the document that have registered
H A DScriptedAnimationController.h45 static PassOwnPtr<ScriptedAnimationController> create(Document* document) argument
47 return adoptPtr(new ScriptedAnimationController(document));
H A DStyledElement.h71 StyledElement(const QualifiedName& name, Document* document, ConstructionType type) argument
72 : Element(name, document, type)
/external/webkit/Source/WebCore/editing/
H A DFormatBlockCommand.h36 static PassRefPtr<FormatBlockCommand> create(Document* document, const QualifiedName& tagName) argument
38 return adoptRef(new FormatBlockCommand(document, tagName));
H A DIndentOutdentCommand.h37 static PassRefPtr<IndentOutdentCommand> create(Document* document, EIndentType type, int marginInPixels = 0) argument
39 return adoptRef(new IndentOutdentCommand(document, type, marginInPixels));
H A DInsertListCommand.h39 static PassRefPtr<InsertListCommand> create(Document* document, Type listType) argument
41 return adoptRef(new InsertListCommand(document, listType));
H A DModifySelectionListLevel.h60 static PassRefPtr<IncreaseSelectionListLevelCommand> create(Document* document, Type type) argument
62 return adoptRef(new IncreaseSelectionListLevelCommand(document, type));
80 static PassRefPtr<DecreaseSelectionListLevelCommand> create(Document* document) argument
82 return adoptRef(new DecreaseSelectionListLevelCommand(document));
H A DRemoveCSSPropertyCommand.h37 static PassRefPtr<RemoveCSSPropertyCommand> create(Document* document, PassRefPtr<StyledElement> element, CSSPropertyID property) argument
39 return adoptRef(new RemoveCSSPropertyCommand(document, element, property));
/external/webkit/Source/WebCore/history/
H A DCachedPage.h46 Document* document() const { return m_cachedMainFrame->document(); } function in class:WebCore::CachedPage
/external/webkit/Source/WebCore/html/
H A DHTMLBRElement.cpp35 HTMLBRElement::HTMLBRElement(const QualifiedName& tagName, Document* document) argument
36 : HTMLElement(tagName, document)
41 PassRefPtr<HTMLBRElement> HTMLBRElement::create(Document* document) argument
43 return adoptRef(new HTMLBRElement(brTag, document));
46 PassRefPtr<HTMLBRElement> HTMLBRElement::create(const QualifiedName& tagName, Document* document) argument
48 return adoptRef(new HTMLBRElement(tagName, document));
H A DHTMLBaseElement.cpp34 inline HTMLBaseElement::HTMLBaseElement(const QualifiedName& tagName, Document* document) argument
35 : HTMLElement(tagName, document)
40 PassRefPtr<HTMLBaseElement> HTMLBaseElement::create(const QualifiedName& tagName, Document* document) argument
42 return adoptRef(new HTMLBaseElement(tagName, document));
48 document()->processBaseElement();
56 document()->processBaseElement();
62 document()->processBaseElement();
H A DHTMLDataGridCellElement.cpp38 inline HTMLDataGridCellElement::HTMLDataGridCellElement(const QualifiedName& name, Document* document) argument
39 : HTMLElement(name, document)
43 PassRefPtr<HTMLDataGridCellElement> HTMLDataGridCellElement::create(const QualifiedName& name, Document* document) argument
45 return adoptRef(new HTMLDataGridCellElement(name, document));
H A DHTMLDataGridRowElement.cpp38 inline HTMLDataGridRowElement::HTMLDataGridRowElement(const QualifiedName& name, Document* document) argument
39 : HTMLElement(name, document)
43 PassRefPtr<HTMLDataGridRowElement> HTMLDataGridRowElement::create(const QualifiedName& name, Document* document) argument
45 return adoptRef(new HTMLDataGridRowElement(name, document));
H A DHTMLDivElement.cpp35 HTMLDivElement::HTMLDivElement(const QualifiedName& tagName, Document* document) argument
36 : HTMLElement(tagName, document)
41 PassRefPtr<HTMLDivElement> HTMLDivElement::create(Document* document) argument
43 return adoptRef(new HTMLDivElement(divTag, document));
46 PassRefPtr<HTMLDivElement> HTMLDivElement::create(const QualifiedName& tagName, Document* document) argument
48 return adoptRef(new HTMLDivElement(tagName, document));
H A DHTMLFieldSetElement.cpp36 inline HTMLFieldSetElement::HTMLFieldSetElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
37 : HTMLFormControlElement(tagName, document, form)
42 PassRefPtr<HTMLFieldSetElement> HTMLFieldSetElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
44 return adoptRef(new HTMLFieldSetElement(tagName, document, form));
H A DHTMLFrameElement.cpp37 inline HTMLFrameElement::HTMLFrameElement(const QualifiedName& tagName, Document* document) argument
38 : HTMLFrameElementBase(tagName, document)
46 PassRefPtr<HTMLFrameElement> HTMLFrameElement::create(const QualifiedName& tagName, Document* document) argument
48 return adoptRef(new HTMLFrameElement(tagName, document));
H A DHTMLFrameOwnerElement.cpp36 HTMLFrameOwnerElement::HTMLFrameOwnerElement(const QualifiedName& tagName, Document* document) argument
37 : HTMLElement(tagName, document)
73 return m_contentFrame ? m_contentFrame->document() : 0;
H A DHTMLHRElement.cpp35 HTMLHRElement::HTMLHRElement(const QualifiedName& tagName, Document* document) argument
36 : HTMLElement(tagName, document)
41 PassRefPtr<HTMLHRElement> HTMLHRElement::create(Document* document) argument
43 return adoptRef(new HTMLHRElement(hrTag, document));
46 PassRefPtr<HTMLHRElement> HTMLHRElement::create(const QualifiedName& tagName, Document* document) argument
48 return adoptRef(new HTMLHRElement(tagName, document));
H A DHTMLLIElement.cpp36 HTMLLIElement::HTMLLIElement(const QualifiedName& tagName, Document* document) argument
37 : HTMLElement(tagName, document)
43 PassRefPtr<HTMLLIElement> HTMLLIElement::create(Document* document) argument
45 return adoptRef(new HTMLLIElement(liTag, document));
48 PassRefPtr<HTMLLIElement> HTMLLIElement::create(const QualifiedName& tagName, Document* document) argument
50 return adoptRef(new HTMLLIElement(tagName, document));
H A DHTMLLegendElement.cpp35 inline HTMLLegendElement::HTMLLegendElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
36 : HTMLFormControlElement(tagName, document, form)
41 PassRefPtr<HTMLLegendElement> HTMLLegendElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) argument
43 return adoptRef(new HTMLLegendElement(tagName, document, form));
H A DHTMLMetaElement.cpp43 inline HTMLMetaElement::HTMLMetaElement(const QualifiedName& tagName, Document* document) argument
44 : HTMLElement(tagName, document)
49 PassRefPtr<HTMLMetaElement> HTMLMetaElement::create(const QualifiedName& tagName, Document* document) argument
51 return adoptRef(new HTMLMetaElement(tagName, document));
79 document()->processViewport(m_content);
83 document()->processMetadataSettings(m_content);
85 && document()->settings()
86 && document()->settings()->viewportWidth() == -1) {
88 document()->processViewport("width=device-width");
97 if (Page* page = document()
[all...]

Completed in 504 milliseconds

1234567891011>>