/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/naive/datetime/ |
D | mod.rs | 85 pub struct NaiveDateTime { struct 90 impl NaiveDateTime { impl 108 pub const fn new(date: NaiveDate, time: NaiveTime) -> NaiveDateTime { in new() 131 pub const fn from_timestamp(secs: i64, nsecs: u32) -> NaiveDateTime { in from_timestamp() 162 pub const fn from_timestamp_millis(millis: i64) -> Option<NaiveDateTime> { in from_timestamp_millis() 194 pub const fn from_timestamp_micros(micros: i64) -> Option<NaiveDateTime> { in from_timestamp_micros() 226 pub const fn from_timestamp_nanos(nanos: i64) -> Option<NaiveDateTime> { in from_timestamp_nanos() 265 pub const fn from_timestamp_opt(secs: i64, nsecs: u32) -> Option<NaiveDateTime> { in from_timestamp_opt() 351 pub fn parse_from_str(s: &str, fmt: &str) -> ParseResult<NaiveDateTime> { in parse_from_str() 376 pub fn parse_and_remainder<'a>(s: &'a str, fmt: &str) -> ParseResult<(NaiveDateTime, &'a str)> { in parse_and_remainder() [all …]
|
D | serde.rs | 11 impl ser::Serialize for NaiveDateTime { implementation 47 impl<'de> de::Deserialize<'de> for NaiveDateTime { implementation 119 pub fn serialize<S>(dt: &NaiveDateTime, serializer: S) -> Result<S::Ok, S::Error> in serialize() 151 pub fn deserialize<'de, D>(d: D) -> Result<NaiveDateTime, D::Error> in deserialize() 256 pub fn serialize<S>(opt: &Option<NaiveDateTime>, serializer: S) -> Result<S::Ok, S::Error> in serialize() 291 pub fn deserialize<'de, D>(d: D) -> Result<Option<NaiveDateTime>, D::Error> in deserialize() 388 pub fn serialize<S>(dt: &NaiveDateTime, serializer: S) -> Result<S::Ok, S::Error> in serialize() 418 pub fn deserialize<'de, D>(d: D) -> Result<NaiveDateTime, D::Error> in deserialize() 512 pub fn serialize<S>(opt: &Option<NaiveDateTime>, serializer: S) -> Result<S::Ok, S::Error> in serialize() 545 pub fn deserialize<'de, D>(d: D) -> Result<Option<NaiveDateTime>, D::Error> in deserialize() [all …]
|
D | rustc_serialize.rs | 5 impl Encodable for NaiveDateTime { implementation 11 impl Decodable for NaiveDateTime { implementation 12 fn decode<D: Decoder>(d: &mut D) -> Result<NaiveDateTime, D::Error> { in decode() 26 impl From<TsSeconds> for NaiveDateTime { implementation 29 fn from(obj: TsSeconds) -> NaiveDateTime { in from()
|
/aosp_15_r20/packages/modules/Bluetooth/floss/hcidoc/src/groups/ |
D | informational.rs | 27 start: NaiveDateTime, in print_timestamps_and_initiator() 29 end: NaiveDateTime, in print_timestamps_and_initiator() 32 fn print_time_initiator(ts: NaiveDateTime, initiator: InitiatorType) -> String { in print_timestamps_and_initiator() 190 ts: NaiveDateTime, in report_connection_start() 207 ts: NaiveDateTime, in report_connection_end() 296 fn report_start(&mut self, initiator: InitiatorType, ts: NaiveDateTime) { in report_start() 301 fn report_end(&mut self, initiator: InitiatorType, ts: NaiveDateTime) { in report_end() 316 ts: NaiveDateTime, in report_profile_start() 331 ts: NaiveDateTime, in report_profile_end() 346 _ts: NaiveDateTime, in report_l2cap_conn_req() [all …]
|
D | connections.rs | 206 ) -> &mut HashMap<ConnectionHandle, NaiveDateTime> { in get_feature_pending_map() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/datetime/ |
D | mod.rs | 97 datetime: NaiveDateTime, in from_naive_utc_and_offset() 110 pub fn from_utc(datetime: NaiveDateTime, offset: Tz::Offset) -> DateTime<Tz> { in from_utc() 128 pub fn from_local(datetime: NaiveDateTime, offset: Tz::Offset) -> DateTime<Tz> { in from_local() 478 pub const fn naive_utc(&self) -> NaiveDateTime { in naive_utc() 491 pub fn naive_local(&self) -> NaiveDateTime { in naive_local() 504 pub(crate) fn overflowing_naive_local(&self) -> NaiveDateTime { in overflowing_naive_local() 758 F: FnMut(NaiveDateTime) -> Option<NaiveDateTime>, in map_local()
|
D | tests.rs | 40 local: &NaiveDateTime, in offset_from_local_datetime()
|
D | serde.rs | 1229 _local: &NaiveDateTime, in test_serde_no_offset_debug()
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/offset/local/ |
D | mod.rs | 48 _local_time: &NaiveDateTime, in offset_from_local_datetime() 200 transition_local: NaiveDateTime, in new() 231 dt: NaiveDateTime, in lookup_with_dst_transitions()
|
D | unix.rs | 25 fn offset(d: &NaiveDateTime, local: bool) -> LocalResult<FixedOffset> { in offset() 107 fn offset(&mut self, d: NaiveDateTime, local: bool) -> LocalResult<FixedOffset> { in offset()
|
D | windows.rs | 153 fn system_time_from_naive_date_time(st: SYSTEMTIME, year: i32) -> Option<NaiveDateTime> { in system_time_from_naive_date_time()
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/tests/ |
D | dateutils.rs | 6 fn verify_against_date_command_local(path: &'static str, dt: NaiveDateTime) { in verify_against_date_command_local() 108 fn verify_against_date_command_format_local(path: &'static str, dt: NaiveDateTime) { in verify_against_date_command_format_local()
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/ |
D | round.rs | 155 impl DurationRound for NaiveDateTime { implementation 168 naive: NaiveDateTime, in duration_round() 204 naive: NaiveDateTime, in duration_trunc()
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/naive/ |
D | date.rs | 825 pub const fn and_time(&self, time: NaiveTime) -> NaiveDateTime { in and_time() 840 pub const fn and_hms(&self, hour: u32, min: u32, sec: u32) -> NaiveDateTime { in and_hms() 866 pub const fn and_hms_opt(&self, hour: u32, min: u32, sec: u32) -> Option<NaiveDateTime> { in and_hms_opt() 882 pub const fn and_hms_milli(&self, hour: u32, min: u32, sec: u32, milli: u32) -> NaiveDateTime { in and_hms_milli() 916 ) -> Option<NaiveDateTime> { in and_hms_milli_opt() 946 pub const fn and_hms_micro(&self, hour: u32, min: u32, sec: u32, micro: u32) -> NaiveDateTime { in and_hms_micro() 980 ) -> Option<NaiveDateTime> { in and_hms_micro_opt() 996 pub const fn and_hms_nano(&self, hour: u32, min: u32, sec: u32, nano: u32) -> NaiveDateTime { in and_hms_nano() 1030 ) -> Option<NaiveDateTime> { in and_hms_nano_opt()
|
/aosp_15_r20/external/rust/android-crates-io/crates/rusqlite/src/types/ |
D | chrono.rs | 58 impl ToSql for NaiveDateTime { implementation 69 impl FromSql for NaiveDateTime { implementation
|
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/format/ |
D | formatting.rs | 538 dt: NaiveDateTime, in write_rfc3339() 602 dt: NaiveDateTime, in write_rfc2822()
|
D | parsed.rs | 543 pub fn to_naive_datetime_with_offset(&self, offset: i32) -> ParseResult<NaiveDateTime> { in to_naive_datetime_with_offset()
|
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/coord/ranged1d/types/ |
D | datetime.rs | 164 impl TimeValue for NaiveDateTime { implementation 176 fn earliest_after_date(date: NaiveDate) -> NaiveDateTime { in earliest_after_date() 183 fn add(&self, other: &Duration) -> NaiveDateTime { in add()
|
/aosp_15_r20/packages/modules/Bluetooth/floss/hcidoc/src/ |
D | parser.rs | 178 fn get_timestamp(&self) -> Option<NaiveDateTime> { in get_timestamp()
|