Home
last modified time | relevance | path

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

/development/apps/DumpViewer/app/src/main/java/com/android/dumpviewer/
DDumpActivity.java78 private AutoCompleteTextView mAcCommandLine; field in DumpActivity
195 mAcCommandLine = findViewById(R.id.commandline); in onCreate()
219 mAcCommandLine.setOnKeyListener(this::onAutocompleteKey); in onCreate()
323 if (v == mAcCommandLine || v == mAcPattern || v == mAcSearchQuery) { in onAutocompleteFocusChanged()
339 insertText((mLastFocusedEditBox != null ? mLastFocusedEditBox : mAcCommandLine), s); in insertPickedString()
343 mImm.hideSoftInputFromWindow(mAcCommandLine.getWindowToken(), 0); in hideIme()
352 setupAutocomplete(mAcCommandLine, commands); in refreshHistory()
366 return mAcCommandLine.getText().toString().trim(); in getCommandLine()