Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/offset/local/
Dmod.rs43 pub(super) fn offset_from_utc_datetime(_utc_time: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_utc_datetime() function
62 pub(super) fn offset_from_utc_datetime(utc: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_utc_datetime() function
181 self.offset_from_utc_datetime(&utc.and_time(NaiveTime::MIN)) in offset_from_utc_date()
184 fn offset_from_utc_datetime(&self, utc: &NaiveDateTime) -> FixedOffset { in offset_from_utc_datetime() method
185 inner::offset_from_utc_datetime(utc).unwrap() in offset_from_utc_datetime()
Dunix.rs17 pub(super) fn offset_from_utc_datetime(utc: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_utc_datetime() function
Dwindows.rs28 pub(super) fn offset_from_utc_datetime(utc: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_utc_datetime() function
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/offset/
Dmod.rs533 fn offset_from_utc_datetime(&self, utc: &NaiveDateTime) -> Self::Offset; in offset_from_utc_datetime() method
548 DateTime::from_naive_utc_and_offset(*utc, self.offset_from_utc_datetime(utc)) in from_utc_datetime()
Dutc.rs133 fn offset_from_utc_datetime(&self, _utc: &NaiveDateTime) -> Utc { in offset_from_utc_datetime() method
Dfixed.rs146 fn offset_from_utc_datetime(&self, _utc: &NaiveDateTime) -> FixedOffset { in offset_from_utc_datetime() method
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/datetime/
Dserde.rs1236 fn offset_from_utc_datetime(&self, _utc: &NaiveDateTime) -> TestTimeZone { in test_serde_no_offset_debug() method
Dtests.rs97 fn offset_from_utc_datetime(&self, utc: &NaiveDateTime) -> Self::Offset { in offset_from_utc_datetime() method
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/format/
Dparsed.rs661 guessed_offset = tz.offset_from_utc_datetime(&dt).fix().local_minus_utc(); in to_datetime_with_timezone()