HomeSort by relevance Sort by last modified time
    Searched refs:utc (Results 51 - 75 of 87) sorted by null

1 23 4

  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 412 CalendarContract.Instances.BEGIN + " INTEGER," + // UTC millis
413 CalendarContract.Instances.END + " INTEGER," + // UTC millis
464 CalendarContract.CalendarAlerts.BEGIN + " INTEGER NOT NULL," + // UTC millis
465 CalendarContract.CalendarAlerts.END + " INTEGER NOT NULL," + // UTC millis
466 CalendarContract.CalendarAlerts.ALARM_TIME + " INTEGER NOT NULL," + // UTC millis
467 // UTC millis
469 // UTC millis
471 // UTC millis
658 // sync time in UTC
2544 final String utc = Time.TIMEZONE_UTC; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
imaplib.py     [all...]
  /external/python/cpython2/Lib/
imaplib.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
imaplib.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
imaplib.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CompatibilityTest.java 119 new GregorianCalendar(TimeZone.getTimeZone("UTC"));
165 TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
680 int utc = ((cal.get(Calendar.HOUR_OF_DAY) * 60 + local
687 if (utc != expected)
689 (utc - expected) + " millis = " +
690 ((utc-expected)/1000/60/60.0) + " hr");
825 // At this point UTC value is set, various fields are not.
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CompatibilityTest.java 118 new GregorianCalendar(TimeZone.getTimeZone("UTC"));
164 TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
679 int utc = ((cal.get(Calendar.HOUR_OF_DAY) * 60 + local
686 if (utc != expected)
688 (utc - expected) + " millis = " +
689 ((utc-expected)/1000/60/60.0) + " hr");
824 // At this point UTC value is set, various fields are not.
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ccaltst.c 1285 int32_t offset,utc, expected; local
1512 static const UChar utc[] = { 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0 }; \/* "Etc\/GMT" *\/ local
    [all...]
reapits.c 99 UChar32 utc = 0; local
104 utc = utext_next32(utext);
105 if (u8c == 0 && utc == U_SENTINEL) {
108 if (u8c != utc || u8c == 0) {
    [all...]
  /external/toybox/generated/
globals.h 256 int utc; member in struct:hwclock_data
  /prebuilts/go/darwin-x86/src/time/
time.go 24 // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
30 // The methods Local, UTC, and In return a Time with a specific location.
38 // values, which can be achieved through use of the UTC or Local method.
42 // January 1, year 1 00:00:00 UTC.
53 // The nil location means UTC.
54 // All UTC times are represented with loc==nil, never loc==&utcLoc.
77 // For example, 6:00 +0200 CEST and 4:00 UTC are Equal.
155 // January 1, year 1, 00:00:00.000000000 UTC
157 // (1-1-1 00:00:00 UTC), (2) is unlikely enough to arise in practice to
159 // non-negative year even in time zones west of UTC, unlike 1-1-
    [all...]
  /prebuilts/go/linux-x86/src/time/
time.go 24 // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
30 // The methods Local, UTC, and In return a Time with a specific location.
38 // values, which can be achieved through use of the UTC or Local method.
42 // January 1, year 1 00:00:00 UTC.
53 // The nil location means UTC.
54 // All UTC times are represented with loc==nil, never loc==&utcLoc.
77 // For example, 6:00 +0200 CEST and 4:00 UTC are Equal.
155 // January 1, year 1, 00:00:00.000000000 UTC
157 // (1-1-1 00:00:00 UTC), (2) is unlikely enough to arise in practice to
159 // non-negative year even in time zones west of UTC, unlike 1-1-
    [all...]
  /external/autotest/client/bin/
utils.py 1030 def get_hwclock_seconds(utc=True):
1033 Use Coordinated Universal Time if utc is True, local time otherwise.
1037 if utc:
1038 cmd += ' --utc'
    [all...]
  /external/icu/icu4c/source/test/intltest/
caltest.cpp 962 int32_t utc = ((cal->get(UCAL_HOUR_OF_DAY, status) * 60 + local
    [all...]
tzrulets.cpp 2113 TimeZone *utc = TimeZone::createTimeZone("Etc\/GMT"); local
2317 UDate utc = cal->getTime(status); local
    [all...]
  /build/make/core/
Makefile 116 $(hide) echo ro.bootimage.build.date.utc=`$(DATE_FROM_FILE) +%s`>>$@
369 $(hide) echo ro.vendor.build.date.utc=`$(DATE_FROM_FILE) +%s`>>$@
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1_test.go 268 {"910506234540Z", true, time.Date(1991, 05, 06, 23, 45, 40, 0, time.UTC)},
269 {"9105062345Z", true, time.Date(1991, 05, 06, 23, 45, 0, 0, time.UTC)},
270 {"5105062345Z", true, time.Date(1951, 05, 06, 23, 45, 0, 0, time.UTC)},
322 {"20100102030405Z", true, time.Date(2010, 01, 02, 03, 04, 05, 0, time.UTC)},
422 {"utc", fieldParameters{timeType: TagUTCTime}},
642 NotBefore: time.Date(2009, 10, 8, 00, 25, 53, 0, time.UTC),
643 NotAfter: time.Date(2010, 10, 8, 00, 25, 53, 0, time.UTC),
    [all...]
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1_test.go 268 {"910506234540Z", true, time.Date(1991, 05, 06, 23, 45, 40, 0, time.UTC)},
269 {"9105062345Z", true, time.Date(1991, 05, 06, 23, 45, 0, 0, time.UTC)},
270 {"5105062345Z", true, time.Date(1951, 05, 06, 23, 45, 0, 0, time.UTC)},
322 {"20100102030405Z", true, time.Date(2010, 01, 02, 03, 04, 05, 0, time.UTC)},
422 {"utc", fieldParameters{timeType: TagUTCTime}},
642 NotBefore: time.Date(2009, 10, 8, 00, 25, 53, 0, time.UTC),
643 NotAfter: time.Date(2010, 10, 8, 00, 25, 53, 0, time.UTC),
    [all...]
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.7.0/
ant-1.7.0.jar 
  /external/guice/lib/build/jdiff/
xerces.jar 
  /prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar 

Completed in 1660 milliseconds

1 23 4