HomeSort by relevance Sort by last modified time
    Searched refs:Month (Results 76 - 100 of 149) sorted by null

1 2 34 5 6

  /libcore/ojluni/src/main/java/java/time/
LocalDateTime.java 105 * often viewed as year-month-day-hour-minute-second. Other date and time fields,
212 * Obtains an instance of {@code LocalDateTime} from year, month,
215 * This returns a {@code LocalDateTime} with the specified year, month,
216 * day-of-month, hour and minute.
217 * The day must be valid for the year and month, otherwise an exception will be thrown.
221 * @param month the month-of-year to represent, not null
222 * @param dayOfMonth the day-of-month to represent, from 1 to 31
227 * or if the day-of-month is invalid for the month-yea
    [all...]
Year.java 111 * This class does not store or represent a month, day, time or time-zone.
526 * Checks if the month-day is valid for this year.
528 * This method checks whether this year and the input month and day form
531 * @param monthDay the month-day to validate, null returns false
532 * @return true if the month and day are valid for this year
    [all...]
  /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)
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtSimpleFileSystemDxe/
WinNtSimpleFileSystem.c     [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
facp.asl 79 [0001] RTC Month Alarm Index : 00
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
Print.c 470 (UINTN)Time->Month,
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
EventLogInfo.c 394 Log->Month,
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
PosixFileSystem.c 222 Time->Month = tm->tm_mon + 1;
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeImageVerificationLib/
DxeImageVerificationLib.c     [all...]
  /prebuilts/go/darwin-x86/src/time/
format.go 46 // The recognized month formats are "Jan" and "January".
119 stdNeedDate = 1 << 8 // need month, day, year
129 // Its purpose is to prevent matching strings like "Month" when looking for "Mon".
468 month Month
485 // Compute year, month, day if needed.
487 year, month, day, _ = absDate(abs, true)
505 b = append(b, month.String()[:3]...)
507 m := month.String()
510 b = appendInt(b, int(month), 0
    [all...]
  /prebuilts/go/linux-x86/src/time/
format.go 46 // The recognized month formats are "Jan" and "January".
119 stdNeedDate = 1 << 8 // need month, day, year
129 // Its purpose is to prevent matching strings like "Month" when looking for "Mon".
468 month Month
485 // Compute year, month, day if needed.
487 year, month, day, _ = absDate(abs, true)
505 b = append(b, month.String()[:3]...)
507 m := month.String()
510 b = appendInt(b, int(month), 0
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/
PrintLib.c 412 TmpTime->Month,
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/
Print.c 656 (UINTN)Time->Month,
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Sal.h 543 UINT8 Month;
  /device/linaro/bootloader/edk2/SecurityPkg/Library/AuthVariableLib/
AuthService.c     [all...]
  /external/pdfium/xfa/fxfa/parser/
xfa_basic_data_element_properties.cpp 486 {XFA_Element::Month, 12, 0},
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKYear.java 83 import java.time.Month;
    [all...]
TCKOffsetDateTime.java 62 import static java.time.Month.DECEMBER;
118 import java.time.Month;
264 assertEquals(test.getMonth(), Month.JANUARY);
281 assertEquals(test.getMonth(), Month.JANUARY);
299 assertEquals(test.getMonth(), Month.DECEMBER);
427 public void test_parse(int y, int month, int d, int h, int m, int s, int n, String offsetId, String text) {
430 assertEquals(t.getMonth().getValue(), month);
    [all...]
TCKZonedDateTime.java 62 import static java.time.Month.JANUARY;
111 import java.time.Month;
281 assertEquals(test.getMonth(), Month.JANUARY);
312 assertEquals(test.getMonth(), Month.DECEMBER);
481 assertEquals(test.getMonth(), Month.JANUARY);
735 public void test_parse(int y, int month, int d, int h, int m, int s, int n, String zoneId, String text) {
738 assertEquals(t.getMonth().getValue(), month);
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/zone/
TCKZoneRules.java 77 import java.time.Month;
374 assertEquals(in.getMonth(), Month.MARCH);
385 assertEquals(out.getMonth(), Month.OCTOBER);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
PrintLib.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
ProcessOptions.c     [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Utility.c 121 // Generate a time stamp of the seconds from 2000/1/1, assume 30day/month.
126 (((((Time.Year - 2000) * 360 + (Time.Month - 1)) * 30 + (Time.Day - 1)) * 24 + Time.Hour) * 60 + Time.Minute) *
881 // Generate a time stamp of the centiseconds from 2000/1/1, assume 30day/month.
887 (Time.Month - 1)) * 30 +
    [all...]
  /external/ltp/testcases/commands/ade/ar/
ar01 517 Month=`ar -tv $TCtmp/lib.a | grep "file2.in" | awk '{print $4}'`
520 if [ $Sysmonth = $Month ] && [ $Count -eq 3 ]
537 while read permissions link uid gid size month day time file_name
539 echo "${permissions%.};$uid/$gid;$size;$month;$day;$time;$file_name"
543 while read permissions uid size month day time year file_name
545 echo "-$permissions;$uid;$size;$month;$day;$time;$file_name"

Completed in 466 milliseconds

1 2 34 5 6