Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dcommand_handler.rs113 fn wrap_help_text(text: &str, max: usize, indent: usize) -> String { in wrap_help_text() function
494 wrap_help_text("Help Menu", MAX_MENU_CHAR_WIDTH, 2), in cmd_help()
504 wrap_help_text(&key, MAX_MENU_CHAR_WIDTH, 4), in cmd_help()
505 wrap_help_text(&val.description, MAX_MENU_CHAR_WIDTH, 8), in cmd_help()
2375 assert_eq!(format!("|{}|", text), wrap_help_text(text, 4, 0)); in test_wrap_help_text()
2376 assert_eq!(format!("|{}|", text), wrap_help_text(text, 5, 0)); in test_wrap_help_text()
2377 assert_eq!(format!("|{}{}|", text, " "), wrap_help_text(text, 6, 0)); in test_wrap_help_text()
2378 assert_eq!(format!("|{}{}|", text, " ".repeat(2)), wrap_help_text(text, 7, 0)); in test_wrap_help_text()
2381 wrap_help_text(text, 100, 0) in test_wrap_help_text()
2383 assert_eq!(format!("|{}{}|", " ", text), wrap_help_text(text, 4, 1)); in test_wrap_help_text()
[all …]