Home | History | Annotate | Download | only in time

Lines Matching defs:PM

44  * The primary layout to hold the circular picker, and the am/pm buttons. This view well measure
64 private static final int PM = TimePickerDialog.PM;
182 // Initialize the circle and AM/PM circles if applicable.
186 mAmPmCirclesView.initialize(context, initialHoursOfDay < 12? AM : PM);
290 return PM;
296 * Set the internal value for the hour, minute, or AM/PM.
306 } else if (value == PM) {
313 * Set the internal value as either AM or PM, and update the AM/PM circle displays.
585 // If we're showing the AM/PM, check to see if the user is touching it.
591 if (mIsTouchingAmOrPm == AM || mIsTouchingAmOrPm == PM) {
592 // If the touch is on AM or PM, set it as "touched" after the TAP_TIMEOUT
641 // If we're in the middle of touching down on AM or PM, check if we still are.
644 if (mIsTouchingAmOrPm == AM || mIsTouchingAmOrPm == PM) {
684 // If we're touching AM or PM, set it as selected, and tell the listener.
685 if (mIsTouchingAmOrPm == AM || mIsTouchingAmOrPm == PM) {
710 } else if (amOrPm == PM && value != 12) {