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 168 return m_doctypeData->m_forceQuirks;
174 m_doctypeData->m_forceQuirks = true;
181 m_doctypeData = adoptPtr(new DoctypeData);
196 return m_doctypeData->m_publicIdentifier;
203 return m_doctypeData->m_systemIdentifier;
209 m_doctypeData->m_hasPublicIdentifier = true;
210 m_doctypeData->m_publicIdentifier.clear();
216 m_doctypeData->m_hasSystemIdentifier = true;
217 m_doctypeData->m_systemIdentifier.clear();
224 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 45 milliseconds