Home
last modified time | relevance | path

Searched defs:FixedOffset (Results 1 – 22 of 22) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/offset/
Dfixed.rs30 pub struct FixedOffset { struct
34 impl FixedOffset { impl
41 pub fn east(secs: i32) -> FixedOffset { in east()
63 pub const fn east_opt(secs: i32) -> Option<FixedOffset> { in east_opt()
77 pub fn west(secs: i32) -> FixedOffset { in west()
99 pub const fn west_opt(secs: i32) -> Option<FixedOffset> { in west_opt()
121 impl FromStr for FixedOffset { implementation
129 impl TimeZone for FixedOffset { implementation
132 fn from_offset(offset: &FixedOffset) -> FixedOffset { in from_offset()
136 fn offset_from_local_date(&self, _local: &NaiveDate) -> LocalResult<FixedOffset> { in offset_from_local_date()
[all …]
Dutc.rs139 fn fix(&self) -> FixedOffset { in fix()
Dmod.rs209 fn fix(&self) -> FixedOffset; in fix()
/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()
49 ) -> LocalResult<FixedOffset> { in offset_from_local_datetime()
62 pub(super) fn offset_from_utc_datetime(utc: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_utc_datetime()
67 pub(super) fn offset_from_local_datetime(local: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_local_datetime()
169 fn offset_from_local_date(&self, local: &NaiveDate) -> LocalResult<FixedOffset> { in offset_from_local_date()
174 fn offset_from_local_datetime(&self, local: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_local_datetime()
179 fn offset_from_utc_date(&self, utc: &NaiveDate) -> FixedOffset { in offset_from_utc_date()
184 fn offset_from_utc_datetime(&self, utc: &NaiveDateTime) -> FixedOffset { in offset_from_utc_datetime()
201 offset_before: FixedOffset, in new()
202 offset_after: FixedOffset, in new()
[all …]
Dunix.rs17 pub(super) fn offset_from_utc_datetime(utc: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_utc_datetime()
21 pub(super) fn offset_from_local_datetime(local: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_local_datetime()
25 fn offset(d: &NaiveDateTime, local: bool) -> LocalResult<FixedOffset> { in offset()
107 fn offset(&mut self, d: NaiveDateTime, local: bool) -> LocalResult<FixedOffset> { in offset()
Dwindows.rs28 pub(super) fn offset_from_utc_datetime(utc: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_utc_datetime()
74 pub(super) fn offset_from_local_datetime(local: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_local_datetime()
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/datetime/
Dtests.rs243 fixedoffset: &FixedOffset, in ymdhms()
250 ) -> DateTime<FixedOffset> { in ymdhms()
257 fixedoffset: &FixedOffset, in ymdhms_milli()
265 ) -> DateTime<FixedOffset> { in ymdhms_milli()
277 fixedoffset: &FixedOffset, in ymdhms_micro()
285 ) -> DateTime<FixedOffset> { in ymdhms_micro()
297 fixedoffset: &FixedOffset, in ymdhms_nano()
305 ) -> DateTime<FixedOffset> { in ymdhms_nano()
Dmod.rs354 pub fn fixed_offset(&self) -> DateTime<FixedOffset> { in fixed_offset()
798 pub fn parse_from_rfc2822(s: &str) -> ParseResult<DateTime<FixedOffset>> { in parse_from_rfc2822()
818 pub fn parse_from_rfc3339(s: &str) -> ParseResult<DateTime<FixedOffset>> { in parse_from_rfc3339()
846 pub fn parse_from_str(s: &str, fmt: &str) -> ParseResult<DateTime<FixedOffset>> { in parse_from_str()
880 ) -> ParseResult<(DateTime<FixedOffset>, &'a str)> { in parse_and_remainder()
1747 FFixed: Fn(&str) -> Result<DateTime<FixedOffset>, E>, in test_decodable_json()
1803 FFixed: Fn(&str) -> Result<rustc_serialize::TsSeconds<FixedOffset>, E>, in test_decodable_json_timestamps()
Drustc_serialize.rs30 fn decode<D: Decoder>(d: &mut D) -> Result<DateTime<FixedOffset>, D::Error> { in decode()
38 fn decode<D: Decoder>(d: &mut D) -> Result<TsSeconds<FixedOffset>, D::Error> { in decode()
Dserde.rs1241 fn fix(&self) -> FixedOffset { in test_serde_no_offset_debug()
/aosp_15_r20/external/rust/android-crates-io/crates/chrono/src/format/
Dformatting.rs150 off: Option<&(String, FixedOffset)>, in format() argument
175 off: Option<&(String, FixedOffset)>, in format_item() argument
194 off: Option<&(String, FixedOffset)>, in format_inner() argument
539 off: FixedOffset, in write_rfc3339()
603 off: FixedOffset, in write_rfc2822()
Dparse.rs526 fn from_str(s: &str) -> ParseResult<DateTime<FixedOffset>> { in from_str()
1662 fn rfc2822_to_datetime(date: &str) -> ParseResult<DateTime<FixedOffset>> { in test_rfc2822()
Dparsed.rs616 pub fn to_fixed_offset(&self) -> ParseResult<FixedOffset> { in to_fixed_offset()
626 pub fn to_datetime(&self) -> ParseResult<DateTime<FixedOffset>> { in to_datetime()
/aosp_15_r20/external/python/pyasn1/pyasn1/type/
Duseful.py41 class FixedOffset(datetime.tzinfo): class in TimeMixIn
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/RISCV/
H A DRISCVFrameLowering.cpp332 const int64_t FixedOffset = NumOfVReg * VLENB; in adjustStackForRVV() local
349 uint64_t FixedOffset, in createDefCFAExpression()
/aosp_15_r20/external/python/pyasn1/tests/type/
Dtest_useful.py23 class FixedOffset(datetime.tzinfo): class
/aosp_15_r20/external/python/cpython2/Doc/includes/
Dtzinfo-examples.py26 class FixedOffset(tzinfo): class
/aosp_15_r20/external/python/pyyaml/tests/lib/
Dtest_constructor.py217 class FixedOffset(datetime.tzinfo): class
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp2539 int64_t FixedOffset = -MFI.getObjectOffset(I); in determineSVEStackObjectOffsets() local
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_datetime.py43 class FixedOffset(tzinfo): class
/aosp_15_r20/external/python/cpython3/Lib/test/
Ddatetimetester.py123 class FixedOffset(tzinfo): class
/aosp_15_r20/prebuilts/tools/common/m2/repository/com/intellij/core-analysis/
HDintellij-core-analysis.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/intellij/ com/ ...