Lines Matching refs:ShortWeekdayName
356 &ShortWeekdayName => { in parse_internal()
629 check!("thu", [fix!(ShortWeekdayName)]; weekday: Weekday::Thu); in test_parse()
630 check!("Thu", [fix!(ShortWeekdayName)]; weekday: Weekday::Thu); in test_parse()
631 check!("THU", [fix!(ShortWeekdayName)]; weekday: Weekday::Thu); in test_parse()
632 check!("tHu", [fix!(ShortWeekdayName)]; weekday: Weekday::Thu); in test_parse()
633 check!("Thursday", [fix!(ShortWeekdayName)]; TOO_LONG); // `Thu` is parsed in test_parse()
634 check!("T", [fix!(ShortWeekdayName)]; TOO_SHORT); in test_parse()
635 check!("The", [fix!(ShortWeekdayName)]; INVALID); in test_parse()
636 check!("Nop", [fix!(ShortWeekdayName)]; INVALID); in test_parse()
771 [fix!(ShortWeekdayName), lit!(","), sp!(" "), num!(Day), sp!(" "), in test_parse()
777 [fix!(ShortWeekdayName), sp!(" "), fix!(ShortMonthName), sp!(" "), in test_parse()