Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/naive/datetime/
Dmod.rs354 parsed.to_naive_datetime_with_offset(0) // no offset adjustment in parse_from_str()
379 parsed.to_naive_datetime_with_offset(0).map(|d| (d, remainder)) // no offset adjustment in parse_and_remainder()
2161 parsed.to_naive_datetime_with_offset(0) in from_str()
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/format/
Dparsed.rs543 pub fn to_naive_datetime_with_offset(&self, offset: i32) -> ParseResult<NaiveDateTime> { in to_naive_datetime_with_offset() method
633 let datetime = self.to_naive_datetime_with_offset(offset)?; in to_datetime()
675 let datetime = self.to_naive_datetime_with_offset(guessed_offset)?; in to_datetime_with_timezone()
1024 Parsed { $($k: Some($v),)* ..Parsed::new() }.to_naive_datetime_with_offset($offset) in test_parsed_to_naive_datetime_with_offset()