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

  /external/webkit/WebCore/html/
HTMLTokenizer.cpp 337 ASSERT(state.inTextArea() || state.inTitle() || state.inIFrame() || !state.hasEntityState());
339 ASSERT(state.inXmp() + state.inTextArea() + state.inTitle() + state.inStyle() + state.inScript() + state.inIFrame() == 1);
375 } else if (state.inTitle()) {
415 if (!m_scriptCodeResync && (state.inTextArea() || state.inTitle() || state.inIFrame()) && !src.escaped() && ch == '&') {
662 if (!(state.inTitle() || state.inScript() || state.inXmp() || state.inTextArea() || state.inStyle() || state.inIFrame())) {
    [all...]
HTMLTokenizer.h 269 bool inTitle() const { return testBit(InTitle); }
270 void setInTitle(bool v) { setBit(InTitle, 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); }
315 InTitle = 1 << 11,

Completed in 44 milliseconds