Home | History | Annotate | Download | only in parser

Lines Matching refs:m_doctypeData

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();
215 OwnPtr<DoctypeData> m_doctypeData;