Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/timer/
DTimerSetupView.kt48 private val mInput = intArrayOf(0, 0, 0, 0, 0, 0) constant
180 val seconds = mInput[1] * 10 + mInput[0] in updateTime()
181 val minutes = mInput[3] * 10 + mInput[2] in updateTime()
182 val hours = mInput[5] * 10 + mInput[4] in updateTime()
216 if (mInputPointer == mInput.size - 1) { in append()
221 System.arraycopy(mInput, 0, mInput, 1, mInputPointer + 1) in append()
222 mInput[0] = digit in append()
244 System.arraycopy(mInput, 1, mInput, 0, mInputPointer) in delete()
245 mInput[mInputPointer] = 0 in delete()
253 UiDataModel.uiDataModel.getFormattedNumber(mInput[0])) in delete()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
DAllAppsSearchBarController.java48 protected ExtendedEditText mInput; field in AllAppsSearchBarController
54 mInput.setVisibility(visibility); in setVisibility()
66 mInput = input; in initialize()
67 mInput.addTextChangedListener(this); in initialize()
68 mInput.setOnEditorActionListener(this); in initialize()
69 mInput.setOnBackKeyListener(this); in initialize()
70 mInput.setOnFocusChangeListener(this); in initialize()
120 String query = Utilities.trim(mInput.getEditableText().toString()); in onBackKey()
131 mInput.hideKeyboard(); in onFocusChange()
140 mInput.reset(); in reset()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/widget/picker/search/
DWidgetsSearchBarController.java46 protected ExtendedEditText mInput; field in WidgetsSearchBarController
55 mInput = editText; in WidgetsSearchBarController()
56 mInput.addTextChangedListener(this); in WidgetsSearchBarController()
57 mInput.setOnBackKeyListener(this); in WidgetsSearchBarController()
58 mInput.setOnKeyListener(this); in WidgetsSearchBarController()
105 mInput.setText(""); in clearSearchResult()
134 mInput.clearFocus(); in clearFocus()
135 mInput.hideKeyboard(); in clearFocus()
/packages/apps/Nfc/src/com/android/nfc/handover/
DBluetoothPeripheralHandover.java117 BluetoothHidHost mInput; field in BluetoothPeripheralHandover
210 if (mA2dp == null || mHeadset == null || mInput == null) { in nextStepInit()
223 if (mInput.getConnectedDevices().contains(mDevice)) { in nextStepInit()
270 if (mInput.getConnectionState(mDevice) in nextStepDisconnect()
273 mInput.disconnect(mDevice); in nextStepDisconnect()
376 if (mInput.getConnectionState(mDevice) in nextStepConnect()
549 if (mInput != null) { in complete()
550 mBluetoothAdapter.closeProfileProxy(BluetoothProfile.HID_HOST, mInput); in complete()
555 mInput = null; in complete()
691 mInput = (BluetoothHidHost) proxy; in onServiceConnected()
[all …]
/packages/apps/TV/tests/unit/src/com/android/tv/util/
DTvInputManagerHelperTest.java259 return inputWrapper == null ? null : inputWrapper.mInput; in createMockTvInputManager()
278 inputWrapper.mInput = in createTvInputInfo()
286 return inputWrapper.mInput; in createTvInputInfo()
290 TvInputInfo mInput; field in TvInputManagerHelperTest.TvInputInfoWrapper
/packages/apps/TV/src/com/android/tv/dvr/recorder/
DInputTaskScheduler.java101 private TvInputInfo mInput; field in InputTaskScheduler
151 mInput = input; in InputTaskScheduler()
250 mInput = input; in updateTvInputInfo()
310 tunerCount = mInput.canRecord() ? mInput.getTunerCount() : 0; in handleBuildSchedule()