Home
last modified time | relevance | path

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

/external/rust/android-crates-io/crates/zerotrie/src/
Doptions.rs31 pub(crate) enum AsciiMode { enum
38 impl AsciiMode { implementation
89 pub ascii_mode: AsciiMode,
113 ascii_mode: AsciiMode::AsciiOnly,
129 ascii_mode: AsciiMode::AsciiOnly,
139 ascii_mode: AsciiMode::BinarySpans,
149 ascii_mode: AsciiMode::BinarySpans,
Dreader.rs312 if matches!(T::OPTIONS.ascii_mode, AsciiMode::BinarySpans) { in get_parameterized()
343 if matches!(T::OPTIONS.ascii_mode, AsciiMode::BinarySpans) in get_parameterized()
423 matches!(T::OPTIONS.ascii_mode, AsciiMode::AsciiOnly), in step_parameterized()
525 matches!(T::OPTIONS.ascii_mode, AsciiMode::AsciiOnly), in probe_parameterized()
/external/rust/android-crates-io/crates/zerotrie/src/builder/nonconst/
Dbuilder.rs39 } else if matches!(self.options.ascii_mode, AsciiMode::BinarySpans) { in prepend_ascii()