Searched refs:mInput (Results 1 – 4 of 4) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerSetupView.java | 44 private final int[] mInput = new int[6]; field in TimerSetupView 136 if (mInputPointer == mInput.length - 1) { in onClick() 141 System.arraycopy(mInput, 0, mInput, 1, mInputPointer + 1); in onClick() 142 mInput[0] = n; in onClick() 159 System.arraycopy(mInput, 1, mInput, 0, mInputPointer); in onClick() 160 mInput[mInputPointer] = 0; in onClick() 165 final String number = mInputPointer < 0 ? "" : Integer.toString(mInput[mInputPointer]); in onClick() 185 for (int i = 0; i < mInput.length; i ++) { 186 mInput[i] = 0; 195 final int hoursInSeconds = mInput[5] * 36000 + mInput[4] * 3600; [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | AllAppsSearchBarController.java | 47 protected ExtendedEditText mInput; field in AllAppsSearchBarController 62 mInput = input; in initialize() 63 mInput.addTextChangedListener(this); in initialize() 64 mInput.setOnEditorActionListener(this); in initialize() 65 mInput.setOnBackKeyListener(this); in initialize() 68 mInput.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); in initialize() 118 String query = Utilities.trim(mInput.getEditableText().toString()); in onBackKey() 132 mInput.setText(""); in reset() 133 mInputMethodManager.hideSoftInputFromWindow(mInput.getWindowToken(), 0); in reset() 137 View nextFocus = mInput.focusSearch(View.FOCUS_DOWN); in unfocusSearchField() [all …]
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
D | BluetoothPeripheralHandover.java | 103 BluetoothInputDevice mInput; field in BluetoothPeripheralHandover 182 if (mA2dp == null || mHeadset == null || mInput == null) { in nextStepInit() 195 if (mInput.getConnectedDevices().contains(mDevice)) { in nextStepInit() 224 if (mInput.getConnectionState(mDevice) in nextStepDisconnect() 227 mInput.disconnect(mDevice); in nextStepDisconnect() 330 if (mInput.getConnectionState(mDevice) in nextStepConnect() 333 mInput.connect(mDevice); in nextStepConnect() 472 if (mInput != null) { in complete() 473 mBluetoothAdapter.closeProfileProxy(BluetoothProfile.INPUT_DEVICE, mInput); in complete() 478 mInput = null; in complete() [all …]
|
/packages/apps/Dialer/src/com/android/dialer/ |
D | SpecialCharSequenceMgr.java | 118 final private String mInput; field in SpecialCharSequenceMgr.HandleMmiAccountSelectedCallback 121 mInput = input; in HandleMmiAccountSelectedCallback() 127 TelecomUtil.handleMmi(mContext, mInput, selectedAccountHandle); in onPhoneAccountSelected()
|