Home | History | Annotate | Download | only in deviceinfo

Lines Matching refs:mSettings

70     private MyDeviceInfoFragment mSettings;
77 mSettings = spy(new MyDeviceInfoFragment());
79 when(mSettings.getActivity()).thenReturn(mActivity);
80 when(mSettings.getContext()).thenReturn(mContext);
83 doNothing().when(mSettings).onCreatePreferences(any(), any());
85 doReturn(mScreen).when(mSettings).getPreferenceScreen();
86 when(mSettings.getPreferenceScreen()).thenReturn(mScreen);
96 mSettings.setArguments(args);
98 mSettings.onCreate(null /* icicle */);
112 ReflectionHelpers.setField(mSettings, "mPreferenceControllers", preferenceControllers);
117 mSettings.onActivityResult(requestCode, resultCode, data);