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

12 3 4 5

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TimeZoneFormatTest.java 143 SimpleDateFormat sdf = new SimpleDateFormat(PATTERNS[patidx], LOCALES[locidx]); local
153 sdf.setTimeZone(tz);
154 String tzstr = sdf.format(DATES[datidx]);
159 sdf.setTimeZone(unknownZone);
167 sdf.parse(tzstr, outcal, pos);
370 SimpleDateFormat sdf = new SimpleDateFormat(pattern, LOCALES[locidx]); local
415 sdf.setTimeZone(tz);
455 String text = sdf.format(new Date(testTimes[testidx]));
457 Date parsedDate = sdf.parse(text);
800 SimpleDateFormat sdf = new SimpleDateFormat(); local
    [all...]
DateFormatRegressionTest.java 54 SimpleDateFormat sdf = (SimpleDateFormat) DateFormat.getDateInstance(); local
55 String pat = sdf.toPattern();
59 fmtd = sdf.format(today, fmtd, pos);
62 sdf.applyPattern("G yyyy DDD");
64 todayS = sdf.format(today, todayS, pos);
67 today = sdf.parse(todayS.toString());
75 rt = sdf.format(sdf.parse(todayS.toString()), rt, pos);
489 SimpleDateFormat sdf = new SimpleDateFormat("z", Locale.US); local
493 sdf.format(d, buf, fp)
550 SimpleDateFormat sdf = new SimpleDateFormat(); local
584 SimpleDateFormat sdf = new SimpleDateFormat(); 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());
  /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/android_icu4j/src/samples/java/android/icu/samples/text/datetimepatterngenerator/
DateTimePatternGeneratorSample.java 61 SimpleDateFormat sdf = new SimpleDateFormat(pattern, locale); local
63 System.out.printf("%-35s",sdf.format(date));
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/datetimepatterngenerator/
DateTimePatternGeneratorSample.java 60 SimpleDateFormat sdf = new SimpleDateFormat(pattern, locale); local
62 System.out.printf("%-35s",sdf.format(date));
  /libcore/benchmarks/src/benchmarks/regression/
ExpensiveObjectsBenchmark.java 134 SimpleDateFormat sdf = new SimpleDateFormat(); local
136 sdf.clone();
  /external/icu/icu4c/source/test/intltest/
dtfmttst.h 105 virtual void tryPattern(SimpleDateFormat& sdf, UDate d, const char* pattern, UDate expected);
caltest.h 166 SimpleDateFormat *sdf, int32_t times, UErrorCode& status);
168 virtual void loop_addroll(Calendar *cal, /*SimpleDateFormat *sdf, */
tzregts.cpp 148 SimpleDateFormat sdf((UnicodeString)"E d MMM yyyy G HH:mm", status);
153 sdf.setCalendar(cal);
168 sdf.format(cal.getTime(status), str);
185 sdf.format(jan31, str.remove()) + "; transition at " +
186 (trans?sdf.format(trans, str2.remove()):(UnicodeString)"NONE"));
189 sdf.format(mar1, str.remove()) + "; transition at " +
190 (trans?sdf.format(trans, str2.remove()):(UnicodeString)"NONE"));
193 sdf.format(mar31, str.remove()) + "; transition at " +
194 (trans?sdf.format(trans, str2.remove()):(UnicodeString)"NONE"));
398 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)"MM/dd/yyyy HH:mm", status); local
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
icuzdump.cpp 46 sdf = new SimpleDateFormat((UnicodeString)"yyyy-MM-dd EEE HH:mm:ss", Locale::getEnglish(), status);
55 sdf->setTimeZone(*stz);
56 UnicodeString str = sdf->format(time, appendTo);
86 SimpleDateFormat* sdf; member in class:DumpFormatter
  /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
vp9_mcomp.c 532 bestsad = vfp->sdf(what->buf, what->stride,
549 thissad = vfp->sdf(what->buf, what->stride,
560 thissad = vfp->sdf(what->buf, what->stride,
592 thissad = vfp->sdf(what->buf, what->stride,
603 thissad = vfp->sdf(what->buf, what->stride,
630 thissad = vfp->sdf(what->buf, what->stride,
641 thissad = vfp->sdf(what->buf, what->stride,
668 thissad = vfp->sdf(what->buf, what->stride,
679 thissad = vfp->sdf(what->buf, what->stride,
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
TimeZoneTest.java 63 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ"); local
64 Date date = sdf.parse("1902-11-01T00:00:00.000+0800");
71 date = sdf.parse("1902-06-01T00:00:00.000+0800");
103 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ"); local
104 Date date = sdf.parse(isoTime);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatRegressionTest.java 58 SimpleDateFormat sdf = (SimpleDateFormat) DateFormat.getDateInstance(); local
59 String pat = sdf.toPattern();
63 fmtd = sdf.format(today, fmtd, pos);
66 sdf.applyPattern("G yyyy DDD");
68 todayS = sdf.format(today, todayS, pos);
71 today = sdf.parse(todayS.toString());
79 rt = sdf.format(sdf.parse(todayS.toString()), rt, pos);
493 SimpleDateFormat sdf = new SimpleDateFormat("z", Locale.US); local
497 sdf.format(d, buf, fp)
554 SimpleDateFormat sdf = new SimpleDateFormat(); local
588 SimpleDateFormat sdf = new SimpleDateFormat(); local
    [all...]
DateFormatRoundTripTest.java 244 SimpleDateFormat sdf = new SimpleDateFormat("EEEE, MMMM d, yyyy HH:mm:ss, z G", Locale.US); local
245 logln("Date = " + sdf.format(d[0]) + "; ms = " + d[0].getTime());
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 225 SimpleDateFormat sdf = new SimpleDateFormat(pattern); local
226 sdf.setTimeZone(utc);
235 assertEquals(expected, sdf.format(c.getTime()));
  /libcore/ojluni/src/main/java/sun/security/util/
DerOutputStream.java 503 SimpleDateFormat sdf = new SimpleDateFormat(pattern, Locale.US); local
504 sdf.setTimeZone(tz);
505 byte[] time = (sdf.format(d)).getBytes("ISO-8859-1");
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c     [all...]
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 906 bestsad = vfp->sdf(what, what_stride, this_offset, in_what_stride)
933 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride);
944 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride);
970 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride);
981 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride);
1012 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride);
1023 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
mcomp.c 902 bestsad = vfp->sdf(what, what_stride, this_offset, in_what_stride, UINT_MAX)
927 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
938 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
964 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
975 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
1006 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
1017 thissad = vfp->sdf(what, what_stride, this_offset, in_what_stride, bestsad);
    [all...]
  /external/opencv3/samples/android/tutorial-3-cameracontrol/src/org/opencv/samples/tutorial3/
Tutorial3Activity.java 176 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd_HH-mm-ss"); local
177 String currentDateandTime = sdf.format(new Date());
  /packages/apps/Messaging/src/com/android/messaging/util/
LogSaver.java 251 final SimpleDateFormat sdf = new SimpleDateFormat("MM-dd HH:mm:ss.SSS"); local
253 sdf.format(System.currentTimeMillis()),

Completed in 3450 milliseconds

12 3 4 5