HomeSort by relevance Sort by last modified time
    Searched full:ampm (Results 1 - 25 of 33) sorted by null

1 2

  /packages/apps/DeskClock/src/com/android/deskclock/
DigitalClock.java 47 private AmPm mAmPm;
72 static class AmPm {
76 AmPm(View parent) {
79 String[] ampm = new DateFormatSymbols().getAmPmStrings(); local
80 mAmString = ampm[0];
81 mPmString = ampm[1];
122 mAmPm = new AmPm(this);
  /frameworks/base/core/java/com/android/internal/widget/
DigitalClock.java 50 private AmPm mAmPm;
73 static class AmPm {
77 AmPm(View parent, Typeface tf) {
83 String[] ampm = new DateFormatSymbols().getAmPmStrings(); local
84 mAmString = ampm[0];
85 mPmString = ampm[1];
122 mAmPm = new AmPm(this, Typeface.createFromFile("/system/fonts/DroidSans-Bold.ttf"));
  /libcore/luni/src/main/java/com/ibm/icu4jni/util/
LocaleData.java 40 public String[] amPm;
136 "amPm=" + Arrays.toString(amPm) + "," +
181 if (overrides.amPm != null) {
182 amPm = overrides.amPm;
  /frameworks/base/core/res/res/layout/
time_picker.xml 49 android:id="@+id/amPm"
  /frameworks/base/core/java/android/widget/
TimePicker.java 143 mAmPmButton = (Button) findViewById(R.id.amPm);
  /external/chromium/third_party/icu/public/i18n/unicode/
dtfmtsym.h 394 * Sets ampm strings. For example: "AM" and "PM".
395 * @param ampms the new ampm strings. (not adopted; caller retains ownership)
563 * Ampm strings. For example: "AM" and "PM".
  /external/icu4c/i18n/unicode/
dtfmtsym.h 394 * Sets ampm strings. For example: "AM" and "PM".
395 * @param ampms the new ampm strings. (not adopted; caller retains ownership)
563 * Ampm strings. For example: "AM" and "PM".
  /frameworks/base/core/java/android/text/format/
DateUtils.java 330 * @param ampm Either {@link Calendar#AM Calendar.AM} or {@link Calendar#PM Calendar.PM}.
331 * @throws IndexOutOfBoundsException if the ampm is out of bounds.
334 public static String getAMPMString(int ampm) {
336 return r.getString(sAmPm[ampm - Calendar.AM]);
    [all...]
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 110 this.ampms = localeData.amPm;
  /libcore/luni/src/main/native/
ICU.cpp 438 setStringArrayField(env, localeData, "amPm", getAmPmMarkers(env, gregorian.get()));
  /frameworks/base/core/res/res/values-el/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-ja/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-ko/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-ru/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-zh-rCN/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-zh-rTW/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-cs/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-da/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-de/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-es/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-es-rUS/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-fr/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-it/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-nb/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-nl/
strings.xml     [all...]

Completed in 2493 milliseconds

1 2