Searched refs:LongWeekdayName (Results 1 – 4 of 4) sorted by relevance
/external/rust/crates/chrono/src/format/ |
D | parse.rs | 361 &LongWeekdayName => { in parse_internal() 637 check!("Thu", [fix!(LongWeekdayName)]; weekday: Weekday::Thu); in test_parse() 638 check!("Thur", [fix!(LongWeekdayName)]; TOO_LONG); // `Thu` is parsed in test_parse() 639 check!("Thurs", [fix!(LongWeekdayName)]; TOO_LONG); // ditto in test_parse() 640 check!("Thursday", [fix!(LongWeekdayName)]; weekday: Weekday::Thu); in test_parse() 641 check!("Thursdays", [fix!(LongWeekdayName)]; TOO_LONG); in test_parse() 642 check!("Thursdays", [fix!(LongWeekdayName), lit!("s")]; weekday: Weekday::Thu); in test_parse() 643 check!("Thus", [fix!(LongWeekdayName), lit!("s")]; weekday: Weekday::Thu); in test_parse() 644 check!("Thursday", [fix!(LongWeekdayName), lit!("rsday")]; TOO_SHORT); // do not backtrack in test_parse()
|
D | mod.rs | 182 LongWeekdayName, enumerator 563 LongWeekdayName => date.map(|d| { in format_inner()
|
D | strftime.rs | 350 'A' => fix!(LongWeekdayName), in next()
|
/external/rust/crates/chrono/ |
D | CHANGELOG.md | 492 - `Fixed::LongWeekdayName` was unable to recognize `"sunday"` (whoops). (#66)
|