HomeSort by relevance Sort by last modified time
    Searched refs:SimpleDateFormat (Results 151 - 175 of 285) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java 44 import java.text.SimpleDateFormat;
223 DateFormat formatter = new SimpleDateFormat("MMM dd h:mmaa");
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HttpHeaderParserTest.java 25 import java.text.SimpleDateFormat;
165 DateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz");
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
SaveVideoFileUtils.java 32 import java.text.SimpleDateFormat;
50 dstFileInfo.mFileName = new SimpleDateFormat(fileNameFormat).format(
  /external/icu/icu4c/source/i18n/
reldtfmt.cpp 56 fDateTimeFormatter = (SimpleDateFormat*)other.fDateTimeFormatter->clone();
95 fDateTimeFormatter=dynamic_cast<SimpleDateFormat *>(df);
103 SimpleDateFormat *sdf = dynamic_cast<SimpleDateFormat *>(df);
112 fDateTimeFormatter=dynamic_cast<SimpleDateFormat *>(df);
583 // this should to be in DateFormat, instead it was copied from SimpleDateFormat.
dtitvfmt.cpp 85 ((SimpleDateFormat*)dtfmt)->toPattern(pat);
144 fDateFormat = (SimpleDateFormat*)itvfmt.fDateFormat->clone();
478 SimpleDateFormat* dtfmt = createSDFPatternInstance(*skeleton, locale,
510 SimpleDateFormat* U_EXPORT2
524 SimpleDateFormat* dtfmt = new SimpleDateFormat(pattern, locale, status);
    [all...]
datefmt.cpp 382 // Try to create a SimpleDateFormat of the desired style.
383 SimpleDateFormat *f = new SimpleDateFormat(timeStyle, dateStyle, locale, status);
390 f = new SimpleDateFormat(locale, status);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DatePickerDialog.java 43 import java.text.SimpleDateFormat;
77 private static SimpleDateFormat YEAR_FORMAT = new SimpleDateFormat("yyyy", Locale.getDefault());
78 private static SimpleDateFormat DAY_FORMAT = new SimpleDateFormat("dd", Locale.getDefault());
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CRLTest.java 38 import java.text.SimpleDateFormat;
125 final SimpleDateFormat sdf = new SimpleDateFormat("MMM dd HH:mm:ss yyyy zzz", Locale.US);
313 SimpleDateFormat formatter = new SimpleDateFormat("dd MMM yyyy HH:mm:ss");
  /external/chromium_org/third_party/icu/source/i18n/
dtitvfmt.cpp 85 ((SimpleDateFormat*)dtfmt)->toPattern(pat);
144 fDateFormat = (SimpleDateFormat*)itvfmt.fDateFormat->clone();
434 SimpleDateFormat* dtfmt = createSDFPatternInstance(*skeleton, locale,
466 SimpleDateFormat* U_EXPORT2
480 SimpleDateFormat* dtfmt = new SimpleDateFormat(pattern, locale, status);
    [all...]
  /external/icu/icu4c/source/test/intltest/
tzfmttst.cpp 155 SimpleDateFormat gmtFmt(UnicodeString("ZZZZ"), LOCALES[locidx], status);
157 dataerrln("Error creating SimpleDateFormat - %s", u_errorName(status));
165 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], status);
167 dataerrln((UnicodeString)"new SimpleDateFormat failed for pattern " +
185 // Before parse, set unknown zone to SimpleDateFormat instance
426 SimpleDateFormat *sdf = new SimpleDateFormat(pattern, data.locales[locidx], status);
428 log.errcheckln(status, (UnicodeString) "new SimpleDateFormat failed for pattern " +
    [all...]
dadrcal.cpp 88 SimpleDateFormat fmt(UnicodeString("EEE MMM dd yyyy / YYYY'-W'ww-ee"),
91 dataerrln("FAIL: Couldn't create SimpleDateFormat: %s",
352 SimpleDateFormat fmt(UnicodeString("EEE MMM dd yyyy G"), status);
383 SimpleDateFormat fmt(UnicodeString("EEE MMM dd yyyy / YYYY'-W'ww-ee"),
386 errcheckln(status, "FAIL: Couldn't create SimpleDateFormat: %s",
  /frameworks/base/core/java/android/widget/
DatePickerCalendarDelegate.java 42 import java.text.SimpleDateFormat;
67 private SimpleDateFormat mYearFormat = new SimpleDateFormat("y", Locale.getDefault());
68 private SimpleDateFormat mDayFormat = new SimpleDateFormat("d", Locale.getDefault());
527 mYearFormat = new SimpleDateFormat("y", newConfig.locale);
528 mDayFormat = new SimpleDateFormat("d", newConfig.locale);
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcal.cpp 88 SimpleDateFormat fmt(UnicodeString("EEE MMM dd yyyy / YYYY'-W'ww-ee"),
91 dataerrln("FAIL: Couldn't create SimpleDateFormat: %s",
352 SimpleDateFormat fmt(UnicodeString("EEE MMM dd yyyy G"), status);
383 SimpleDateFormat fmt(UnicodeString("EEE MMM dd yyyy / YYYY'-W'ww-ee"),
386 errcheckln(status, "FAIL: Couldn't create SimpleDateFormat: %s",
dtifmtts.cpp     [all...]
  /frameworks/base/core/java/android/hardware/camera2/
DngCreator.java 34 import java.text.SimpleDateFormat;
432 private static final DateFormat sExifGPSDateStamp = new SimpleDateFormat(GPS_DATE_FORMAT_STR);
434 new SimpleDateFormat(TIFF_DATETIME_FORMAT);
  /frameworks/base/core/java/android/net/http/
SslCertificate.java 36 import java.text.SimpleDateFormat;
48 * SimpleDateFormat pattern for an ISO 8601 date
309 return new SimpleDateFormat(ISO_8601_DATE_FORMAT).parse(string);
322 return new SimpleDateFormat(ISO_8601_DATE_FORMAT).format(date);
  /frameworks/base/core/java/android/text/format/
DateFormat.java 32 import java.text.SimpleDateFormat;
45 * of format strings, see {@link java.text.SimpleDateFormat}.
57 * <p>See {@link java.text.SimpleDateFormat} for more documentation
60 * {@code SimpleDateFormat}.
88 * @deprecated Use a literal {@code 'H'} (for compatibility with {@link SimpleDateFormat}
146 if (natural instanceof SimpleDateFormat) {
147 SimpleDateFormat sdf = (SimpleDateFormat) natural;
195 * @return a string pattern suitable for use with {@link java.text.SimpleDateFormat}.
208 return new java.text.SimpleDateFormat(getTimeFormatString(context))
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifTag.java 20 import java.text.SimpleDateFormat;
105 private static final SimpleDateFormat TIME_FORMAT = new SimpleDateFormat("yyyy:MM:dd kk:mm:ss");
527 // synchronized on TIME_FORMAT as SimpleDateFormat is not thread safe
    [all...]
  /frameworks/base/services/usage/java/com/android/server/usage/
UserUsageStatsService.java 33 import java.text.SimpleDateFormat;
45 private static final SimpleDateFormat sDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 37 import java.text.SimpleDateFormat;
222 if (format instanceof SimpleDateFormat) {
223 order = ((SimpleDateFormat) format).toPattern();
  /libcore/luni/src/main/java/java/util/
Date.java 26 import java.text.SimpleDateFormat;
672 SimpleDateFormat sdf = new SimpleDateFormat("d MMM y HH:mm:ss 'GMT'", Locale.US);
692 * The formatting is equivalent to using a {@code SimpleDateFormat} with
696 * use {@code SimpleDateFormat} instead.
702 // return new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy").format(d);
  /libcore/luni/src/test/java/libcore/java/util/
TimeZoneTest.java 19 import java.text.SimpleDateFormat;
63 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 22 import java.text.SimpleDateFormat;
735 SimpleDateFormat df = new SimpleDateFormat("EE, dd MMM yyyy HH:mm:ss");
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapbMessageTest.java 7 import java.text.SimpleDateFormat;
110 SimpleDateFormat format = new SimpleDateFormat("yyMMddHHmmss");
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifTag.java 20 import java.text.SimpleDateFormat;
105 private static final SimpleDateFormat TIME_FORMAT = new SimpleDateFormat("yyyy:MM:dd kk:mm:ss");
527 // synchronized on TIME_FORMAT as SimpleDateFormat is not thread safe
    [all...]

Completed in 762 milliseconds

1 2 3 4 5 67 8 91011>>