/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/testdata/ |
D | testdata_en.txt | 51 3 weeks ago 52 2 weeks ago 54 0 weeks 56 2 weeks from now 57 3 weeks from now 58 5 weeks from now 59 10 weeks from now 60 11 weeks from now 61 12 weeks from now 62 20 weeks from now [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/testdata/ |
D | testdata_en.txt | 51 3 weeks ago 52 2 weeks ago 54 0 weeks 56 2 weeks from now 57 3 weeks from now 58 5 weeks from now 59 10 weeks from now 60 11 weeks from now 61 12 weeks from now 62 20 weeks from now [all …]
|
/external/python/dateutil/dateutil/test/ |
D | test_relativedelta.py | 21 ccRD = rdChildClass(years=1, months=1, days=1, leapdays=1, weeks=1, 24 rd = relativedelta(years=1, months=1, days=1, leapdays=1, weeks=1, 65 self.assertEqual(self.now+relativedelta(months=+1, weeks=+1), 70 relativedelta(months=+1, weeks=+1, hour=10), 138 relativedelta(day=4, weeks=+14, weekday=MO(-1)), 337 rd = relativedelta(years=4, months=2, weeks=8, days=6) 338 self.assertEqual((rd.weeks, rd.days), (8, 8 * 7 + 6)) 340 rd.weeks = 3 341 self.assertEqual((rd.weeks, rd.days), (3, 3 * 7 + 6)) 407 rd = relativedelta(weeks=1.25) [all …]
|
/external/toybox/toys/other/ |
D | uptime.c | 58 int weeks = days/7; in uptime_main() local 62 weeks, (weeks!=1)?"s":"", in uptime_main()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | AnnualTimeZoneRule.java | 114 int weeks = dateTimeRule.getRuleWeekInMonth(); in getStartInYear() local 115 if (weeks > 0) { in getStartInYear() 117 ruleDay += 7 * (weeks - 1); in getStartInYear() 122 ruleDay += 7 * (weeks + 1); in getStartInYear()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | AnnualTimeZoneRule.java | 124 int weeks = dateTimeRule.getRuleWeekInMonth(); in getStartInYear() local 125 if (weeks > 0) { in getStartInYear() 127 ruleDay += 7 * (weeks - 1); in getStartInYear() 132 ruleDay += 7 * (weeks + 1); in getStartInYear()
|
/external/arm-trusted-firmware/docs/about/ |
D | release-information.rst | 9 non-essential changes) up to 4 weeks prior to the target release date. The release 22 |<---4 weeks--->| |<---4 weeks--->|
|
/external/python/dateutil/docs/ |
D | relativedelta.rst | 43 >>> NOW+relativedelta(months=+1, weeks=+1) 50 >>> TODAY+relativedelta(months=+1, weeks=+1, hour=10) 64 since it's a difference, and the weeks parameter 148 >>> datetime(1997,1,1)+relativedelta(day=4, weekday=MO(-1), weeks=+14)
|
/external/libchrome/build/ |
D | write_build_date_header.py | 36 weeks = calendar.Calendar().monthdays2calendar(year, month) 38 return [date_day[0] for date_day in weeks[0] if date_day[1] == 6][0]
|
/external/python/cpython3/Lib/test/ |
D | test_calendar.py | 607 def check_weeks(self, year, month, weeks): argument 609 self.assertEqual(len(cal), len(weeks)) 610 for i in range(len(weeks)): 611 self.assertEqual(weeks[i], sum(day != 0 for day in cal[i])) 946 weeks = self.cal.monthdays2calendar(2017, 5) 947 self.assertIn('class="wed text-nowrap"', self.cal.formatweek(weeks[0]))
|
/external/python/cpython2/Lib/test/ |
D | test_calendar.py | 324 def check_weeks(self, year, month, weeks): argument 326 self.assertEqual(len(cal), len(weeks)) 327 for i in xrange(len(weeks)): 328 self.assertEqual(weeks[i], sum(day != 0 for day in cal[i]))
|
/external/python/dateutil/dateutil/ |
D | relativedelta.py | 106 years=0, months=0, days=0, leapdays=0, weeks=0, argument 179 self.days = days + weeks * 7 265 def weeks(self): member in relativedelta 268 @weeks.setter 269 def weeks(self, value): member in relativedelta 270 self.days = self.days - (self.weeks * 7) + value * 7
|
/external/python/cpython2/Doc/library/ |
D | calendar.rst | 72 Return a list of the weeks in the month *month* of the *year* as full 73 weeks. Weeks are lists of seven :class:`datetime.date` objects. 78 Return a list of the weeks in the month *month* of the *year* as full 79 weeks. Weeks are lists of seven tuples of day numbers and weekday 85 Return a list of the weeks in the month *month* of the *year* as full 86 weeks. Weeks are lists of seven day numbers. 93 months (defaulting to 3). Each month contains between 4 and 6 weeks and
|
/external/libcxx/test/std/utilities/time/ |
D | weeks.pass.cpp | 21 typedef std::chrono::weeks D; in main()
|
/external/llvm-project/libcxx/test/std/utilities/time/ |
D | weeks.pass.cpp | 22 typedef std::chrono::weeks D; in main()
|
/external/python/cffi/doc/misc/ |
D | grant-cffi-1.0.rst | 101 weeks of full-time work at the part-time cost of 25 US$ per hour. 104 than that (I estimate it at roughly 4 weeks), but 2.5 weeks should 112 Armin Rigo, main author of CFFI, committing 2.5 weeks of full-time
|
/external/skia/site/docs/user/release/ |
D | _index.md | 15 If you require less frequent updates, we cut a stable milestone every 6 weeks
|
D | schedule.md | 14 point, for the next six weeks, only high priority fixes are checked into the branch.
|
/external/libcxx/src/ |
D | locale.cpp | 4523 static string weeks[14]; in init_weeks() local 4524 weeks[0] = "Sunday"; in init_weeks() 4525 weeks[1] = "Monday"; in init_weeks() 4526 weeks[2] = "Tuesday"; in init_weeks() 4527 weeks[3] = "Wednesday"; in init_weeks() 4528 weeks[4] = "Thursday"; in init_weeks() 4529 weeks[5] = "Friday"; in init_weeks() 4530 weeks[6] = "Saturday"; in init_weeks() 4531 weeks[7] = "Sun"; in init_weeks() 4532 weeks[8] = "Mon"; in init_weeks() [all …]
|
/external/llvm-project/libcxx/src/ |
D | locale.cpp | 4700 static string weeks[14]; in init_weeks() local 4701 weeks[0] = "Sunday"; in init_weeks() 4702 weeks[1] = "Monday"; in init_weeks() 4703 weeks[2] = "Tuesday"; in init_weeks() 4704 weeks[3] = "Wednesday"; in init_weeks() 4705 weeks[4] = "Thursday"; in init_weeks() 4706 weeks[5] = "Friday"; in init_weeks() 4707 weeks[6] = "Saturday"; in init_weeks() 4708 weeks[7] = "Sun"; in init_weeks() 4709 weeks[8] = "Mon"; in init_weeks() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | tzrule.cpp | 279 int32_t weeks = fDateTimeRule->getRuleWeekInMonth(); in getStartInYear() local 280 if (weeks > 0) { in getStartInYear() 282 ruleDay += 7 * (weeks - 1); in getStartInYear() 287 ruleDay += 7 * (weeks + 1); in getStartInYear()
|
/external/python/cpython3/Doc/library/ |
D | calendar.rst | 96 Return a list of the weeks in the month *month* of the *year* as full 97 weeks. Weeks are lists of seven :class:`datetime.date` objects. 102 Return a list of the weeks in the month *month* of the *year* as full 103 weeks. Weeks are lists of seven tuples of day numbers and weekday 109 Return a list of the weeks in the month *month* of the *year* as full 110 weeks. Weeks are lists of seven day numbers. 117 months (defaulting to 3). Each month contains between 4 and 6 weeks and
|
/external/skqp/site/ |
D | schedule.md | 9 point, for the next six weeks, only high priority fixes are checked into the branch.
|
/external/curl/docs/ |
D | RELEASE-PROCEDURE.md | 69 We do releases every 8 weeks on Wednesdays. If critical problems arise, we can 75 - During the first 4 weeks after a release, we allow new features and changes
|
/external/python/cpython2/Lib/ |
D | calendar.py | 362 weeks = [] 365 weeks.append('') 367 weeks.append(self.formatweek(cal[j], w)) 368 a(formatstring(weeks, colwidth, c).rstrip())
|