BackgroundHTMLParser 79 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::start(PassRefPtr<WeakReference<BackgroundHTMLParser> > reference, PassOwnPtr<Configuration> config) BackgroundHTMLParser 81 Source/core/html/parser/BackgroundHTMLParser.cpp new BackgroundHTMLParser(reference, config); BackgroundHTMLParser 85 Source/core/html/parser/BackgroundHTMLParser.cpp BackgroundHTMLParser::BackgroundHTMLParser(PassRefPtr<WeakReference<BackgroundHTMLParser> > reference, PassOwnPtr<Configuration> config) BackgroundHTMLParser 99 Source/core/html/parser/BackgroundHTMLParser.cpp BackgroundHTMLParser::~BackgroundHTMLParser() BackgroundHTMLParser 103 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::appendRawBytesFromParserThread(const char* data, int dataLength) BackgroundHTMLParser 109 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::appendRawBytesFromMainThread(PassOwnPtr<Vector<char> > buffer) BackgroundHTMLParser 115 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::appendDecodedBytes(const String& input) BackgroundHTMLParser 122 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::setDecoder(PassOwnPtr<TextResourceDecoder> decoder) BackgroundHTMLParser 128 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::flush() BackgroundHTMLParser 134 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::updateDocument(const String& decodedData) BackgroundHTMLParser 151 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::resumeFrom(PassOwnPtr<Checkpoint> checkpoint) BackgroundHTMLParser 162 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::startedChunkWithCheckpoint(HTMLInputCheckpoint inputCheckpoint) BackgroundHTMLParser 170 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::finish() BackgroundHTMLParser 176 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::stop() BackgroundHTMLParser 181 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::forcePlaintextForTextDocument() BackgroundHTMLParser 189 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::markEndOfFile() BackgroundHTMLParser 196 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::pumpTokenizer() BackgroundHTMLParser 237 Source/core/html/parser/BackgroundHTMLParser.cpp void BackgroundHTMLParser::sendTokensToMainThread() BackgroundHTMLParser 45 Source/core/html/parser/BackgroundHTMLParser.h class BackgroundHTMLParser { BackgroundHTMLParser 56 Source/core/html/parser/BackgroundHTMLParser.h static void start(PassRefPtr<WeakReference<BackgroundHTMLParser> >, PassOwnPtr<Configuration>); BackgroundHTMLParser 81 Source/core/html/parser/BackgroundHTMLParser.h BackgroundHTMLParser(PassRefPtr<WeakReference<BackgroundHTMLParser> >, PassOwnPtr<Configuration>); BackgroundHTMLParser 82 Source/core/html/parser/BackgroundHTMLParser.h ~BackgroundHTMLParser(); BackgroundHTMLParser 90 Source/core/html/parser/BackgroundHTMLParser.h WeakPtrFactory<BackgroundHTMLParser> m_weakFactory; BackgroundHTMLParser 79 Source/core/html/parser/HTMLDocumentParser.cpp explicit ParserDataReceiver(WeakPtr<BackgroundHTMLParser> backgroundParser) BackgroundHTMLParser 98 Source/core/html/parser/HTMLDocumentParser.cpp WeakPtr<BackgroundHTMLParser> m_backgroundParser; BackgroundHTMLParser 396 Source/core/html/parser/HTMLDocumentParser.cpp OwnPtr<BackgroundHTMLParser::Checkpoint> checkpoint = adoptPtr(new BackgroundHTMLParser::Checkpoint); BackgroundHTMLParser 407 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::resumeFrom, m_backgroundParser, checkpoint.release())); BackgroundHTMLParser 430 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::startedChunkWithCheckpoint, m_backgroundParser, chunk->inputCheckpoint)); BackgroundHTMLParser 527 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::forcePlaintextForTextDocument, m_backgroundParser)); BackgroundHTMLParser 701 Source/core/html/parser/HTMLDocumentParser.cpp RefPtr<WeakReference<BackgroundHTMLParser> > reference = WeakReference<BackgroundHTMLParser>::createUnbound(); BackgroundHTMLParser 702 Source/core/html/parser/HTMLDocumentParser.cpp m_backgroundParser = WeakPtr<BackgroundHTMLParser>(reference); BackgroundHTMLParser 706 Source/core/html/parser/HTMLDocumentParser.cpp OwnPtr<BackgroundHTMLParser::Configuration> config = adoptPtr(new BackgroundHTMLParser::Configuration); BackgroundHTMLParser 716 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::start, reference.release(), config.release())); BackgroundHTMLParser 725 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::stop, m_backgroundParser)); BackgroundHTMLParser 838 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::finish, m_backgroundParser)); BackgroundHTMLParser 1015 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::appendRawBytesFromMainThread, m_backgroundParser, buffer.release())); BackgroundHTMLParser 1029 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::flush, m_backgroundParser)); BackgroundHTMLParser 1040 Source/core/html/parser/HTMLDocumentParser.cpp HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::setDecoder, m_backgroundParser, takeDecoder())); BackgroundHTMLParser 54 Source/core/html/parser/HTMLDocumentParser.h class BackgroundHTMLParser; BackgroundHTMLParser 203 Source/core/html/parser/HTMLDocumentParser.h WeakPtr<BackgroundHTMLParser> m_backgroundParser;