HomeSort by relevance Sort by last modified time
    Searched refs:SimpleDateFormat (Results 76 - 100 of 166) sorted by null

1 2 34 5 6 7

  /external/icu4c/i18n/
datefmt.cpp 371 // Try to create a SimpleDateFormat of the desired style.
372 SimpleDateFormat *f = new SimpleDateFormat(timeStyle, dateStyle, locale, status);
379 f = new SimpleDateFormat(locale, status);
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...]
  /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);
  /libcore/luni/src/main/native/
libcore_icu_TimeZones.cpp 98 // because it creates a new SimpleDateFormat each time.
99 // We're better off using SimpleDateFormat directly.
107 SimpleDateFormat longFormat(longPattern, locale, status);
111 SimpleDateFormat shortFormat(commonShortPattern, locale, status);
113 SimpleDateFormat allShortFormat(allShortPattern, locale, status);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveCopyTask.java 46 import java.text.SimpleDateFormat;
118 saveFileName = new SimpleDateFormat(TIME_STAMP_NAME).format(new Date(
135 String filename = new SimpleDateFormat(TIME_STAMP_NAME).format(new Date(
  /external/icu4c/test/intltest/
dtfmtrtts.cpp 93 SimpleDateFormat fmt(pattern, locale, status);
95 dataerrln("Fail: construct SimpleDateFormat: %s", u_errorName(status));
281 if(fmt->getDynamicClassID() != SimpleDateFormat::getStaticClassID()) {
282 errln("DateFormat wasn't a SimpleDateFormat");
295 pat = ((SimpleDateFormat*)fmt)->toPattern(pat);
482 dateFormat = new SimpleDateFormat((UnicodeString)"EEE MMM dd HH:mm:ss.SSS zzz yyyy G", ec);
484 fgStr = "[FAIL: SimpleDateFormat constructor]";
dadrfmt.cpp 99 SimpleDateFormat basicFmt(UnicodeString("EEE MMM dd yyyy / YYYY'-W'ww-ee"),
102 dataerrln("FAIL: Couldn't create basic SimpleDateFormat: %s",
157 format = new SimpleDateFormat(pattern, loc, status);
159 errln("case %d: could not create SimpleDateFormat from pattern: %s", n, u_errorName(status));
169 errln("case %d: could not create SimpleDateFormat from styles.", n);
tsdate.cpp 141 // Assume it's a SimpleDateFormat and get some info
142 SimpleDateFormat *s = (SimpleDateFormat*)fFormat;
tzregts.cpp 148 SimpleDateFormat sdf((UnicodeString)"E d MMM yyyy G HH:mm", status);
154 failure(status, "new SimpleDateFormat");
398 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)"MM/dd/yyyy HH:mm", status);
843 SimpleDateFormat *fmt = new SimpleDateFormat("z", Locale::getUS(), status);
    [all...]
tzfmttst.cpp 111 SimpleDateFormat gmtFmt(UnicodeString("ZZZZ"), LOCALES[locidx], status);
117 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], status);
119 errcheckln(status, (UnicodeString)"new SimpleDateFormat failed for pattern " +
137 // Before parse, set unknown zone to SimpleDateFormat instance
327 SimpleDateFormat *sdf = new SimpleDateFormat(pattern, data.locales[locidx], status);
329 log.errcheckln(status, (UnicodeString) "new SimpleDateFormat failed for pattern " +
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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
CarrierLabel.java 31 import java.text.SimpleDateFormat;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Utils.java 42 import java.text.SimpleDateFormat;
192 private final SimpleDateFormat mDateFormat;
196 mDateFormat = new SimpleDateFormat("yyyyMMdd-HHmmss.SSSZ");
300 new SimpleDateFormat("yyyyMMdd-HHmmssZ").format(date);
  /development/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");
  /external/icu4c/i18n/unicode/
dtfmtsym.h 38 class SimpleDateFormat;
44 * DateFormat and SimpleDateFormat.
47 * by using a SimpleDateFormat constructor, clients are encouraged to create a
57 * pattern and locale, they can do so with new SimpleDateFormat(aPattern,
410 * <p><b>Note:</b> SimpleDateFormat no longer use the zone strings stored in
412 * have no effects in an instance of SimpleDateFormat for formatting time
471 friend class SimpleDateFormat;
  /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/support/volley/tests/src/com/android/volley/toolbox/
HttpHeaderParserTest.java 25 import java.text.SimpleDateFormat;
154 DateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz");
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 38 import java.text.SimpleDateFormat;
161 mTitleNoYearDateFormat = new SimpleDateFormat(
DatePicker.java 44 import java.text.SimpleDateFormat;
234 if (format instanceof SimpleDateFormat) {
235 order = ((SimpleDateFormat) format).toPattern();
  /frameworks/base/core/java/android/text/format/
DateFormat.java 32 import java.text.SimpleDateFormat;
43 of format strings, see {@link java.text.SimpleDateFormat}.
49 Use {@link java.text.SimpleDateFormat} if you need more.
237 if (natural instanceof SimpleDateFormat) {
238 SimpleDateFormat sdf = (SimpleDateFormat) natural;
277 return new java.text.SimpleDateFormat(context.getString(res));
307 return new java.text.SimpleDateFormat(format);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
VideoEditorHelper.java 22 import java.text.SimpleDateFormat;
430 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmssS");
  /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;
664 SimpleDateFormat sdf = new SimpleDateFormat("d MMM y HH:mm:ss 'GMT'", Locale.US);
684 * The formatting is equivalent to using a {@code SimpleDateFormat} with
688 * use {@code SimpleDateFormat} instead.
694 // return new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy").format(d);
  /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");

Completed in 3046 milliseconds

1 2 34 5 6 7