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

  /external/webkit/WebCore/html/
HTMLTokenizer.cpp 339 ASSERT(state.inXmp() + state.inTextArea() + state.inTitle() + state.inStyle() + state.inScript() + state.inIFrame() == 1);
352 !state.inXmp() && ch == '-' && m_scriptCodeSize >= 3 && !src.escaped() &&
378 } else if (state.inXmp()) {
662 if (!(state.inTitle() || state.inScript() || state.inXmp() || state.inTextArea() || state.inStyle() || state.inIFrame())) {
    [all...]
HTMLTokenizer.h 267 bool inXmp() const { return testBit(InXmp); }
268 void setInXmp(bool v) { setBit(InXmp, v); }
300 bool inAnyNonHTMLText() const { return m_bits & (InScript | InStyle | InXmp | InTextArea | InTitle | InIFrame); }
304 bool needsSpecialWriteHandling() const { return m_bits & (InScript | InStyle | InXmp | InTextArea | InTitle | InIFrame | TagMask | EntityMask | InPlainText | InComment | InDoctype | InServer | InProcessingInstruction | StartTag); }
314 InXmp = 1 << 10,

Completed in 110 milliseconds