Home
last modified time | relevance | path

Searched refs:DoctypeSubstate (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/xml-rs/src/reader/parser/
Dinside_doctype.rs5 use super::{DoctypeSubstate, PullParser, QuoteToken, Result, State};
8 pub fn inside_doctype(&mut self, t: Token, substate: DoctypeSubstate) -> Option<Result> { in inside_doctype()
10 DoctypeSubstate::Outside => match t { in inside_doctype()
14 self.into_state_continue(State::InsideDoctype(DoctypeSubstate::InsideName)) in inside_doctype()
19 … self.into_state_continue(State::InsideDoctype(DoctypeSubstate::PEReferenceInDtd)) in inside_doctype()
22 self.into_state_continue(State::InsideDoctype(DoctypeSubstate::Comment)) in inside_doctype()
27 self.into_state_continue(State::InsideDoctype(DoctypeSubstate::String)) in inside_doctype()
33 DoctypeSubstate::String => match t { in inside_doctype()
38 self.into_state_continue(State::InsideDoctype(DoctypeSubstate::Outside)) in inside_doctype()
42 DoctypeSubstate::Comment => match t { in inside_doctype()
[all …]
Doutside_tag.rs7 ClosingTagSubstate, DoctypeSubstate, Encountered, OpeningTagSubstate,
139 self.into_state(State::InsideDoctype(DoctypeSubstate::Outside), next_event) in outside_tag()
194 self.into_state(State::InsideDoctype(DoctypeSubstate::Outside), next_event) in document_start()
/aosp_15_r20/external/rust/android-crates-io/crates/xml-rs/src/reader/
Dparser.rs188 InsideDoctype(DoctypeSubstate),
194 pub enum DoctypeSubstate { enum
797 assert_eq!(1, std::mem::size_of::<super::DoctypeSubstate>()); in state_size()