Home
last modified time | relevance | path

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

/external/rust/crates/textwrap/src/
Dlib.rs202 pub wrap_algorithm: core::WrapAlgorithm,
413 wrap_algorithm: core::WrapAlgorithm::OptimalFit, in with_splitter()
415 wrap_algorithm: core::WrapAlgorithm::FirstFit, in with_splitter()
515 pub fn wrap_algorithm(self, wrap_algorithm: core::WrapAlgorithm) -> Self { in wrap_algorithm()
916 core::WrapAlgorithm::OptimalFit => core::wrap_optimal_fit(&broken_words, line_lengths), in wrap()
917 core::WrapAlgorithm::FirstFit => core::wrap_first_fit(&broken_words, line_lengths), in wrap()
1200 Options::new(10).wrap_algorithm(core::WrapAlgorithm::FirstFit) in to_be_or_not()
1561 Options::new(7).wrap_algorithm(core::WrapAlgorithm::FirstFit) in preserve_line_breaks()
1568 Options::new(5).wrap_algorithm(core::WrapAlgorithm::FirstFit) in preserve_line_breaks()
Dcore.rs474 pub enum WrapAlgorithm { enum
/external/rust/crates/textwrap/
DCHANGELOG.md120 Use the new `textwrap::core::WrapAlgorithm` enum to select between the