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

1 2 3

  /packages/apps/DeskClock/src/com/android/deskclock/
DigitalClock.java 44 private AmPm mAmPm;
67 static class AmPm {
71 AmPm(View parent) {
74 String[] ampm = new DateFormatSymbols().getAmPmStrings(); local
75 mAmString = ampm[0];
76 mPmString = ampm[1];
112 mAmPm = new AmPm(this);
Screensaver.java 182 AndroidClockTextView amPm = (AndroidClockTextView)findViewById(R.id.am_pm);
183 if (amPm != null) amPm.setTextColor(CLOCK_COLOR);
  /frameworks/base/core/java/com/android/internal/widget/
DigitalClock.java 54 private AmPm mAmPm;
104 static class AmPm {
108 AmPm(View parent, Typeface tf) {
115 String[] ampm = new DateFormatSymbols().getAmPmStrings(); local
116 mAmString = ampm[0];
117 mPmString = ampm[1];
176 mAmPm = new AmPm(this, null);
  /frameworks/base/core/res/res/layout/
time_picker.xml 49 android:id="@+id/amPm"
time_picker_holo.xml 65 android:id="@+id/amPm"
  /libcore/luni/src/main/java/libcore/icu/
LocaleData.java 49 public String[] amPm;
126 "amPm=" + Arrays.toString(amPm) + "," +
  /frameworks/base/tools/layoutlib/bridge/src/libcore/icu/
ICU_Delegate.java 164 result.amPm = new String[] { "AM", "PM" };
  /external/icu4c/i18n/unicode/
dtfmtsym.h 392 * Sets ampm strings. For example: "AM" and "PM".
393 * @param ampms the new ampm strings. (not adopted; caller retains ownership)
565 * 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...]
  /frameworks/base/core/java/android/widget/
TimePicker.java 206 View amPmView = findViewById(R.id.amPm);
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 110 this.ampms = localeData.amPm;
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp 439 setStringArrayField(env, localeData, "amPm", amPmStrs, count);
  /frameworks/base/core/res/res/values-am/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-ar/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-be/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-bg/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-el/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-fa/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-hi/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-iw/
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-sr/
strings.xml     [all...]
  /frameworks/base/core/res/res/values-th/
strings.xml     [all...]

Completed in 619 milliseconds

1 2 3