Searched refs:move_to_with_unread (Results 1 – 1 of 1) sorted by relevance
/external/rust/crates/xml-rs/src/reader/ |
D | lexer.rs | 394 fn move_to_with_unread(&mut self, st: State, cs: &[char], token: Token) -> Result { in move_to_with_unread() method 433 …_ if is_whitespace_char(c) => self.move_to_with_unread(State::Normal, &[c], Token::OpeningTagStart… in tag_opened() 434 …_ if is_name_char(c) => self.move_to_with_unread(State::Normal, &[c], Token::OpeningTagStart… in tag_opened() 497 _ => self.move_to_with_unread(State::Normal, &[c], Token::Character('?')), in processing_instruction_closing() 505 _ => self.move_to_with_unread(State::Normal, &[c], Token::Character('/')), in empty_element_closing() 514 _ => self.move_to_with_unread(State::Normal, &[c], Token::Character('-')) in comment_closing() 524 … _ => self.move_to_with_unread(State::Normal, &[c], Token::Chunk("--")) in comment_closing() 534 _ => self.move_to_with_unread(State::Normal, &[c], Token::Character(']')) in cdata_closing() 538 _ => self.move_to_with_unread(State::Normal, &[']', c], Token::Character(']')) in cdata_closing()
|