HomeSort by relevance Sort by last modified time
    Searched defs:sdf (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DerGeneralizedTimeEDTest.java 82 SimpleDateFormat sdf = local
84 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
85 myDate = sdf.parse("06.06.2004 00:00");
GeneralizedTimeTest.java 51 SimpleDateFormat sdf = new SimpleDateFormat("dd MMM yyyy HH:mm:ss", Locale.US); typedefs
52 sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
90 validGeneralizedTimes[i][2] = sdf
UTCTimeTest.java 48 SimpleDateFormat sdf = new SimpleDateFormat("dd MMM yyyy HH:mm:ss", Locale.US); typedefs
49 sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
81 validUTCTimes[i][2] = sdf
DerUTCTimeEDTest.java 64 SimpleDateFormat sdf = local
66 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
67 myDate = sdf.parse("06.06.2004 00:00");
  /external/chromium_org/third_party/icu/source/samples/dtptngsample/
dtptngsample.cpp 56 SimpleDateFormat *sdf = new SimpleDateFormat(pattern,locales[j],status); local
59 sdf->format(date,dateReturned,status);
63 delete sdf;
104 SimpleDateFormat *sdf = new SimpleDateFormat(dtfg->getBestPattern("MMMMddHmm",status),locale,status); local
108 sdf->applyPattern(dtfg->getBestPattern("MMMMddHmm",status));
109 dateReturned = sdf->format(date, dateReturned, status);
110 pattern =sdf->toPattern(pattern);
116 delete sdf;
145 SimpleDateFormat *sdf = new SimpleDateFormat("EEEE d MMMM y HH:mm:ss zzzz",locale,status); local
146 sdf->setTimeZone(*zone)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_variance.h 88 vp9_sad_fn_t sdf; member in struct:vp9_variance_vtable
  /external/icu/icu4c/source/samples/dtptngsample/
dtptngsample.cpp 56 SimpleDateFormat *sdf = new SimpleDateFormat(pattern,locales[j],status); local
59 sdf->format(date,dateReturned,status);
63 delete sdf;
89 SimpleDateFormat *sdf = new SimpleDateFormat(dtfg->getBestPattern("MMMMddHmm",status),locale,status); local
93 sdf->applyPattern(dtfg->getBestPattern("MMMMddHmm",status));
94 dateReturned = sdf->format(date, dateReturned, status);
95 pattern =sdf->toPattern(pattern);
101 delete sdf;
130 SimpleDateFormat *sdf = new SimpleDateFormat("EEEE d MMMM y HH:mm:ss zzzz",locale,status); local
131 sdf->setTimeZone(*zone)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1GeneralizedTime.java 87 SimpleDateFormat sdf = new SimpleDateFormat(GEN_PATTERN, Locale.US); local
88 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
89 String temp = sdf.format(out.content);
ASN1UTCTime.java 98 SimpleDateFormat sdf = new SimpleDateFormat(UTC_PATTERN, Locale.US); local
99 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
100 out.content = sdf.format(out.content).getBytes(StandardCharsets.UTF_8);
  /libcore/luni/src/test/java/libcore/java/text/
SimpleDateFormatTest.java 36 SimpleDateFormat sdf = new SimpleDateFormat(); local
37 Date originalDate = sdf.get2DigitYearStart();
38 assertNotSame(sdf.get2DigitYearStart(), originalDate);
39 assertEquals(sdf.get2DigitYearStart(), originalDate);
41 assertFalse(sdf.get2DigitYearStart().equals(originalDate));
44 sdf.set2DigitYearStart(newDate);
45 assertNotSame(sdf.get2DigitYearStart(), newDate);
46 assertEquals(sdf.get2DigitYearStart(), newDate);
48 assertFalse(sdf.get2DigitYearStart().equals(newDate));
186 SimpleDateFormat sdf = new SimpleDateFormat(fmt, l) local
193 SimpleDateFormat sdf = new SimpleDateFormat(fmt, l); local
228 SimpleDateFormat sdf = new SimpleDateFormat(fmt, cetUnambiguousLocale); local
249 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z"); local
317 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss zzzz", l); local
330 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", new Locale("ar", "EG")); local
348 SimpleDateFormat sdf = new SimpleDateFormat("d. MMM yyyy H:mm", Locale.GERMAN); local
356 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S"); local
    [all...]
DateFormatSymbolsTest.java 80 SimpleDateFormat sdf = new SimpleDateFormat(fmt, l); local
81 sdf.setDateFormatSymbols(dfs);
82 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
83 return sdf.format(new Date(0));
  /external/chromium_org/third_party/icu/source/test/perf/normperf/
dtfmtrtperf.h 152 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], *status); local
170 sdf->setTimeZone(*tz);
171 sdf->format(DATES[datidx], tzstr, fpos);
176 sdf->setTimeZone(unknownZone);
188 sdf->parse(tzstr, *outcal, pos);
199 delete sdf;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
variance.h 105 vp8_sad_fn_t sdf; member in struct:variance_vtable
  /external/icu/icu4c/source/test/perf/normperf/
dtfmtrtperf.h 152 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], *status); local
170 sdf->setTimeZone(*tz);
171 sdf->format(DATES[datidx], tzstr, fpos);
176 sdf->setTimeZone(unknownZone);
188 sdf->parse(tzstr, *outcal, pos);
199 delete sdf;
  /external/libvpx/libvpx/vp8/common/
variance.h 105 vp8_sad_fn_t sdf; member in struct:variance_vtable
  /external/libvpx/libvpx/vp9/encoder/
vp9_variance.h 90 vp9_sad_fn_t sdf; member in struct:vp9_variance_vtable
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
variance.h 105 vp8_sad_fn_t sdf; member in struct:variance_vtable
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_variance.h 90 vp9_sad_fn_t sdf; member in struct:vp9_variance_vtable
  /libcore/benchmarks/src/benchmarks/regression/
ExpensiveObjectsBenchmark.java 132 SimpleDateFormat sdf = new SimpleDateFormat(); local
134 sdf.clone();
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 197 SimpleDateFormat sdf = new SimpleDateFormat(pattern); local
198 sdf.setTimeZone(utc);
207 assertEquals(expected, sdf.format(c.getTime()));
  /developers/build/prebuilts/gradle/SynchronizedNotifications/Application/src/main/java/com/example/android/wearable/synchronizednotifications/
SynchronizedNotificationsFragment.java 194 SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()); local
195 return sdf.format(new Date());
  /developers/samples/android/wearable/wear/SynchronizedNotifications/Application/src/main/java/com/example/android/wearable/synchronizednotifications/
SynchronizedNotificationsFragment.java 194 SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()); local
195 return sdf.format(new Date());
  /development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.wearable.synchronizednotifications/
SynchronizedNotificationsFragment.java 194 SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault()); local
195 return sdf.format(new Date());
  /external/chromium_org/third_party/icu/source/i18n/
reldtfmt.cpp 87 SimpleDateFormat *sdf = dynamic_cast<SimpleDateFormat *>(df); local
88 if (sdf != NULL) {
89 sdf->toPattern(fTimePattern);
90 delete sdf;
  /external/icu/icu4c/source/i18n/
reldtfmt.cpp 103 SimpleDateFormat *sdf = dynamic_cast<SimpleDateFormat *>(df); local
104 if (sdf != NULL) {
105 sdf->toPattern(fTimePattern);
106 delete sdf;

Completed in 1062 milliseconds

1 2 3