Home
last modified time | relevance | path

Searched refs:iso_year (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Lib/
H A D_strptime.py293 def _calc_julian_from_V(iso_year, iso_week, iso_weekday):
298 correction = datetime_date(iso_year, 1, 4).isoweekday() + 3
303 ordinal += datetime_date(iso_year, 1, 1).toordinal()
304 iso_year -= 1
305 ordinal -= datetime_date(iso_year, 1, 1).toordinal()
306 return iso_year, ordinal
355 iso_year = year = None
387 iso_year = int(found_dict['G'])
488 if year is None and iso_year is not None:
522 elif iso_year i
[all...]
/third_party/node/deps/v8/src/objects/
H A Djs-temporal-objects.cc495 int32_t iso_year, int32_t iso_month, int32_t iso_day, in CreateTemporalDate()
504 if (!IsValidISODate(isolate, iso_year, iso_month, iso_day)) { in CreateTemporalDate()
509 if (!ISODateTimeWithinLimits(isolate, iso_year, iso_month, iso_day, 12, 0, 0, in CreateTemporalDate()
522 object->set_iso_year(iso_year); in CreateTemporalDate()
534 Isolate* isolate, int32_t iso_year, int32_t iso_month, int32_t iso_day, in CreateTemporalDate()
538 CONSTRUCTOR(plain_date), iso_year, iso_month, in CreateTemporalDate()
545 int32_t iso_year, int32_t iso_month, int32_t iso_day, int32_t hour, in CreateTemporalDateTime()
554 if (!IsValidISODate(isolate, iso_year, iso_month, iso_day)) { in CreateTemporalDateTime()
565 if (!ISODateTimeWithinLimits(isolate, iso_year, iso_month, iso_day, hour, in CreateTemporalDateTime()
584 object->set_iso_year(iso_year); in CreateTemporalDateTime()
493 CreateTemporalDate( Isolate* isolate, Handle<JSFunction> target, Handle<HeapObject> new_target, int32_t iso_year, int32_t iso_month, int32_t iso_day, Handle<JSReceiver> calendar) CreateTemporalDate() argument
533 CreateTemporalDate( Isolate* isolate, int32_t iso_year, int32_t iso_month, int32_t iso_day, Handle<JSReceiver> calendar) CreateTemporalDate() argument
543 CreateTemporalDateTime( Isolate* isolate, Handle<JSFunction> target, Handle<HeapObject> new_target, int32_t iso_year, int32_t iso_month, int32_t iso_day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t microsecond, int32_t nanosecond, Handle<JSReceiver> calendar) CreateTemporalDateTime() argument
607 CreateTemporalDateTimeDefaultTarget( Isolate* isolate, int32_t iso_year, int32_t iso_month, int32_t iso_day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t microsecond, int32_t nanosecond, Handle<JSReceiver> calendar) CreateTemporalDateTimeDefaultTarget() argument
622 CreateTemporalDateTime( Isolate* isolate, int32_t iso_year, int32_t iso_month, int32_t iso_day, int32_t hour, int32_t minute, int32_t second, int32_t millisecond, int32_t microsecond, int32_t nanosecond, Handle<JSReceiver> calendar) CreateTemporalDateTime() argument
720 CreateTemporalYearMonth( Isolate* isolate, Handle<JSFunction> target, Handle<HeapObject> new_target, int32_t iso_year, int32_t iso_month, Handle<JSReceiver> calendar, int32_t reference_iso_day) CreateTemporalYearMonth() argument
[all...]
H A Djs-temporal-objects.h33 DECLARE_TEMPORAL_INLINE_GETTER_SETTER(iso_year) \
192 Handle<HeapObject> new_target, Handle<Object> iso_year,
233 Handle<HeapObject> new_target, Handle<Object> iso_year,
332 Handle<HeapObject> new_target, Handle<Object> iso_year,
H A Djs-temporal-objects-inl.h58 TEMPORAL_INLINE_SIGNED_GETTER_SETTER(T, data, iso_year, -271821, 275760, \
/third_party/python/Modules/
H A D_datetimemodule.c399 iso_to_ymd(const int iso_year, const int iso_week, const int iso_day, in iso_to_ymd() argument
406 int first_weekday = weekday(iso_year, 1, 1); in iso_to_ymd()
407 if (first_weekday == 3 || (first_weekday == 2 && is_leap(iso_year))) { in iso_to_ymd()
422 int day_1 = iso_week1_monday(iso_year); in iso_to_ymd()

Completed in 30 milliseconds