Searched refs:selectAll (Results 1 - 14 of 14) sorted by relevance

/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/dao/
H A DBlobEntityDao.java33 List<BlobEntity> selectAll(); method in interface:BlobEntityDao
/frameworks/base/core/java/android/widget/
H A DEditText.java140 * Convenience for {@link Selection#selectAll}.
142 public void selectAll() { method in class:EditText
143 Selection.selectAll(getText());
H A DNumberPicker.java734 mInputText.selectAll();
H A DEditor.java2800 com.android.internal.R.string.selectAll)
4036 com.android.internal.R.string.selectAll)
H A DTextView.java11221 static final int ID_SELECT_ALL = android.R.id.selectAll;
11235 * this will be one of {@link android.R.id#selectAll}, {@link android.R.id#cut},
11420 * {@link android.view.Menu#removeItem(int)} and passing {@link android.R.id#selectAll},
11459 * {@link android.view.Menu#removeItem(int)} and passing {@link android.R.id#selectAll},
/frameworks/support/room/integration-tests/kotlintestapp/src/main/java/androidx/room/integration/kotlintestapp/dao/
H A DDependencyDao.kt32 fun selectAll(): List<DataClassFromDependency>
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java108 if (id == android.R.id.selectAll || id == android.R.id.replaceText) {
/frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/test/
H A DDependencyDaoTest.kt44 assertThat(dao.selectAll(), `is`(listOf(data)))
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiObject.java635 UiObject selectAll = new UiObject(new UiSelector().descriptionContains("Select all"));
636 if(selectAll.waitForExists(50))
637 selectAll.click();
/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewActivityTest.java432 mActivity.getString(com.android.internal.R.string.selectAll));
449 mActivity.getString(com.android.internal.R.string.selectAll));
467 mActivity.getString(com.android.internal.R.string.selectAll));
817 mActivity.getString(com.android.internal.R.string.selectAll));
827 mActivity.getString(com.android.internal.R.string.selectAll));
/frameworks/base/core/java/android/text/
H A DSelection.java158 public static final void selectAll(Spannable text) { method in class:Selection
/frameworks/base/core/java/android/app/
H A DSearchDialog.java234 mSearchAutoComplete.selectAll();
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java168 private static final int ID_SELECT_ALL = android.R.id.selectAll;
1557 private void selectAll() { method in class:EditStyledText.EditorManager
1558 Selection.selectAll(mEST.getText());
3092 mManager.selectAll();
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
H A DSimpleEntityReadWriteTest.java447 List<BlobEntity> list = mBlobEntityDao.selectAll();

Completed in 782 milliseconds