/prebuilts/go/darwin-x86/src/time/ |
zoneinfo_windows.go | 106 // Windows specifies daylight savings information in "day in month" format: 107 // d.Month is month number (1-12) 109 // d.Day is week within the month (1 to 5, where 5 is last week of the month) 112 t := Date(year, Month(d.Month), day, int(d.Hour), int(d.Minute), int(d.Second), 0, UTC) 123 if day > daysIn(Month(d.Month), year) { 134 if i.StandardDate.Month > 0 [all...] |
zoneinfo_windows_test.go | 16 t1 = Date(t1.Year(), t1.Month(), t1.Day(), t1.Hour(), t1.Minute(), t1.Second(), 0, t1.Location())
|
format_test.go | 58 {"Janet", "Hi Janet, the Month is January", "Hi Janet, the Month is February"}, 151 // Month and day names only match when not followed by a lower-case letter. 152 {"Janet", "Hi Janet, the Month is January: Jan _2 15:04:05 2006", "Hi Janet, the Month is February: Feb 4 21:00:57 2010", false, true, 1, 0}, 263 if time.Month() != February { 264 t.Errorf("%s: bad month: %s not %s", test.name, time.Month(), February)
|
time.go | 50 // determine the minute, hour, month, day, and year 76 // A Month specifies a month of the year (January = 1, ...). 77 type Month int 80 January Month = 1 + iota 109 // String returns the English name of the month ("January", "February", ...). 110 func (m Month) String() string { return months[m-1] } 157 // The presentation computations - year, month, minute, and so on - all 246 // It is called when computing a presentation property like Month or Hour. 289 // Date returns the year, month, and day in which t occurs [all...] |
time_test.go | 35 Month Month 75 year, month, day := t.Date() 78 if year != u.Year || month != u.Month || day != u.Day || 85 t.Month() == u.Month && 375 month, day int // month and day 419 dt := Date(wt.year, Month(wt.month), wt.day, 0, 0, 0, 0, UTC [all...] |
format.go | 99 stdNeedDate = 1 << 8 // need month, day, year 109 // Its purpose is to prevent matching strings like "Month" when looking for "Mon". 441 month Month 458 // Compute year, month, day if needed. 460 year, month, day, _ = absDate(abs, true) 478 b = append(b, month.String()[:3]...) 480 m := month.String() 483 b = appendInt(b, int(month), 0) 485 b = appendInt(b, int(month), 2 [all...] |
/prebuilts/go/linux-x86/src/time/ |
zoneinfo_windows.go | 106 // Windows specifies daylight savings information in "day in month" format: 107 // d.Month is month number (1-12) 109 // d.Day is week within the month (1 to 5, where 5 is last week of the month) 112 t := Date(year, Month(d.Month), day, int(d.Hour), int(d.Minute), int(d.Second), 0, UTC) 123 if day > daysIn(Month(d.Month), year) { 134 if i.StandardDate.Month > 0 [all...] |
zoneinfo_windows_test.go | 16 t1 = Date(t1.Year(), t1.Month(), t1.Day(), t1.Hour(), t1.Minute(), t1.Second(), 0, t1.Location())
|
format_test.go | 58 {"Janet", "Hi Janet, the Month is January", "Hi Janet, the Month is February"}, 151 // Month and day names only match when not followed by a lower-case letter. 152 {"Janet", "Hi Janet, the Month is January: Jan _2 15:04:05 2006", "Hi Janet, the Month is February: Feb 4 21:00:57 2010", false, true, 1, 0}, 263 if time.Month() != February { 264 t.Errorf("%s: bad month: %s not %s", test.name, time.Month(), February)
|
time.go | 50 // determine the minute, hour, month, day, and year 76 // A Month specifies a month of the year (January = 1, ...). 77 type Month int 80 January Month = 1 + iota 109 // String returns the English name of the month ("January", "February", ...). 110 func (m Month) String() string { return months[m-1] } 157 // The presentation computations - year, month, minute, and so on - all 246 // It is called when computing a presentation property like Month or Hour. 289 // Date returns the year, month, and day in which t occurs [all...] |
time_test.go | 35 Month Month 75 year, month, day := t.Date() 78 if year != u.Year || month != u.Month || day != u.Day || 85 t.Month() == u.Month && 375 month, day int // month and day 419 dt := Date(wt.year, Month(wt.month), wt.day, 0, 0, 0, 0, UTC [all...] |
format.go | 99 stdNeedDate = 1 << 8 // need month, day, year 109 // Its purpose is to prevent matching strings like "Month" when looking for "Mon". 441 month Month 458 // Compute year, month, day if needed. 460 year, month, day, _ = absDate(abs, true) 478 b = append(b, month.String()[:3]...) 480 m := month.String() 483 b = appendInt(b, int(month), 0) 485 b = appendInt(b, int(month), 2 [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
mpeg2structs.h | 179 BYTE Month;
|
poclass.h | 176 UCHAR Month; 324 UINT8 Month;
|
ntddmmc.h | 608 UCHAR Month[2];
|
/prebuilts/go/darwin-x86/src/log/ |
log_test.go | 132 now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), now.Second()) 141 now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), now.Second()) 167 itoa(&dst, 1, 2) // month
|
/prebuilts/go/linux-x86/src/log/ |
log_test.go | 132 now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), now.Second()) 141 now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), now.Second()) 167 itoa(&dst, 1, 2) // month
|
/external/v8/test/intl/date-format/ |
parse-MMMdy.js | 29 // Month is represented as a short name. 32 {year: 'numeric', month: 'short',
|
parse-mdy.js | 50 // Month is numeric, so it fails on "Feb".
|
parse-mdyhms.js | 31 {year: 'numeric', month: 'numeric', 53 // Month is numeric, so it fails on "Feb".
|
/prebuilts/go/darwin-x86/src/archive/zip/ |
struct.go | 152 // date bits 0-4: day of month; 5-8: month; 9-15: years since 1980 154 time.Month(dosDate>>5&0xf), 172 fDate = uint16(t.Day() + int(t.Month())<<5 + (t.Year()-1980)<<9)
|
/prebuilts/go/linux-x86/src/archive/zip/ |
struct.go | 152 // date bits 0-4: day of month; 5-8: month; 9-15: years since 1980 154 time.Month(dosDate>>5&0xf), 172 fDate = uint16(t.Day() + int(t.Month())<<5 + (t.Year()-1980)<<9)
|
/external/v8/test/mjsunit/ |
date.js | 81 // Month
|
/external/v8/test/webkit/ |
date-set-to-nan.js | 40 "Month",
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/ |
mce.h | 183 UCHAR Month;
|