Home
last modified time | relevance | path

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

/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.java48 ForgetDeviceDialogFragment fragment = in onForgetButtonPressed()
49 ForgetDeviceDialogFragment.newInstance(mCachedDevice.getAddress()); in onForgetButtonPressed()
50 fragment.show(mFragment.getFragmentManager(), ForgetDeviceDialogFragment.TAG); in onForgetButtonPressed()
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DBluetoothDetailsButtonsControllerTest.java155 ArgumentCaptor<ForgetDeviceDialogFragment> dialogCaptor = in forgetDialog()
156 ArgumentCaptor.forClass(ForgetDeviceDialogFragment.class); in forgetDialog()
159 ForgetDeviceDialogFragment dialogFragment = dialogCaptor.getValue(); in forgetDialog()
DForgetDeviceDialogFragmentTest.java65 private ForgetDeviceDialogFragment mFragment;
81 mFragment = spy(ForgetDeviceDialogFragment.newInstance(deviceAddress)); in setUp()