HomeSort by relevance Sort by last modified time
    Searched refs:DocumentWriter (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/page/
PagePopupClient.h 34 #include "core/loader/DocumentWriter.h"
41 class DocumentWriter;
48 // Provide an HTML source through the specified DocumentWriter. The HTML
53 virtual void writeDocument(DocumentWriter&) = 0;
74 static void addString(const String&, DocumentWriter&);
75 static void addJavaScriptString(const String&, DocumentWriter&);
76 static void addProperty(const char* name, const String& value, DocumentWriter&);
77 static void addProperty(const char* name, int value, DocumentWriter&);
78 static void addProperty(const char* name, unsigned value, DocumentWriter&);
79 static void addProperty(const char* name, bool value, DocumentWriter&)
    [all...]
PagePopupClient.cpp 40 void PagePopupClient::addJavaScriptString(const String& str, DocumentWriter& writer)
54 void PagePopupClient::addProperty(const char* name, const String& value, DocumentWriter& writer)
62 void PagePopupClient::addProperty(const char* name, int value, DocumentWriter& writer)
70 void PagePopupClient::addProperty(const char* name, unsigned value, DocumentWriter& writer)
78 void PagePopupClient::addProperty(const char* name, bool value, DocumentWriter& writer)
89 void PagePopupClient::addProperty(const char* name, const Vector<String>& values, DocumentWriter& writer)
101 void PagePopupClient::addProperty(const char* name, const IntRect& rect, DocumentWriter& writer)
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentWriter.cpp 30 #include "core/loader/DocumentWriter.h"
47 PassRefPtr<DocumentWriter> DocumentWriter::create(Document* document, const AtomicString& mimeType, const AtomicString& encoding, bool encodingUserChoosen)
49 return adoptRef(new DocumentWriter(document, mimeType, encoding, encodingUserChoosen));
52 DocumentWriter::DocumentWriter(Document* document, const AtomicString& mimeType, const AtomicString& encoding, bool encodingUserChoosen)
66 DocumentWriter::~DocumentWriter()
70 void DocumentWriter::appendReplacingData(const String& source)
85 void DocumentWriter::addData(const char* bytes, size_t length
    [all...]
DocumentWriter.h 45 class DocumentWriter : public RefCounted<DocumentWriter> {
46 WTF_MAKE_NONCOPYABLE(DocumentWriter);
48 static PassRefPtr<DocumentWriter> create(Document*, const AtomicString& mimeType = emptyAtom, const AtomicString& encoding = emptyAtom, bool encodingUserChoosen = false);
50 ~DocumentWriter();
72 DocumentWriter(Document*, const AtomicString& mimeType, const AtomicString& encoding, bool encodingUserChoosen);
DocumentLoader.h 37 #include "core/loader/DocumentWriter.h"
84 DocumentWriter* beginWriting(const AtomicString& mimeType, const AtomicString& encoding, const KURL& = KURL());
85 void endWriting(DocumentWriter*);
168 static PassRefPtr<DocumentWriter> createWriterFor(Frame*, const Document* ownerDocument, const KURL&, const AtomicString& mimeType, const AtomicString& encoding, bool userChosen, bool dispatch);
216 RefPtr<DocumentWriter> m_writer;
DocumentLoader.cpp 312 // DocumentWriter::begin() gets called and creates the Document.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ColorChooserPopupUIController.h 54 virtual void writeDocument(WebCore::DocumentWriter&) OVERRIDE;
DateTimeChooserImpl.h 59 virtual void writeDocument(WebCore::DocumentWriter&) OVERRIDE;
WebHelperPluginImpl.cpp 58 static inline void addString(const String& str, DocumentWriter* writer)
70 DocumentWriter* writer = loader->beginWriting("text/html", "UTF-8", url);
ColorChooserPopupUIController.cpp 83 void ColorChooserPopupUIController::writeDocument(DocumentWriter& writer)
DateTimeChooserImpl.cpp 102 void DateTimeChooserImpl::writeDocument(WebCore::DocumentWriter& writer)
WebPagePopupImpl.cpp 210 DocumentWriter* writer = frame->loader().activeDocumentLoader()->beginWriting("text/html", "UTF-8");
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImportLoader.h 40 class DocumentWriter;
46 // to feed fetched bytes to the DocumentWriter of the imported document.
96 RefPtr<DocumentWriter> m_writer;
HTMLImportLoader.cpp 41 #include "core/loader/DocumentWriter.h"
83 RefPtr<DocumentWriter> protectingWriter(m_writer);
105 m_writer = DocumentWriter::create(m_importedDocument.get(), response.mimeType(), response.textEncodingName());
128 if (RefPtr<DocumentWriter> writer = m_writer.release())
132 // Since DocumentWriter::end() can let setState() reenter, we shouldn't refer to m_state here.
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentParser.h 34 class DocumentWriter;
51 // The below functions are used by DocumentWriter (the loader).
62 // FIXME: append() should be private, but DocumentWriter::replaceDocument uses it for now.
  /external/chromium_org/third_party/WebKit/Source/core/testing/
MockPagePopupDriver.cpp 34 #include "core/loader/DocumentWriter.h"
73 DocumentWriter* writer = contentFrame->loader().activeDocumentLoader()->beginWriting("text/html", "UTF-8");
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 403 DocumentWriter* writer = loader.activeDocumentLoader()->beginWriting("image/svg+xml", "UTF-8");
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 620 DocumentWriter* writer = loader.activeDocumentLoader()->beginWriting("text/html", "UTF-8");
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help_3.5.0.v20100524.jar 
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 375 third_party/WebKit/Source/core/loader/DocumentWriter.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 375 third_party/WebKit/Source/core/loader/DocumentWriter.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 375 third_party/WebKit/Source/core/loader/DocumentWriter.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 375 third_party/WebKit/Source/core/loader/DocumentWriter.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 375 third_party/WebKit/Source/core/loader/DocumentWriter.cpp \
    [all...]
webcore_remaining.target.linux-x86.mk 375 third_party/WebKit/Source/core/loader/DocumentWriter.cpp \
    [all...]

Completed in 264 milliseconds

1 2