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

12 3 4

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestSimpleDateFormatAPI.java 27 import com.ibm.icu.text.DateFormatSymbols;
58 DateFormatSymbols symbols = new DateFormatSymbols(Locale.FRENCH);
111 final DateFormatSymbols syms = pat.getDateFormatSymbols();
115 errln("ERROR: set DateFormatSymbols() failed");
119 DateFormatSymbols has not the method getTwoDigitStartDate();
DateFormatRegressionTestJ.java 20 import com.ibm.icu.text.DateFormatSymbols;
45 DateFormatSymbols dfs = new DateFormatSymbols();
DateFormatTest.java 42 import com.ibm.icu.text.DateFormatSymbols;
317 DateFormatSymbols rootSyms = new DateFormatSymbols(new Locale("", "", ""));
467 * This MUST be kept in sync with DateFormatSymbols.patternChars.
    [all...]
  /external/icu/icu4c/source/i18n/
reldtfmt.h 27 class DateFormatSymbols;
234 virtual const DateFormatSymbols* getDateFormatSymbols(void) const;
smpdtfmt.cpp 17 * Removed getZoneIndex (added in DateFormatSymbols)
401 fSymbols = DateFormatSymbols::createForLocale(fLocale, status);
422 fSymbols = DateFormatSymbols::createForLocale(fLocale, status);
447 fSymbols = DateFormatSymbols::createForLocale(fLocale, status);
470 fSymbols = DateFormatSymbols::createForLocale(fLocale, status);
481 DateFormatSymbols* symbolsToAdopt,
503 const DateFormatSymbols& symbols,
507 fSymbols(new DateFormatSymbols(symbols)),
561 fSymbols = DateFormatSymbols::createForLocale(fLocale, status);
567 fSymbols = new DateFormatSymbols(status)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/ajax/
JSONDateConvertor.java 21 import java.text.DateFormatSymbols;
72 _format = new SimpleDateFormat(format, new DateFormatSymbols(locale));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SimpleDateFormat.java 709 * @see DateFormatSymbols
    [all...]
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp 596 // Get DateFormatSymbols.
598 icu::DateFormatSymbols dateFormatSym(icuLocale.locale(), status);
611 dateFormatSym.getMonths(count, icu::DateFormatSymbols::FORMAT, icu::DateFormatSymbols::WIDE);
614 dateFormatSym.getMonths(count, icu::DateFormatSymbols::FORMAT, icu::DateFormatSymbols::ABBREVIATED);
617 dateFormatSym.getMonths(count, icu::DateFormatSymbols::FORMAT, icu::DateFormatSymbols::NARROW);
620 dateFormatSym.getWeekdays(count, icu::DateFormatSymbols::FORMAT, icu::DateFormatSymbols::WIDE)
    [all...]
  /art/test/092-locale/src/
Main.java 18 import java.text.DateFormatSymbols;
102 DateFormatSymbols syms = DateFormatSymbols.getInstance(usa);
  /external/jetty/src/java/org/eclipse/jetty/util/
DateCache.java 21 import java.text.DateFormatSymbols;
68 private DateFormatSymbols _dfs = null;
101 public DateCache(String format,DateFormatSymbols s)
  /libcore/benchmarks/src/benchmarks/regression/
ExpensiveObjectsBenchmark.java 68 new DateFormatSymbols(Locale.US);
73 DateFormatSymbols dfs = new DateFormatSymbols(Locale.US);
  /packages/apps/DeskClock/src/com/android/deskclock/
FetchMatchingAlarmsAction.java 30 import java.text.DateFormatSymbols;
85 final String[] ampm = new DateFormatSymbols().getAmPmStrings();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
SimpleDateFormatTest.java 20 import java.text.DateFormatSymbols;
58 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(new DateFormatSymbols()));
68 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(new DateFormatSymbols()));
90 // java.text.DateFormatSymbols)
91 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH);
119 new DateFormatSymbols(Locale.GERMAN)));
233 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH);
518 // Test for method java.text.DateFormatSymbols
    [all...]
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 226 private DateFormatSymbols formatData;
240 this.formatData = new DateFormatSymbols(Locale.getDefault());
245 * non-localized pattern and the {@code DateFormatSymbols} and {@code
329 * non-localized pattern and {@code DateFormatSymbols} and the {@code
336 * the DateFormatSymbols.
342 public SimpleDateFormat(String template, DateFormatSymbols value) {
346 formatData = (DateFormatSymbols) value.clone();
351 * non-localized pattern and the {@code DateFormatSymbols} and {@code
367 formatData = new DateFormatSymbols(locale);
414 clone.formatData = (DateFormatSymbols) formatData.clone()
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
FormatTests.java 25 import com.ibm.icu.text.DateFormatSymbols;
60 * The serialized form of a normally created DateFormatSymbols object
712 private static DateFormatSymbols getCannedDateFormatSymbols(ULocale uloc)
714 DateFormatSymbols dfs =new DateFormatSymbols(GregorianCalendar.class, uloc);
725 DateFormatSymbols dfs = getCannedDateFormatSymbols(uloc);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 38 import java.text.DateFormatSymbols;
122 DateFormatSymbols dfs = new DateFormatSymbols();
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
SimpleDateFormatICU.java 12 import java.text.DateFormatSymbols;
134 public DateFormatSymbols getDateFormatSymbols() {
154 public void setDateFormatSymbols(DateFormatSymbols newFormatSymbols) {
155 com.ibm.icu.text.DateFormatSymbols icuDfs = null;
159 // Java 6 uses DateFormatSymbols exclusively for Gregorian
200 // For other calendars, JDK's standard DateFormatSymbols
202 throw new UnsupportedOperationException("JDK DateFormatSymbols cannot be used for the calendar type.");
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 36 import java.text.DateFormatSymbols;
115 DateFormatSymbols dfs = new DateFormatSymbols();
277 reorderPickers(new DateFormatSymbols().getShortMonths());
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
AmPmCirclesView.java 31 import java.text.DateFormatSymbols;
91 String[] amPmTexts = new DateFormatSymbols().getAmPmStrings();
  /libcore/luni/src/main/java/java/util/
Calendar.java 25 import java.text.DateFormatSymbols;
    [all...]
Date.java 25 import java.text.DateFormatSymbols;
504 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
ChineseTest.java 12 import com.ibm.icu.text.DateFormatSymbols;
660 DateFormatSymbols dfsDate = new DateFormatSymbols(new Locale("id", "ID"));
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
BarPlotExampleActivity.java 19 import java.text.DateFormatSymbols;
259 return new StringBuffer(DateFormatSymbols.getInstance().getShortMonths()[month] + " '0" + year);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CalendarTest.java 20 import java.text.DateFormatSymbols;
798 DateFormatSymbols symbols = new DateFormatSymbols(locale);
962 DateFormatSymbols symbols = new DateFormatSymbols(locale);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
RecurrencePickerDialog.java 62 import java.text.DateFormatSymbols;
749 String[] dayOfWeekString = new DateFormatSymbols().getWeekdays();
765 dayOfWeekString = new DateFormatSymbols().getShortWeekdays();
    [all...]

Completed in 1058 milliseconds

12 3 4