Searched defs:document (Results 76 - 100 of 496) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/parser/
H A DTextDocumentParser.cpp37 TextDocumentParser::TextDocumentParser(HTMLDocument* document) argument
38 : HTMLDocumentParser(document, false)
/external/webkit/Source/WebCore/loader/
H A DSinkDocument.cpp35 static PassRefPtr<SinkDocumentParser> create(SinkDocument* document) argument
37 return adoptRef(new SinkDocumentParser(document));
41 SinkDocumentParser(SinkDocument* document) argument
42 : RawDataDocumentParser(document)
/external/webkit/Source/WebCore/mathml/
H A DMathMLElement.cpp41 MathMLElement::MathMLElement(const QualifiedName& tagName, Document* document) argument
42 : StyledElement(tagName, document, CreateStyledElement)
46 PassRefPtr<MathMLElement> MathMLElement::create(const QualifiedName& tagName, Document* document) argument
48 return adoptRef(new MathMLElement(tagName, document));
H A DMathMLMathElement.cpp37 inline MathMLMathElement::MathMLMathElement(const QualifiedName& tagName, Document* document) argument
38 : MathMLInlineContainerElement(tagName, document)
42 PassRefPtr<MathMLMathElement> MathMLMathElement::create(const QualifiedName& tagName, Document* document) argument
44 return adoptRef(new MathMLMathElement(tagName, document));
50 document()->setUsesSiblingRules(true);
H A DMathMLTextElement.cpp40 inline MathMLTextElement::MathMLTextElement(const QualifiedName& tagName, Document* document) argument
41 : MathMLElement(tagName, document)
45 PassRefPtr<MathMLTextElement> MathMLTextElement::create(const QualifiedName& tagName, Document* document) argument
47 return adoptRef(new MathMLTextElement(tagName, document));
/external/webkit/Source/WebCore/svg/
H A DSVGFontFaceFormatElement.cpp32 inline SVGFontFaceFormatElement::SVGFontFaceFormatElement(const QualifiedName& tagName, Document* document) argument
33 : SVGElement(tagName, document)
37 PassRefPtr<SVGFontFaceFormatElement> SVGFontFaceFormatElement::create(const QualifiedName& tagName, Document* document) argument
39 return adoptRef(new SVGFontFaceFormatElement(tagName, document));
H A DSVGPolygonElement.cpp30 inline SVGPolygonElement::SVGPolygonElement(const QualifiedName& tagName, Document* document) argument
31 : SVGPolyElement(tagName, document)
35 PassRefPtr<SVGPolygonElement> SVGPolygonElement::create(const QualifiedName& tagName, Document* document) argument
37 return adoptRef(new SVGPolygonElement(tagName, document));
H A DSVGPolylineElement.cpp30 inline SVGPolylineElement::SVGPolylineElement(const QualifiedName& tagName, Document* document) argument
31 : SVGPolyElement(tagName, document)
35 PassRefPtr<SVGPolylineElement> SVGPolylineElement::create(const QualifiedName& tagName, Document* document) argument
37 return adoptRef(new SVGPolylineElement(tagName, document));
H A DSVGStyledLocatableElement.cpp32 SVGStyledLocatableElement::SVGStyledLocatableElement(const QualifiedName& tagName, Document* document) argument
33 : SVGStyledElement(tagName, document)
/external/webkit/Source/WebCore/wml/
H A DWMLInsertedLegendElement.cpp33 PassRefPtr<WMLInsertedLegendElement> WMLInsertedLegendElement::create(const QualifiedName& tagName, Document* document) argument
35 return adoptRef(new WMLInsertedLegendElement(tagName, document));
H A DWMLIntrinsicEvent.h37 static PassRefPtr<WMLIntrinsicEvent> create(Document* document, const String& targetURL) argument
39 return adoptRef(new WMLIntrinsicEvent(document, targetURL));
H A DWMLPrevElement.cpp40 PassRefPtr<WMLPrevElement> WMLPrevElement::create(const QualifiedName& tagName, Document* document) argument
42 return adoptRef(new WMLPrevElement(tagName, document));
51 ASSERT(document()->isWMLDocument());
52 WMLDocument* document = static_cast<WMLDocument*>(this->document()); local
54 WMLPageState* pageState = wmlPageStateForDocument(document);
58 WMLCardElement* card = document->activeCard();
H A DWMLRefreshElement.cpp40 PassRefPtr<WMLRefreshElement> WMLRefreshElement::create(const QualifiedName& tagName, Document* document) argument
42 return adoptRef(new WMLRefreshElement(tagName, document));
51 ASSERT(document()->isWMLDocument());
52 WMLDocument* document = static_cast<WMLDocument*>(this->document()); local
54 WMLPageState* pageState = wmlPageStateForDocument(document);
58 WMLCardElement* card = document->activeCard();
73 if (Frame* frame = document->frame()) {
/external/webkit/Source/WebCore/xml/
H A DXMLTreeViewer.cpp49 XMLTreeViewer::XMLTreeViewer(Document* document) argument
50 : m_document(document)
66 return false; // This document is not in a top frame
73 // FIXME: Temporary hack to ensure that we still display some of the document (and don't crash)
81 String noStyleMessage("This XML file does not appear to have any style information associated with it. The document tree is shown below.");
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityScrollbar.cpp59 Document* AccessibilityScrollbar::document() const function in class:WebCore::AccessibilityScrollbar
64 return parent->document();
/external/webkit/Source/WebCore/bindings/js/
H A DJSAudioConstructor.cpp54 Document* document = jsConstructor->document(); local
55 if (!document)
56 return throwVMError(exec, createReferenceError(exec, "Audio constructor associated document is unavailable"));
58 // Calling toJS on the document causes the JS document wrapper to be
61 toJS(exec, jsConstructor->globalObject(), document);
70 HTMLAudioElement::createForJSConstructor(document, src))));
H A DJSImageConstructor.cpp47 Document* document = jsConstructor->document(); local
48 if (!document)
49 return throwVMError(exec, createReferenceError(exec, "Image constructor associated document is unavailable"));
51 // Calling toJS on the document causes the JS document wrapper to be
54 toJS(exec, jsConstructor->globalObject(), document);
69 HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight))));
H A DJSOptionConstructor.cpp49 Document* document = jsConstructor->document(); local
50 if (!document)
51 return throwVMError(exec, createReferenceError(exec, "Option constructor associated document is unavailable"));
64 RefPtr<HTMLOptionElement> element = HTMLOptionElement::createForJSConstructor(document, data, value, defaultSelected, selected, ec);
H A DScriptEventListener.cpp63 if (Frame* frame = node->document()->frame()) {
69 sourceURL = node->document()->url().string();
92 sourceURL = frame->document()->url().string();
94 return JSLazyEventListener::create(attr->localName().string(), eventParameterName(frame->document()->isSVGDocument()), attr->value(), 0, sourceURL, lineNumber, wrapper, mainThreadNormalWorld());
97 String eventListenerHandlerBody(Document* document, EventListener* eventListener) argument
102 JSC::JSObject* jsFunction = jsListener->jsFunction(document);
105 return ustringToString(jsFunction->toString(scriptStateFromNode(jsListener->isolatedWorld(), document)));
/external/webkit/Source/WebCore/css/
H A DCSSFontSelector.h47 static PassRefPtr<CSSFontSelector> create(Document* document) argument
49 return adoptRef(new CSSFontSelector(document));
H A DMediaQueryMatcher.h43 static PassRefPtr<MediaQueryMatcher> create(Document* document) { return adoptRef(new MediaQueryMatcher(document)); } argument
H A DStyleSheetList.h54 Document* document() function in class:WebCore::StyleSheetList
/external/webkit/Source/WebCore/dom/
H A DCDATASection.cpp29 inline CDATASection::CDATASection(Document* document, const String& data) argument
30 : Text(document, data)
34 PassRefPtr<CDATASection> CDATASection::create(Document* document, const String& data) argument
36 return adoptRef(new CDATASection(document, data));
51 return create(document(), data());
61 return create(document(), data);
H A DCharacterData.h50 CharacterData(Document* document, const String& text, ConstructionType type) argument
51 : Node(document, type)
H A DDocumentFragment.cpp34 DocumentFragment::DocumentFragment(Document* document) argument
35 : ContainerNode(document)
37 ASSERT(document);
40 PassRefPtr<DocumentFragment> DocumentFragment::create(Document* document) argument
42 return adoptRef(new DocumentFragment(document));
47 return "#document-fragment";
72 RefPtr<DocumentFragment> clone = create(document());

Completed in 424 milliseconds

1234567891011>>