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

12 3 4

  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
handlers.py 168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
172 self.utc = utc
235 if self.utc:
269 if not self.utc:
332 if self.utc:
361 if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
handlers.py 168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
172 self.utc = utc
235 if self.utc:
269 if not self.utc:
332 if self.utc:
361 if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py 168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
172 self.utc = utc
235 if self.utc:
269 if not self.utc:
332 if self.utc:
361 if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py 168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
172 self.utc = utc
235 if self.utc:
269 if not self.utc:
332 if self.utc:
361 if (self.when == 'MIDNIGHT' or self.when.startswith('W')) and not self.utc:
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 240 TimeZone utc = TimeZone.getTimeZone("UTC"); local
242 Calendar c = new GregorianCalendar(utc);
246 sdf.setTimeZone(utc);
  /external/python/cpython2/Doc/includes/
tzinfo-examples.py 6 # A UTC class.
8 class UTC(tzinfo):
9 """UTC"""
15 return "UTC"
20 utc = UTC() variable
23 # Note that FixedOffset(0, "UTC") is a different way to build a
24 # UTC tzinfo object.
27 """Fixed offset in minutes east from UTC."""
  /libcore/ojluni/src/main/java/java/util/
Date.java 58 * coordinated universal time (UTC), it may not do so exactly,
62 * in all cases. In UTC, however, about once every year or two there
74 * distinction between UTC and UT is that UTC is based on an atomic
79 * seconds are introduced as needed into UTC so as to keep UTC within
83 * global positioning system (GPS) is synchronized to UTC but is
153 * and read only the UTC time.
297 * to UTC rather than to the local time zone. The time indicated is
313 * month, date, hrs, min, sec)</code>, using a UTC
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
XMLReporter.java 181 TimeZone utc = TimeZone.getTimeZone("UTC"); local
182 format.setTimeZone(utc);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
TestCLDRVsICU.java 299 static TimeZone utc = TimeZone.getTimeZone("GMT"); field in class:TestCLDRVsICU
302 iso.setTimeZone(utc); external variable declarations
469 dt.setTimeZone(utc);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
TestCLDRVsICU.java 298 static TimeZone utc = TimeZone.getTimeZone("GMT"); field in class:TestCLDRVsICU
301 iso.setTimeZone(utc); external variable declarations
468 dt.setTimeZone(utc);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_datetime.py     [all...]
  /external/python/cpython2/Lib/test/
test_datetime.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_datetime.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_datetime.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_datetime.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_datetime.py     [all...]
  /external/icu/icu4c/source/test/cintltst/
utmstest.c 446 static const UChar utc[] = { 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0 }; /* "Etc/GMT" */ local
458 cal = ucal_open(utc, -1, "", UCAL_GREGORIAN, &errorCode);
461 log_data_err("ucal_open(UTC/proleptic Gregorian) failed: %s - (Are you missing data?)\n", u_errorName(errorCode));
  /external/icu/icu4c/source/test/intltest/
utxttest.cpp 453 UChar32 utc; // code point from UText local
457 utc = utext_next32(targetUT);
458 if (utc < 0) {
462 TEST_ASSERT(utc == usc);
529 UChar32 utc; // code point from UText local
534 utc = utext_next32(targetUT);
535 if (utc < 0) {
539 TEST_ASSERT(utc == usc);
    [all...]
tzbdtest.cpp 293 TimeZone* utc = TimeZone::createTimeZone("UTC"); local
294 Calendar* utccal = Calendar::createInstance(utc, status);
509 zone = TimeZone::createTimeZone("UTC"); // updated 12/3/99 aliu
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneBoundaryTest.java 402 TimeZone utc = safeGetTimeZone("UTC"); local
403 Calendar utccal = Calendar.getInstance(utc);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneBoundaryTest.java 401 TimeZone utc = safeGetTimeZone("UTC"); local
402 Calendar utccal = Calendar.getInstance(utc);
  /prebuilts/go/darwin-x86/src/encoding/asn1/
common.go 102 case part == "utc":
  /prebuilts/go/linux-x86/src/encoding/asn1/
common.go 102 case part == "utc":
  /system/core/liblog/
logprint.c 299 static const char utc[] = "UTC"; variable
346 ((!strcmp(tzname[0], utc) || !strcmp(tzname[0], gmt)) /* error? */
347 && strcasecmp(formatString, utc) &&
    [all...]
  /device/generic/goldfish/gps/
gps_qemu.c 516 struct tm utc; local
534 gmtime_r( (time_t*) &r->fix.timestamp, &utc );
535 p += snprintf(p, end-p, " time=%s", asctime( &utc ) );

Completed in 2299 milliseconds

12 3 4