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

1 2 3

  /external/clang/test/CodeGen/
ppc64-qpx-vector.c 8 struct sdf { v4df v; }; struct
20 v4df foo2(struct sdf a, v4df b, struct sdf2 c) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDateFormatAPIC.java 67 SimpleDateFormat sdf = new SimpleDateFormat(); local
69 str = sdf.format(dateObj);
70 strBuffer = sdf.format(dateObj, strBuffer, fpos);
72 strBuffer = sdf.format(new Date(0), strBuffer, fpos);
73 str = sdf.format(new Date(0));
75 sdf.parse(str);
76 sdf.parse(str, ppos);
DateFormatRegressionTestJ.java 174 SimpleDateFormat sdf = new SimpleDateFormat(); local
180 sdf.applyPattern("MM d y");
181 logln(sdf.format(today));
182 sdf.applyPattern("MM d yy");
183 logln(sdf.format(today));
185 sdf.applyPattern("MM d yyy");
186 logln(sdf.format(today));
188 sdf.applyPattern("MM d yyyy");
189 logln(sdf.format(today));
191 sdf.applyPattern("MM d yyyyy")
198 SimpleDateFormat sdf = new SimpleDateFormat(pattern, Locale.JAPAN); local
225 SimpleDateFormat sdf = new SimpleDateFormat(pattern); local
249 SimpleDateFormat sdf = (SimpleDateFormat) sdf_.clone(); local
276 SimpleDateFormat sdf = (SimpleDateFormat) sdf_.clone(); local
    [all...]
DateFormatRoundTripTest.java 240 SimpleDateFormat sdf = new SimpleDateFormat("EEEE, MMMM d, yyyy HH:mm:ss, z G", Locale.US); local
241 logln("Date = " + sdf.format(d[0]) + "; ms = " + d[0].getTime());
  /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/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...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_variance.h 71 vp9_sad_fn_t sdf; member in struct:vp9_variance_vtable
  /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/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
  /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();
  /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/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;
  /frameworks/base/core/java/android/text/format/
DateFormat.java 196 SimpleDateFormat sdf = (SimpleDateFormat) natural; local
197 String pattern = sdf.toPattern();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Clock.java 154 SimpleDateFormat sdf; local
187 mClockFormat = sdf = new SimpleDateFormat(format);
190 sdf = mClockFormat;
192 String result = sdf.format(mCalendar.getTime());

Completed in 476 milliseconds

1 2 3