Searched defs:document (Results 1 - 25 of 216) sorted by relevance

123456789

/external/webkit/WebCore/editing/
H A DUnlinkCommand.cpp33 UnlinkCommand::UnlinkCommand(Document* document) argument
34 : CompositeEditCommand(document)
46 removeStyledElement(HTMLAnchorElement::create(document()));
H A DBreakBlockquoteCommand.h35 static PassRefPtr<BreakBlockquoteCommand> create(Document* document) argument
37 return adoptRef(new BreakBlockquoteCommand(document));
H A DDeleteButton.cpp39 DeleteButton::DeleteButton(Document* document) argument
40 : HTMLImageElement(HTMLNames::imgTag, document)
48 document()->frame()->editor()->deleteButtonController()->deleteTarget();
H A DInsertLineBreakCommand.h35 static PassRefPtr<InsertLineBreakCommand> create(Document* document) argument
37 return adoptRef(new InsertLineBreakCommand(document));
H A DCreateLinkCommand.cpp35 CreateLinkCommand::CreateLinkCommand(Document* document, const String& url) argument
36 : CompositeEditCommand(document)
46 RefPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document());
54 RefPtr<Text> textNode = Text::create(document(), m_url);
H A DRemoveCSSPropertyCommand.cpp34 RemoveCSSPropertyCommand::RemoveCSSPropertyCommand(Document* document, PassRefPtr<CSSMutableStyleDeclaration> style, CSSPropertyID property) argument
35 : SimpleEditCommand(document)
H A DRemoveFormatCommand.h35 static PassRefPtr<RemoveFormatCommand> create(Document* document) argument
37 return adoptRef(new RemoveFormatCommand(document));
H A DUnlinkCommand.h35 static PassRefPtr<UnlinkCommand> create(Document* document) argument
37 return adoptRef(new UnlinkCommand(document));
H A DCreateLinkCommand.h35 static PassRefPtr<CreateLinkCommand> create(Document* document, const String& linkURL) argument
37 return adoptRef(new CreateLinkCommand(document, linkURL));
H A DFormatBlockCommand.h35 static PassRefPtr<FormatBlockCommand> create(Document* document, const AtomicString& tagName) argument
37 return adoptRef(new FormatBlockCommand(document, tagName));
H A DInsertParagraphSeparatorCommand.h35 static PassRefPtr<InsertParagraphSeparatorCommand> create(Document* document, bool useDefaultParagraphElement = false) argument
37 return adoptRef(new InsertParagraphSeparatorCommand(document, useDefaultParagraphElement));
H A DInsertTextCommand.h35 static PassRefPtr<InsertTextCommand> create(Document* document) argument
37 return adoptRef(new InsertTextCommand(document));
H A DRemoveFormatCommand.cpp44 RemoveFormatCommand::RemoveFormatCommand(Document* document) argument
45 : CompositeEditCommand(document)
51 Frame* frame = document()->frame();
/external/webkit/WebCore/html/
H A DHTMLBlockquoteElement.cpp32 HTMLBlockquoteElement::HTMLBlockquoteElement(const QualifiedName& tagName, Document* document) argument
33 : HTMLElement(tagName, document)
/external/webkit/WebCore/mathml/
H A DMathMLMathElement.cpp39 MathMLMathElement::MathMLMathElement(const QualifiedName& tagName, Document* document) argument
40 : MathMLInlineContainerElement(tagName, document)
44 PassRefPtr<MathMLMathElement> MathMLMathElement::create(const QualifiedName& tagName, Document* document) argument
46 return new MathMLMathElement(tagName, document);
H A DMathMLElement.cpp39 MathMLElement::MathMLElement(const QualifiedName& tagName, Document* document) argument
40 : StyledElement(tagName, document, CreateElementZeroRefCount)
44 PassRefPtr<MathMLElement> MathMLElement::create(const QualifiedName& tagName, Document* document) argument
46 return new MathMLElement(tagName, document);
H A DMathMLTextElement.cpp39 MathMLTextElement::MathMLTextElement(const QualifiedName& tagName, Document* document) argument
40 : MathMLElement(tagName, document)
44 PassRefPtr<MathMLTextElement> MathMLTextElement::create(const QualifiedName& tagName, Document* document) argument
46 return new MathMLTextElement(tagName, document);
/external/webkit/WebKit/win/
H A DAccessibleDocument.cpp46 Document* AccessibleDocument::document() const function in class:AccessibleDocument
50 return m_object->document();
/external/webkit/WebCore/bindings/v8/custom/
H A DV8DocumentLocationCustom.cpp37 Document* document = V8Document::toNative(info.Holder()); local
38 if (!document->frame())
41 DOMWindow* window = document->frame()->domWindow();
47 Document* document = V8Document::toNative(info.Holder()); local
48 if (!document->frame())
51 DOMWindow* window = document->frame()->domWindow();
/external/webkit/WebCore/dom/
H A DEditingText.cpp28 inline EditingText::EditingText(Document* document, const String& data) argument
29 : Text(document, data)
33 PassRefPtr<EditingText> EditingText::create(Document* document, const String& data) argument
35 return adoptRef(new EditingText(document, data));
H A DComment.cpp27 inline Comment::Comment(Document* document, const String& text) argument
28 : CharacterData(document, text, CreateOther)
32 PassRefPtr<Comment> Comment::create(Document* document, const String& text) argument
34 return adoptRef(new Comment(document, text));
49 return create(document(), data());
H A DEntityReference.cpp26 inline EntityReference::EntityReference(Document* document, const String& entityName) argument
27 : ContainerNode(document)
32 PassRefPtr<EntityReference> EntityReference::create(Document* document, const String& entityName) argument
34 return adoptRef(new EntityReference(document, entityName));
49 return create(document(), m_entityName);
H A DSelectorNodeList.cpp46 Document* document = rootNode->document(); local
48 bool strictParsing = !document->inCompatMode();
50 CSSStyleSelector::SelectorChecker selectorChecker(document, strictParsing);
52 if (strictParsing && rootNode->inDocument() && onlySelector && onlySelector->m_match == CSSSelector::Id && !document->containsMultipleElementsWithId(onlySelector->m_value)) {
53 Element* element = document->getElementById(onlySelector->m_value);
/external/webkit/WebCore/wml/
H A DWMLIntrinsicEvent.cpp35 static PassRefPtr<WMLTaskElement> createTaskElement(Document* document) argument
37 return static_pointer_cast<WMLTaskElement>(WMLElementFactory::createWMLElement(goTag, document, false));
40 WMLIntrinsicEvent::WMLIntrinsicEvent(Document* document, const String& targetURL) argument
41 : m_taskElement(createTaskElement(document))
/external/webkit/WebCore/css/
H A DCSSFontSelector.h47 static PassRefPtr<CSSFontSelector> create(Document* document) argument
49 return adoptRef(new CSSFontSelector(document));

Completed in 204 milliseconds

123456789