/libcore/luni/src/main/java/java/text/spi/ |
DateFormatProvider.java | 72 * @param timeStyle the given time formatting style. 80 public abstract DateFormat getDateTimeInstance(int dateStyle, int timeStyle, Locale locale);
|
/external/icu4c/test/intltest/ |
tsdate.cpp | 69 DateFormat::EStyle timeStyle, dateStyle; 76 for(timeStyle = (DateFormat::EStyle)0; 77 timeStyle < (DateFormat::EStyle)4; 78 timeStyle = (DateFormat::EStyle) (timeStyle+1)) 80 fTestName = (UnicodeString) "Time test " + (int32_t) timeStyle + " (" + localeName + ")"; 81 fFormat = DateFormat::createTimeInstance(timeStyle, locale); 100 for(timeStyle = (DateFormat::EStyle)0; 101 timeStyle < (DateFormat::EStyle)4; 102 timeStyle = (DateFormat::EStyle) (timeStyle+1) [all...] |
/libcore/luni/src/main/java/java/text/ |
DateFormat.java | 481 * @param timeStyle 484 * {@code timeStyle} and the default locale. 486 * if {@code dateStyle} or {@code timeStyle} is not one of 489 public static final DateFormat getDateTimeInstance(int dateStyle, int timeStyle) { 490 checkTimeStyle(timeStyle); 492 return getDateTimeInstance(dateStyle, timeStyle, Locale.getDefault()); 501 * @param timeStyle 506 * {@code timeStyle} and {@code locale}. 508 * if {@code dateStyle} or {@code timeStyle} is not one of 511 public static final DateFormat getDateTimeInstance(int dateStyle, int timeStyle, Locale locale) [all...] |
/external/icu4c/i18n/ |
datefmt.cpp | 323 EStyle timeStyle, 330 return create(timeStyle, dateStyle, aLocale); 344 DateFormat::create(EStyle timeStyle, EStyle dateStyle, const Locale& locale) 353 Win32DateFormat *f = new Win32DateFormat(timeStyle, dateStyle, locale, status); 364 if(/*((timeStyle!=UDAT_NONE)&&(timeStyle & UDAT_RELATIVE)) || */((dateStyle!=kNone)&&((dateStyle-kDateOffset) & UDAT_RELATIVE))) { 365 RelativeDateFormat *r = new RelativeDateFormat((UDateFormatStyle)timeStyle, (UDateFormatStyle)(dateStyle-kDateOffset), locale, status); 372 SimpleDateFormat *f = new SimpleDateFormat(timeStyle, dateStyle, locale, status);
|
windtfmt.h | 43 Win32DateFormat(DateFormat::EStyle timeStyle, DateFormat::EStyle dateStyle, const Locale &locale, UErrorCode &status);
|
reldtfmt.h | 42 RelativeDateFormat( UDateFormatStyle timeStyle, UDateFormatStyle dateStyle, const Locale& locale, UErrorCode& status);
|
windtfmt.cpp | 95 // TODO: Range-check timeStyle, dateStyle 96 Win32DateFormat::Win32DateFormat(DateFormat::EStyle timeStyle, DateFormat::EStyle dateStyle, const Locale &locale, UErrorCode &status) 97 : DateFormat(), fDateTimeMsg(NULL), fTimeStyle(timeStyle), fDateStyle(dateStyle), fLocale(&locale), fZoneID()
|
reldtfmt.cpp | 66 RelativeDateFormat::RelativeDateFormat( UDateFormatStyle timeStyle, UDateFormatStyle dateStyle, const Locale& locale, UErrorCode& status) 68 fDateStyle(dateStyle), fTimeStyle(timeStyle), fLocale(locale), fDatesLen(0), fDates(NULL)
|
udat.cpp | 86 udat_open(UDateFormatStyle timeStyle, 99 if(timeStyle != UDAT_IGNORE) { 102 (DateFormat::EStyle)timeStyle); 106 (DateFormat::EStyle)timeStyle,
|
smpdtfmt.cpp | 331 SimpleDateFormat::SimpleDateFormat(EStyle timeStyle, 341 construct(timeStyle, dateStyle, fLocale, status); 451 void SimpleDateFormat::construct(EStyle timeStyle, 496 if ((timeStyle != kNone) && (dateStyle != kNone)) 504 currentBundle = ures_getByIndex(dateTimePatterns, (int32_t)timeStyle, NULL, &status); 581 else if (timeStyle != kNone) { 582 currentBundle = ures_getByIndex(dateTimePatterns, (int32_t)timeStyle, NULL, &status); [all...] |
/external/icu4c/i18n/unicode/ |
datefmt.h | 526 * @param timeStyle The given formatting style for the time portion of the result. 534 EStyle timeStyle = kDefault, 679 * @param timeStyle the given time formatting style. 683 static DateFormat* U_EXPORT2 create(EStyle timeStyle, EStyle dateStyle, const Locale&);
|
smpdtfmt.h | [all...] |
udat.h | 516 * @param timeStyle The style used to format times; one of UDAT_FULL, UDAT_LONG, 534 udat_open(UDateFormatStyle timeStyle, [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
DatePrototype.cpp | 151 CFDateFormatterStyle timeStyle = (format != LocaleDate ? kCFDateFormatterLongStyle : kCFDateFormatterNoStyle); 162 timeStyle = styleFromArgString(exec->argument(1).toString(exec), timeStyle); 166 timeStyle = styleFromArgString(arg0String, timeStyle); 169 CFDateFormatterRef formatter = CFDateFormatterCreate(0, locale, dateStyle, timeStyle); [all...] |
/frameworks/base/core/java/android/text/format/ |
DateUtils.java | [all...] |
/prebuilt/sdk/6/ |
android.jar | |
/prebuilt/sdk/10/ |
android.jar | |
/prebuilt/sdk/11/ |
android.jar | |
/prebuilt/sdk/13/ |
android.jar | |
/prebuilt/sdk/5/ |
android.jar | |
/prebuilt/sdk/7/ |
android.jar | |
/prebuilt/sdk/8/ |
android.jar | |
/prebuilt/sdk/9/ |
android.jar | |
/prebuilt/sdk/12/ |
android.jar | |
/prebuilt/sdk/14/ |
android.jar | |