• Home
  • Raw
  • Download

Lines Matching refs:m_state

60 	, m_state		(STATE_DATA)  in Tokenizer()
73 m_state = STATE_DATA; in clear()
121 m_state = STATE_DATA; in advance()
143 if (m_state == STATE_DATA) in advance()
149 m_state = STATE_TAG; in advance()
151 m_state = STATE_ENTITY; in advance()
166 DE_ASSERT(m_state == STATE_TAG || m_state == STATE_ENTITY); in advance()
196 m_state = STATE_VALUE; in advance()
198 m_state = STATE_IDENTIFIER; in advance()
200 m_state = STATE_TAG; in advance()
202 DE_ASSERT(m_state == STATE_ENTITY); in advance()
218 else if (m_state == STATE_IDENTIFIER) in advance()
226 else if (m_state == STATE_VALUE) in advance()
239 else if (m_state == STATE_COMMENT) in advance()
263 else if (m_state == STATE_ENTITY) in advance()
282 DE_ASSERT(m_state == STATE_TAG && m_curTokenLen == 1); in advance()
303 m_state = STATE_COMMENT; in advance()
348 , m_state (STATE_DATA) in Parser()
365 m_state = STATE_DATA; in clear()
387 if (m_state == STATE_YIELD_EMPTY_ELEMENT_END) in advance()
391 m_state = STATE_DATA; in advance()
418 switch (m_state) in advance()
421 m_state = STATE_DATA; in advance()
436 m_state = STATE_START_TAG_OPEN; in advance()
440 m_state = STATE_END_TAG_OPEN; in advance()
444 m_state = STATE_IN_PROCESSING_INSTRUCTION; in advance()
448 m_state = STATE_ENTITY; in advance()
460 m_state = STATE_DATA; in advance()
470 m_state = STATE_ATTRIBUTE_LIST; in advance()
477 m_state = STATE_EXPECTING_END_TAG_CLOSE; in advance()
483 m_state = STATE_DATA; in advance()
491 m_state = STATE_EXPECTING_ATTRIBUTE_EQ; in advance()
495 m_state = STATE_YIELD_EMPTY_ELEMENT_END; in advance()
501 m_state = STATE_DATA; in advance()
512 m_state = STATE_EXPECTING_ATTRIBUTE_VALUE; in advance()
522 m_state = STATE_ATTRIBUTE_LIST; in advance()
559 DE_ASSERT(m_state == STATE_ENTITY && m_tokenizer.getToken() == TOKEN_ENTITY); in parseEntityValue()