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 167 return m_doctypeData->m_forceQuirks;
173 m_doctypeData->m_forceQuirks = true;
180 m_doctypeData = adoptPtr(new DoctypeData);
195 return m_doctypeData->m_publicIdentifier;
202 return m_doctypeData->m_systemIdentifier;
208 m_doctypeData->m_hasPublicIdentifier = true;
209 m_doctypeData->m_publicIdentifier.clear();
215 m_doctypeData->m_hasSystemIdentifier = true;
216 m_doctypeData->m_systemIdentifier.clear();
223 ASSERT(m_doctypeData->m_hasPublicIdentifier)
    [all...]
AtomicHTMLToken.h 45 return m_doctypeData->m_forceQuirks;
102 return m_doctypeData->m_publicIdentifier;
109 return m_doctypeData->m_systemIdentifier;
121 m_doctypeData = token.releaseDoctypeData();
154 m_doctypeData = adoptPtr(new DoctypeData());
155 m_doctypeData->m_hasPublicIdentifier = true;
156 append(m_doctypeData->m_publicIdentifier, token.publicIdentifier());
157 m_doctypeData->m_hasSystemIdentifier = true;
158 append(m_doctypeData->m_systemIdentifier, token.systemIdentifier());
159 m_doctypeData->m_forceQuirks = token.doctypeForcesQuirks()
    [all...]

Completed in 48 milliseconds