Home
last modified time | relevance | path

Searched refs:mIs24HourMode (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
DTimePickerDialog.java94 private boolean mIs24HourMode; field in TimePickerDialog
149 mIs24HourMode = is24HourMode; in initialize()
183 mIs24HourMode = savedInstanceState.getBoolean(KEY_IS_24_HOUR_VIEW); in onCreate()
225 mInitialMinute, mIs24HourMode); in onCreateView() local
270 if (mIs24HourMode) { in onCreateView()
378 outState.putBoolean(KEY_IS_24_HOUR_VIEW, mIs24HourMode);
419 if (mIs24HourMode) {
455 if (!mIs24HourMode) {
535 || (!mIs24HourMode &&
575 if ((mIs24HourMode && mTypedTimes.size() == 4) ||
[all …]
DCircleView.java35 private boolean mIs24HourMode; field in CircleView
65 mIs24HourMode = is24HourMode; in initialize()
103 if (!mIs24HourMode) { in onDraw()
DRadialPickerLayout.java71 private boolean mIs24HourMode; field in RadialPickerLayout
177 mIs24HourMode = is24HourMode; in initialize()
178 mHideAmPm = mAccessibilityManager.isTouchExplorationEnabled()? true : mIs24HourMode; in initialize()
258 return mIs24HourMode && (hourOfDay <= 12 && hourOfDay != 0); in isHourInnerCircle()
461 if (mIs24HourMode) { in reselectSelector()
475 if (currentShowing == HOUR_INDEX && mIs24HourMode && !isInnerCircle && degrees != 0) { in reselectSelector()
704 if (getCurrentItemShowing() == HOUR_INDEX && !mIs24HourMode) { in onTouch()
762 if (mIs24HourMode) { in dispatchPopulateAccessibilityEvent()
806 if (mIs24HourMode) { in performAccessibilityAction()
DRadialSelectorView.java59 private boolean mIs24HourMode; field in RadialSelectorView
109 mIs24HourMode = is24HourMode; in initialize()
283 if (!mIs24HourMode) { in onDraw()
DRadialTextsView.java50 private boolean mIs24HourMode; field in RadialTextsView
101 mIs24HourMode = is24HourMode; in initialize()
184 if (!mIs24HourMode) { in onDraw()
/frameworks/base/core/java/android/widget/
DRadialTimePickerView.java156 private boolean mIs24HourMode; field in RadialTimePickerView
377 mIs24HourMode = false; in RadialTimePickerView()
445 if (mIs24HourMode != is24HourMode) { in initialize()
446 mIs24HourMode = is24HourMode; in initialize()
525 if (mIs24HourMode) { in getHourForDegrees()
546 if (mIs24HourMode) { in getDegreesForHour()
560 return mIs24HourMode && (hour == 0 || hour > 12); in getInnerCircleForHour()
599 if (mAmOrPm == amOrPm || mIs24HourMode) { in setAmOrPm()
632 if (mIs24HourMode) { in initData()
748 if (mIs24HourMode && mInnerTextHours != null) { in drawHoursClipped()
[all …]
DTimePicker.java311 private final boolean mIs24HourMode; field in TimePicker.AbstractTimePickerDelegate.SavedState
323 mIs24HourMode = is24HourMode; in SavedState()
331 mIs24HourMode = (in.readInt() == 1); in SavedState()
344 return mIs24HourMode; in is24HourMode()
356 dest.writeInt(mIs24HourMode ? 1 : 0); in writeToParcel()