Searched refs:from_tz_string (Results 1 – 3 of 3) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/offset/local/tz_info/ |
D | rule.rs | 24 pub(super) fn from_tz_string( in from_tz_string() method 783 let transition_rule = TransitionRule::from_tz_string(b"<-03>+3<+03>-3,J1,J365", false)?; in test_quoted() 802 let transition_rule = TransitionRule::from_tz_string(tz_string, false)?; in test_full() 821 let transition_rule = TransitionRule::from_tz_string(tz_string, false)?; in test_negative_dst() 840 assert!(TransitionRule::from_tz_string(tz_string, false).is_err()); in test_negative_hour() 843 TransitionRule::from_tz_string(tz_string, true)?, in test_negative_hour() 860 assert!(TransitionRule::from_tz_string(tz_string, false).is_err()); in test_all_year_dst() 863 TransitionRule::from_tz_string(tz_string, true)?, in test_all_year_dst()
|
D | timezone.rs | 65 let rule = TransitionRule::from_tz_string(tz_string.as_bytes(), false)?; in from_posix_tz() 651 let transition_rule = TransitionRule::from_tz_string(tz_string, false)?; in test_no_dst() 659 TransitionRule::from_tz_string(b"IST-1GMT0", false), in test_error() 663 TransitionRule::from_tz_string(b"EET-2EEST", false), in test_error()
|
D | parser.rs | 90 false => Some(TransitionRule::from_tz_string( in parse()
|