Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/common/
DActionButtonsPreferenceTest.java78 mPref.getButton(ActionButtons.BUTTON1).setText(R.string.settings_label); in onBindViewHolder_setTitle_shouldShowButtonByDefault()
97 mPref.getButton(ActionButtons.BUTTON1).setIcon(R.drawable.ic_lock); in onBindViewHolder_setIcon_shouldShowButtonByDefault()
130 mPref.getButton(ActionButtons.BUTTON1).setText(R.string.settings_label).setVisible(false); in onBindViewHolder_setVisibleIsGoneAndSetTitle_shouldNotShowButton()
149 mPref.getButton(ActionButtons.BUTTON1).setIcon(R.drawable.ic_lock).setVisible(false); in onBindViewHolder_setVisibleIsGoneAndSetIcon_shouldNotShowButton()
168 mPref.getButton(ActionButtons.BUTTON1).setText(R.string.settings_label).setVisible(false); in onBindViewHolder_setVisibility_shouldUpdateButtonVisibility()
184 mPref.getButton(ActionButtons.BUTTON1).setVisible(true); in onBindViewHolder_setVisibility_shouldUpdateButtonVisibility()
203 mPref.getButton(ActionButtons.BUTTON1).setEnabled(true); in onBindViewHolder_setEnabled_shouldEnableButton()
226 mPref.getButton(ActionButtons.BUTTON1).setText(R.string.settings_label); in onBindViewHolder_setText_shouldShowSameText()
245 mPref.getButton(ActionButtons.BUTTON1).setText(R.string.settings_label).setIcon( in onBindViewHolder_setButtonIcon_iconMustDisplayAboveText()
256 mPref.getButton(ActionButtons.BUTTON1).setEnabled(true); in onButtonClicked_shouldOnlyTriggerListenerIfEnabled()
[all …]
/packages/apps/Settings/tests/robotests/src/com/android/settings/development/bluetooth/
DBaseBluetoothDialogPreferenceTest.java52 private static final String BUTTON1 = "Test button1"; field in BaseBluetoothDialogPreferenceTest
86 mPreference.mRadioButtonStrings.add(BUTTON1); in setup()
110 assertThat(mRadioButton1.getText()).isNotEqualTo(BUTTON1); in onBindDialogView_checkRadioButtonsText()
114 assertThat(mRadioButton1.getText()).isEqualTo(BUTTON1); in onBindDialogView_checkRadioButtonsText()
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
DBluetoothDeviceActionButtonsPreferenceController.java49 updateConnectionButton(getPreference().getButton(ActionButtons.BUTTON1)); in onCreateInternal()
55 updateConnectionButton(preference.getButton(ActionButtons.BUTTON1)); in updateState()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/wifi/details/
DWifiDetailsActionButtonsPreferenceControllerTest.java123 assertThat(mActionButtonsPreference.getButton(ActionButtons.BUTTON1).isVisible()).isTrue(); in updateState_canForget_forgetButtonShown()
132 assertThat(mActionButtonsPreference.getButton(ActionButtons.BUTTON1).isVisible()).isFalse(); in updateState_canNotForget_forgetButtonHidden()
/packages/apps/Car/Settings/src/com/android/car/settings/common/
DActionButtonsPreference.java50 BUTTON1, enumConstant
149 case BUTTON1: in getButton()
/packages/apps/Car/Settings/src/com/android/car/settings/wifi/details/
DWifiDetailsActionButtonsPreferenceController.java54 .getButton(ActionButtons.BUTTON1) in updateState()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/bluetooth/
DBluetoothDeviceActionButtonsPreferenceControllerTest.java180 return mActionButtonsPreference.getButton(ActionButtons.BUTTON1); in findConnectionButton()
/packages/apps/Car/Settings/src/com/android/car/settings/profiles/
DProfileDetailsActionButtonsPreferenceController.java123 ActionButtonInfo renameButton = getPreference().getButton(ActionButtons.BUTTON1); in onStartInternal()
/packages/apps/Car/Settings/src/com/android/car/settings/storage/
DStorageApplicationActionButtonsPreferenceController.java167 mClearStorageButton = getPreference().getButton(ActionButtons.BUTTON1); in onCreateInternal()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/storage/
DStorageApplicationActionButtonsPreferenceControllerTest.java429 return mActionButtonsPreference.getButton(ActionButtons.BUTTON1); in getClearStorageButton()
/packages/apps/Car/Settings/src/com/android/car/settings/applications/
DApplicationActionButtonsPreferenceController.java372 ActionButtonInfo uninstallButton = getPreference().getButton(ActionButtons.BUTTON1); in updateUninstallButtonInner()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/profiles/
DProfileDetailsActionButtonsPreferenceControllerTest.java391 return mPreference.getButton(ActionButtons.BUTTON1); in getRenameButton()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/applications/
DApplicationActionButtonsPreferenceControllerTest.java744 return mActionButtonsPreference.getButton(ActionButtons.BUTTON1); in getUninstallButton()