Searched refs:move_to_with_unread (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/xml-rs/src/reader/ |
D | lexer.rs | 358 self.move_to_with_unread(State::Normal, &[']'], Token::Character(']')) in end_of_stream() 416 fn move_to_with_unread(&mut self, st: State, cs: &[char], token: Token) -> Result { in move_to_with_unread() method 508 …_ if is_whitespace_char(c) => self.move_to_with_unread(self.normal_state, &[c], Token::OpeningTagS… in tag_opened() 509 …_ if is_name_char(c) => self.move_to_with_unread(self.normal_state, &[c], Token::OpeningTagS… in tag_opened() 521 … self.move_to_with_unread(State::InsideMarkupDeclaration, &[c], Token::MarkupDeclarationStart) in comment_or_cdata_or_doctype_started() 599 … _ => self.move_to_with_unread(State::InsideProcessingInstruction, &[c], Token::Character('?')), in processing_instruction_closing() 607 _ => self.move_to_with_unread(self.normal_state, &[c], Token::Character('/')), in empty_element_closing() 616 _ => self.move_to_with_unread(State::InsideComment, &[c], Token::Character('-')), in comment_closing() 631 _ => self.move_to_with_unread(State::InsideCdata, &[c], Token::Character(']')), in cdata_closing() 635 _ => self.move_to_with_unread(State::InsideCdata, &[']', c], Token::Character(']')), in cdata_closing() [all …]
|