Home
last modified time | relevance | path

Searched refs:mStopwatchView (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchLandscapeLayout.java62 private View mStopwatchView; field in StopwatchLandscapeLayout
81 mStopwatchView = findViewById(R.id.stopwatch_time_wrapper); in onFinishInflate()
110 mStopwatchView.measure(stopwatchWidthSpec, maxHeightSpec); in onMeasure()
151 final int stopwatchWidth = mStopwatchView.getMeasuredWidth(); in onLayout()
152 final int stopwatchHeight = mStopwatchView.getMeasuredHeight(); in onLayout()
165 mStopwatchView.layout(stopwatchLeft, stopwatchTop, stopwatchRight, stopwatchBottom); in onLayout()
DStopwatchLandscapeLayout.kt62 private lateinit var mStopwatchView: View variable in com.android.deskclock.stopwatch.StopwatchLandscapeLayout
78 mStopwatchView = findViewById(R.id.stopwatch_time_wrapper) in onFinishInflate()
107 mStopwatchView.measure(stopwatchWidthSpec, maxHeightSpec) in onMeasure()
147 val stopwatchWidth: Int = mStopwatchView.getMeasuredWidth() in onLayout()
148 val stopwatchHeight: Int = mStopwatchView.getMeasuredHeight() in onLayout()
161 mStopwatchView.layout(stopwatchLeft, stopwatchTop, stopwatchRight, stopwatchBottom) in onLayout()