Searched refs:date_string (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ |
D | datetime.py | 849 def fromisoformat(cls, date_string): argument 851 if not isinstance(date_string, str): 855 assert len(date_string) == 10 856 return cls(*_parse_isoformat_date(date_string)) 1721 def fromisoformat(cls, date_string): argument 1723 if not isinstance(date_string, str): 1727 dstr = date_string[0:10] 1728 tstr = date_string[11:] 1948 def strptime(cls, date_string, format): argument 1951 return _strptime._strptime_datetime(cls, date_string, format)
|
/third_party/python/Doc/library/ |
D | datetime.rst | 521 .. classmethod:: date.fromisoformat(date_string) 523 Return a :class:`date` corresponding to a *date_string* given in the format 989 .. classmethod:: datetime.fromisoformat(date_string) 991 Return a :class:`.datetime` corresponding to a *date_string* in one of the 1035 .. classmethod:: datetime.strptime(date_string, format) 1037 Return a :class:`.datetime` corresponding to *date_string*, parsed according to 1042 datetime(*(time.strptime(date_string, format)[0:6])) 1044 :exc:`ValueError` is raised if the date_string and format 2297 | Signature | ``strftime(format)`` | ``strptime(date_string,… 2453 Using ``datetime.strptime(date_string, format)`` is equivalent to:: [all …]
|
/third_party/rust/crates/libc/src/ |
D | psp.rs | 3315 pub fn sceRtcParseDateTime(dest_tick: *mut u64, date_string: *const u8) -> i32; in sceRtcParseDateTime()
|
/third_party/e2fsprogs/ |
D | 1002-add-header-file-to-musl-compile-mk2efs.patch | 110 + const char **date_string);
|