Home
last modified time | relevance | path

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

/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/bluetooth/
DForgetDeviceDialogFragment.java37 public class ForgetDeviceDialogFragment extends InstrumentedDialogFragment { class
43 public static ForgetDeviceDialogFragment newInstance(String deviceAddress) { in newInstance()
46 ForgetDeviceDialogFragment dialog = new ForgetDeviceDialogFragment(); in newInstance()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DForgetDeviceDialogFragment.java38 public class ForgetDeviceDialogFragment extends InstrumentedDialogFragment { class
44 public static ForgetDeviceDialogFragment newInstance(String deviceAddress) { in newInstance()
47 ForgetDeviceDialogFragment dialog = new ForgetDeviceDialogFragment(); in newInstance()
DBluetoothDetailsButtonsController.java47 ForgetDeviceDialogFragment fragment = in onForgetButtonPressed()
48 ForgetDeviceDialogFragment.newInstance(mCachedDevice.getAddress()); in onForgetButtonPressed()
49 fragment.show(mFragment.getFragmentManager(), ForgetDeviceDialogFragment.TAG); in onForgetButtonPressed()
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DBluetoothDetailsButtonsControllerTest.java152 ArgumentCaptor<ForgetDeviceDialogFragment> dialogCaptor = in forgetDialog()
153 ArgumentCaptor.forClass(ForgetDeviceDialogFragment.class); in forgetDialog()
156 ForgetDeviceDialogFragment dialogFragment = dialogCaptor.getValue(); in forgetDialog()
DForgetDeviceDialogFragmentTest.java63 private ForgetDeviceDialogFragment mFragment;
78 mFragment = spy(ForgetDeviceDialogFragment.newInstance(deviceAddress)); in setUp()