Searched defs:mIs24HourMode (Results 1 - 7 of 7) sorted by relevance

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DCircleView.java35 private boolean mIs24HourMode; field in class:CircleView
65 mIs24HourMode = is24HourMode;
103 if (!mIs24HourMode) {
H A DRadialSelectorView.java59 private boolean mIs24HourMode; field in class:RadialSelectorView
109 mIs24HourMode = is24HourMode;
283 if (!mIs24HourMode) {
H A DRadialTextsView.java50 private boolean mIs24HourMode; field in class:RadialTextsView
101 mIs24HourMode = is24HourMode;
184 if (!mIs24HourMode) {
H A DRadialPickerLayout.java71 private boolean mIs24HourMode; field in class:RadialPickerLayout
177 mIs24HourMode = is24HourMode;
178 mHideAmPm = mAccessibilityManager.isTouchExplorationEnabled()? true : mIs24HourMode;
258 return mIs24HourMode && (hourOfDay <= 12 && hourOfDay != 0);
461 if (mIs24HourMode) {
475 if (currentShowing == HOUR_INDEX && mIs24HourMode && !isInnerCircle && degrees != 0) {
704 if (getCurrentItemShowing() == HOUR_INDEX && !mIs24HourMode) {
762 if (mIs24HourMode) {
806 if (mIs24HourMode) {
H A DTimePickerDialog.java94 private boolean mIs24HourMode; field in class:TimePickerDialog
149 mIs24HourMode = is24HourMode;
183 mIs24HourMode = savedInstanceState.getBoolean(KEY_IS_24_HOUR_VIEW);
225 mInitialMinute, mIs24HourMode);
270 if (mIs24HourMode) {
378 outState.putBoolean(KEY_IS_24_HOUR_VIEW, mIs24HourMode);
419 if (mIs24HourMode) {
455 if (!mIs24HourMode) {
535 || (!mIs24HourMode &&
575 if ((mIs24HourMode
[all...]
/frameworks/base/core/java/android/widget/
H A DTimePicker.java490 private final boolean mIs24HourMode; field in class:TimePicker.AbstractTimePickerDelegate.SavedState
502 mIs24HourMode = is24HourMode;
510 mIs24HourMode = (in.readInt() == 1);
523 return mIs24HourMode;
535 dest.writeInt(mIs24HourMode ? 1 : 0);
H A DRadialTimePickerView.java157 private boolean mIs24HourMode; field in class:RadialTimePickerView
378 mIs24HourMode = false;
446 if (mIs24HourMode != is24HourMode) {
447 mIs24HourMode = is24HourMode;
526 if (mIs24HourMode) {
547 if (mIs24HourMode) {
561 return mIs24HourMode && (hour == 0 || hour > 12);
600 if (mAmOrPm == amOrPm || mIs24HourMode) {
633 if (mIs24HourMode) {
749 if (mIs24HourMode
[all...]

Completed in 125 milliseconds