HomeSort by relevance Sort by last modified time
    Searched refs:m_doctypeData (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLToken.h 164 return m_doctypeData->m_forceQuirks;
170 m_doctypeData->m_forceQuirks = true;
177 m_doctypeData = adoptPtr(new DoctypeData);
192 return m_doctypeData->m_publicIdentifier;
199 return m_doctypeData->m_systemIdentifier;
205 m_doctypeData->m_hasPublicIdentifier = true;
206 m_doctypeData->m_publicIdentifier.clear();
212 m_doctypeData->m_hasSystemIdentifier = true;
213 m_doctypeData->m_systemIdentifier.clear();
220 ASSERT(m_doctypeData->m_hasPublicIdentifier)
    [all...]
AtomicHTMLToken.h 44 return m_doctypeData->m_forceQuirks;
101 return m_doctypeData->m_publicIdentifier;
108 return m_doctypeData->m_systemIdentifier;
120 m_doctypeData = token.releaseDoctypeData();
150 m_doctypeData = adoptPtr(new DoctypeData());
151 m_doctypeData->m_hasPublicIdentifier = true;
152 append(m_doctypeData->m_publicIdentifier, token.publicIdentifier().asString());
153 m_doctypeData->m_hasSystemIdentifier = true;
154 append(m_doctypeData->m_systemIdentifier, token.systemIdentifier());
155 m_doctypeData->m_forceQuirks = token.doctypeForcesQuirks()
    [all...]

Completed in 253 milliseconds