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

1 2

  /external/srtp/crypto/replay/
ut_sim.c 57 ut_init(ut_connection *utc) {
59 utc->index = 0;
62 utc->buffer[i] = i;
64 qsort(utc->buffer, UT_BUF, sizeof(uint32_t), ut_compar);
66 utc->index = UT_BUF - 1;
70 ut_next_index(ut_connection *utc) {
73 tmp = utc->buffer[0];
74 utc->index++;
75 utc->buffer[0] = utc->index
91 ut_connection utc; local
    [all...]
  /external/srtp/include/
ut_sim.h 69 ut_init(ut_connection *utc);
77 ut_next_index(ut_connection *utc);
  /external/smack/src/org/jivesoftware/smackx/packet/
Time.java 68 private String utc = null; field in class:Time
89 // Convert local time to the UTC time.
90 utc = utcFormat.format(new Date(
100 if (utc == null) {
106 // Convert the UTC time to local time.
107 cal.setTime(new Date(utcFormat.parse(utc).getTime() +
123 // Convert local time to UTC time.
124 utc = utcFormat.format(new Date(
129 * Returns the time as a UTC formatted String using the format CCYYMMDDThh:mm:ss.
131 * @return the time as a UTC formatted String
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
DateIntervalFormatBenchmark.java 29 TimeZone utc = TimeZone.getTimeZone("UTC"); local
33 formatDateRange(l, utc, 0L, 0L, flags);
39 TimeZone utc = TimeZone.getTimeZone("UTC"); local
43 formatDateRange(l, utc, 0L, 0L, flags);
49 TimeZone utc = TimeZone.getTimeZone("UTC"); local
53 formatDateRange(l, utc, 0L, 0L, flags);
  /libcore/luni/src/test/java/libcore/icu/
DateIntervalFormatTest.java 187 TimeZone utc = TimeZone.getTimeZone("UTC"); local
191 // The Unix epoch is UTC, so 0 is 1970-01-01T00:00Z...
192 assertEquals("Jan 1, 1970, 00:00 ? Jan 2, 1970, 00:00", formatDateRange(l, utc, 0, DAY + 1, flags));
209 TimeZone utc = TimeZone.getTimeZone("UTC"); local
212 assertEquals("00:00", formatDateRange(l, utc, midnight, midnight, time24));
213 assertEquals("12:00 AM", formatDateRange(l, utc, midnight, midnight, time12));
214 assertEquals("16:00", formatDateRange(l, utc, teaTime, teaTime, time24));
215 assertEquals("4:00 PM", formatDateRange(l, utc, teaTime, teaTime, time12))
236 TimeZone utc = TimeZone.getTimeZone("UTC"); local
260 TimeZone utc = TimeZone.getTimeZone("UTC"); local
272 TimeZone utc = TimeZone.getTimeZone("UTC"); local
295 TimeZone utc = TimeZone.getTimeZone("UTC"); local
    [all...]
  /external/srtp/test/
roc_driver.c 87 ut_connection utc; local
124 ut_init(&utc);
129 ircvd = ut_next_index(&utc);
replay_driver.c 133 ut_connection utc; local
162 ut_init(&utc);
165 ircvd = ut_next_index(&utc);
rdbx_driver.c 215 ut_connection utc; local
269 ut_init(&utc);
273 ircvd = ut_next_index(&utc);
  /external/smack/src/org/jivesoftware/smack/util/
StringUtils.java 47 * UTC.
86 TimeZone utc = TimeZone.getTimeZone("UTC"); typedefs
87 XEP_0082_UTC_FORMAT.setTimeZone(utc); typedefs
88 dateFormatter.setTimeZone(utc); typedefs
89 timeFormatter.setTimeZone(utc); typedefs
90 timeNoZoneFormatter.setTimeZone(utc); typedefs
91 timeNoMillisFormatter.setTimeZone(utc); typedefs
92 timeNoMillisNoZoneFormatter.setTimeZone(utc); typedefs
93 dateTimeFormatter.setTimeZone(utc); typedefs
94 dateTimeNoMillisFormatter.setTimeZone(utc); typedefs
96 xep0091Formatter.setTimeZone(utc); typedefs
97 xep0091Date6DigitFormatter.setTimeZone(utc); typedefs
98 xep0091Date7Digit1MonthFormatter.setTimeZone(utc); typedefs
100 xep0091Date7Digit2MonthFormatter.setTimeZone(utc); typedefs
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSync.java 283 String utc = formatDateTime(calendar); local
284 s.data(Tags.TASK_START_DATE, utc).data(Tags.TASK_UTC_START_DATE, utc);
287 utc = formatDateTime(calendar);
288 s.data(Tags.TASK_DUE_DATE, utc).data(Tags.TASK_UTC_DUE_DATE, utc);
  /libcore/luni/src/test/java/libcore/java/util/
FormatterTest.java 166 TimeZone utc = TimeZone.getTimeZone("UTC"); local
168 Calendar c = new GregorianCalendar(utc);
  /external/chromium_org/third_party/icu/source/test/intltest/
tzoffloc.cpp 121 TimeZone* utc = TimeZone::createTimeZone("UTC"); local
122 Calendar* cal = Calendar::createInstance(*utc, status);
198 df.setTimeZone(*utc);
325 delete utc;
  /external/icu4c/test/intltest/
tzoffloc.cpp 121 TimeZone* utc = TimeZone::createTimeZone("UTC"); local
122 Calendar* cal = Calendar::createInstance(*utc, status);
198 df.setTimeZone(*utc);
325 delete utc;
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 192 TimeZone utc = TimeZone.getTimeZone("UTC"); local
194 Calendar c = new GregorianCalendar(utc);
198 sdf.setTimeZone(utc);
  /external/chromium_org/v8/src/
platform-cygwin.cc 69 time_t utc = time(NULL); local
70 ASSERT(utc != -1);
71 struct tm* loc = localtime(&utc);
74 return static_cast<double>((mktime(loc) - utc) * msPerSecond -
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_time.py 153 utc='UTC+0'
157 # Make sure we can switch to UTC time and results are correct
158 # Note that unknown timezones default to UTC.
159 # Note that altzone is undefined in UTC, as there is no DST
162 environ['TZ'] = utc
188 # Issue #11886: Australian Eastern Standard Time (UTC+10) is called
189 # "EST" (as Eastern Standard Time, UTC-5) instead of "AEST" on some
test_datetime.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_time.py 153 utc='UTC+0'
157 # Make sure we can switch to UTC time and results are correct
158 # Note that unknown timezones default to UTC.
159 # Note that altzone is undefined in UTC, as there is no DST
162 environ['TZ'] = utc
188 # Issue #11886: Australian Eastern Standard Time (UTC+10) is called
189 # "EST" (as Eastern Standard Time, UTC-5) instead of "AEST" on some
test_datetime.py     [all...]
  /external/qemu/telephony/
android_modem.c 1888 struct tm utc, local; local
    [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...]
  /external/v8/src/
platform-cygwin.cc 112 time_t utc = time(NULL); local
113 ASSERT(utc != -1);
114 struct tm* loc = localtime(&utc);
117 return static_cast<double>((mktime(loc) - utc) * msPerSecond -
platform-solaris.cc 141 time_t utc = time(NULL); local
142 ASSERT(utc != -1);
143 struct tm* loc = localtime(&utc);
145 return static_cast<double>((mktime(loc) - utc) * msPerSecond);
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint.cc 54 // Returns the delta between the local timezone and UTC.
56 const base::Time utc = base::Time::Now(); local
59 utc.LocalExplode(&local);
61 return base::Time::FromUTCExploded(local) - utc;

Completed in 361 milliseconds

1 2