Home | History | Annotate | Download | only in format

Lines Matching defs:FORMAT_12HOUR

71     public static final int FORMAT_12HOUR = 0x00040;
332 if ((flags & (FORMAT_SHOW_TIME | FORMAT_12HOUR | FORMAT_24HOUR)) == FORMAT_SHOW_TIME) {
333 flags |= DateFormat.is24HourFormat(c) ? FORMAT_24HOUR : FORMAT_12HOUR;
596 * <li>FORMAT_12HOUR</li>
662 * If FORMAT_12HOUR is set and the time is shown, then the time is
665 * system settings. If both FORMAT_12HOUR and FORMAT_24HOUR are set, then
672 * system settings. If both FORMAT_12HOUR and FORMAT_24HOUR are set, then
731 if ((flags & (FORMAT_SHOW_TIME | FORMAT_12HOUR | FORMAT_24HOUR)) == FORMAT_SHOW_TIME) {
732 flags |= DateFormat.is24HourFormat(context) ? FORMAT_24HOUR : FORMAT_12HOUR;