HomeSort by relevance Sort by last modified time
    Searched refs:first_weekday (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_strptime.py 278 first_weekday = datetime_date(year, 1, 1).weekday()
283 first_weekday = (first_weekday + 1) % 7
287 week_0_length = (7 - first_weekday) % 7
289 return 1 + day_of_week - first_weekday
  /external/python/cpython2/Lib/
_strptime.py 282 first_weekday = datetime_date(year, 1, 1).weekday()
287 first_weekday = (first_weekday + 1) % 7
291 week_0_length = (7 - first_weekday) % 7
293 return 1 + day_of_week - first_weekday
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_strptime.py 278 first_weekday = datetime_date(year, 1, 1).weekday()
283 first_weekday = (first_weekday + 1) % 7
287 week_0_length = (7 - first_weekday) % 7
289 return 1 + day_of_week - first_weekday
  /prebuilts/gdb/linux-x86/lib/python2.7/
_strptime.py 278 first_weekday = datetime_date(year, 1, 1).weekday()
283 first_weekday = (first_weekday + 1) % 7
287 week_0_length = (7 - first_weekday) % 7
289 return 1 + day_of_week - first_weekday
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_strptime.py 278 first_weekday = datetime_date(year, 1, 1).weekday()
283 first_weekday = (first_weekday + 1) % 7
287 week_0_length = (7 - first_weekday) % 7
289 return 1 + day_of_week - first_weekday
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_strptime.py 278 first_weekday = datetime_date(year, 1, 1).weekday()
283 first_weekday = (first_weekday + 1) % 7
287 week_0_length = (7 - first_weekday) % 7
289 return 1 + day_of_week - first_weekday
  /external/python/cpython3/Lib/
_strptime.py 288 first_weekday = datetime_date(year, 1, 1).weekday()
293 first_weekday = (first_weekday + 1) % 7
297 week_0_length = (7 - first_weekday) % 7
299 return 1 + day_of_week - first_weekday
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 348 int first_weekday = (first_day + 6) % 7; local
350 int week1_monday = first_day - first_weekday;
352 if (first_weekday > 3) /* if 1/1 was Fri, Sat, Sun */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 348 int first_weekday = (first_day + 6) % 7; local
350 int week1_monday = first_day - first_weekday;
352 if (first_weekday > 3) /* if 1/1 was Fri, Sat, Sun */
    [all...]
  /external/python/cpython2/Modules/
datetimemodule.c 348 int first_weekday = (first_day + 6) % 7; local
350 int week1_monday = first_day - first_weekday;
352 if (first_weekday > 3) /* if 1/1 was Fri, Sat, Sun */
    [all...]
  /external/python/cpython3/Modules/
_datetimemodule.c 370 int first_weekday = (first_day + 6) % 7; local
372 int week1_monday = first_day - first_weekday;
374 if (first_weekday > 3) /* if 1/1 was Fri, Sat, Sun */
    [all...]

Completed in 650 milliseconds