HTMLParserThread   93 Source/core/Init.cpp     HTMLParserThread::init();
HTMLParserThread   99 Source/core/Init.cpp     HTMLParserThread::shutdown();
HTMLParserThread   94 Source/core/html/parser/HTMLDocumentParser.cpp         return &HTMLParserThread::shared()->platformThread();
HTMLParserThread  407 Source/core/html/parser/HTMLDocumentParser.cpp     HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::resumeFrom, m_backgroundParser, checkpoint.release()));
HTMLParserThread  430 Source/core/html/parser/HTMLDocumentParser.cpp     HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::startedChunkWithCheckpoint, m_backgroundParser, chunk->inputCheckpoint));
HTMLParserThread  527 Source/core/html/parser/HTMLDocumentParser.cpp         HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::forcePlaintextForTextDocument, m_backgroundParser));
HTMLParserThread  716 Source/core/html/parser/HTMLDocumentParser.cpp     HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::start, reference.release(), config.release()));
HTMLParserThread  725 Source/core/html/parser/HTMLDocumentParser.cpp     HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::stop, m_backgroundParser));
HTMLParserThread  838 Source/core/html/parser/HTMLDocumentParser.cpp         HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::finish, m_backgroundParser));
HTMLParserThread 1015 Source/core/html/parser/HTMLDocumentParser.cpp         HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::appendRawBytesFromMainThread, m_backgroundParser, buffer.release()));
HTMLParserThread 1029 Source/core/html/parser/HTMLDocumentParser.cpp         HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::flush, m_backgroundParser));
HTMLParserThread 1040 Source/core/html/parser/HTMLDocumentParser.cpp         HTMLParserThread::shared()->postTask(bind(&BackgroundHTMLParser::setDecoder, m_backgroundParser, takeDecoder()));
HTMLParserThread   41 Source/core/html/parser/HTMLParserThread.cpp static HTMLParserThread* s_sharedThread = 0;
HTMLParserThread   43 Source/core/html/parser/HTMLParserThread.cpp HTMLParserThread::HTMLParserThread()
HTMLParserThread   47 Source/core/html/parser/HTMLParserThread.cpp HTMLParserThread::~HTMLParserThread()
HTMLParserThread   51 Source/core/html/parser/HTMLParserThread.cpp void HTMLParserThread::init()
HTMLParserThread   54 Source/core/html/parser/HTMLParserThread.cpp     s_sharedThread = new HTMLParserThread;
HTMLParserThread   57 Source/core/html/parser/HTMLParserThread.cpp void HTMLParserThread::setupHTMLParserThread()
HTMLParserThread   66 Source/core/html/parser/HTMLParserThread.cpp void HTMLParserThread::shutdown()
HTMLParserThread   72 Source/core/html/parser/HTMLParserThread.cpp         s_sharedThread->postTask(WTF::bind(&HTMLParserThread::cleanupHTMLParserThread, s_sharedThread, &taskSynchronizer));
HTMLParserThread   79 Source/core/html/parser/HTMLParserThread.cpp void HTMLParserThread::cleanupHTMLParserThread(TaskSynchronizer* taskSynchronizer)
HTMLParserThread   89 Source/core/html/parser/HTMLParserThread.cpp HTMLParserThread* HTMLParserThread::shared()
HTMLParserThread   94 Source/core/html/parser/HTMLParserThread.cpp blink::WebThread& HTMLParserThread::platformThread()
HTMLParserThread   98 Source/core/html/parser/HTMLParserThread.cpp         postTask(WTF::bind(&HTMLParserThread::setupHTMLParserThread, this));
HTMLParserThread  103 Source/core/html/parser/HTMLParserThread.cpp void HTMLParserThread::postTask(const Closure& closure)
HTMLParserThread   44 Source/core/html/parser/HTMLParserThread.h class HTMLParserThread {
HTMLParserThread   50 Source/core/html/parser/HTMLParserThread.h     static HTMLParserThread* shared();
HTMLParserThread   56 Source/core/html/parser/HTMLParserThread.h     HTMLParserThread();
HTMLParserThread   57 Source/core/html/parser/HTMLParserThread.h     ~HTMLParserThread();
HTMLParserThread   14 Source/core/html/parser/HTMLParserThreadTest.cpp TEST(HTMLParserThread, Init)
HTMLParserThread   17 Source/core/html/parser/HTMLParserThreadTest.cpp     ASSERT_TRUE(HTMLParserThread::shared());
HTMLParserThread   18 Source/core/html/parser/HTMLParserThreadTest.cpp     HTMLParserThread::shutdown();
HTMLParserThread   21 Source/core/html/parser/HTMLParserThreadTest.cpp     ASSERT_FALSE(HTMLParserThread::shared());
HTMLParserThread   22 Source/core/html/parser/HTMLParserThreadTest.cpp     HTMLParserThread::init();
HTMLParserThread   23 Source/core/html/parser/HTMLParserThreadTest.cpp     ASSERT_TRUE(HTMLParserThread::shared());