Searched defs:frag (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/common/
H A DFragmentUtils.java37 * @return The parent of frag that implements the callbackInterface or null if no such parent can
75 * @param frag The Fragment whose parents are to be checked
79 public static void checkParent(@NonNull Fragment frag, @NonNull Class<?> callbackInterface) argument
84 if (FragmentUtils.getParent(frag, callbackInterface) == null) {
86 frag.getParentFragment() == null
87 ? frag.getActivity().getClass().getName()
88 : frag.getParentFragment().getClass().getName();
90 frag.getClass().getName()
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
H A DBluetoothPairingDialogTest.java87 BluetoothPairingDialogFragment frag = makeFragment();
90 frag.afterTextChanged(new SpannableStringBuilder(FILLER));
109 BluetoothPairingDialogFragment frag = makeFragment();
112 frag.afterTextChanged(new SpannableStringBuilder(FILLER));
113 View button = frag.getmDialog().getButton(AlertDialog.BUTTON_POSITIVE);
124 BluetoothPairingDialogFragment frag = makeFragment();
127 View view = frag.getmDialog().findViewById(R.id.text);
147 BluetoothPairingDialogFragment frag = spy(new BluetoothPairingDialogFragment());
148 when(frag.getContext()).thenReturn(context);
149 setupFragment(frag);
449 setupFragment(BluetoothPairingDialogFragment frag) argument
[all...]

Completed in 404 milliseconds