Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DNumberPicker.java351 private SetSelectionCommand mSetSelectionCommand; field in NumberPicker
1936 if (mSetSelectionCommand != null) { in removeAllCallbacks()
1937 removeCallbacks(mSetSelectionCommand); in removeAllCallbacks()
1983 if (mSetSelectionCommand == null) { in postSetSelectionCommand()
1984 mSetSelectionCommand = new SetSelectionCommand(); in postSetSelectionCommand()
1986 removeCallbacks(mSetSelectionCommand); in postSetSelectionCommand()
1988 mSetSelectionCommand.mSelectionStart = selectionStart; in postSetSelectionCommand()
1989 mSetSelectionCommand.mSelectionEnd = selectionEnd; in postSetSelectionCommand()
1990 post(mSetSelectionCommand); in postSetSelectionCommand()