Searched defs:mSummaryUpdater (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
H A DSummaryUpdaterTest.java42 private SummaryUpdaterTestable mSummaryUpdater; field in class:SummaryUpdaterTest
50 mSummaryUpdater = new SummaryUpdaterTestable(mContext, mListener);
56 mSummaryUpdater.setTestSummary(summary);
57 mSummaryUpdater.notifyChangeIfNeeded();
65 mSummaryUpdater.setTestSummary(summaryInit);
66 mSummaryUpdater.notifyChangeIfNeeded();
69 mSummaryUpdater.setTestSummary(summaryUpdate);
70 mSummaryUpdater.notifyChangeIfNeeded();
78 mSummaryUpdater.setTestSummary(summaryInit);
79 mSummaryUpdater
[all...]
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/
H A DWifiSummaryUpdaterTest.java56 private WifiSummaryUpdater mSummaryUpdater; field in class:WifiSummaryUpdaterTest
65 mSummaryUpdater = new WifiSummaryUpdater(mContext, mListener, mWifiTracker);
70 mSummaryUpdater.register(true);
77 mSummaryUpdater.register(true);
78 mSummaryUpdater.register(false);
85 mSummaryUpdater.register(true);
94 mSummaryUpdater.register(true);
105 assertThat(mSummaryUpdater.getSummary()).isEqualTo(
114 assertThat(mSummaryUpdater.getSummary()).isEqualTo(
124 assertThat(mSummaryUpdater
[all...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothMasterSwitchPreferenceController.java50 private BluetoothSummaryUpdater mSummaryUpdater; field in class:BluetoothMasterSwitchPreferenceController
67 mSummaryUpdater = new BluetoothSummaryUpdater(mContext, this, mBluetoothManager);
108 mSummaryUpdater.register(true);
113 mSummaryUpdater.register(false);
H A DBluetoothSettings.java384 BluetoothSummaryUpdater mSummaryUpdater; field in class:BluetoothSettings.SummaryProvider
391 mSummaryUpdater = new BluetoothSummaryUpdater(mContext, this, mBluetoothManager);
396 mSummaryUpdater.register(listening);
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
H A DBluetoothSummaryUpdaterTest.java78 private BluetoothSummaryUpdater mSummaryUpdater; field in class:BluetoothSummaryUpdaterTest
89 mSummaryUpdater = new BluetoothSummaryUpdater(mContext, mListener, mBluetoothManager);
102 mSummaryUpdater.register(true);
104 verify(mBluetoothManager.getEventManager()).registerCallback(mSummaryUpdater);
109 mSummaryUpdater.register(false);
111 verify(mBluetoothManager.getEventManager()).unregisterCallback(mSummaryUpdater);
121 mSummaryUpdater.register(true);
134 mSummaryUpdater.onBluetoothStateChanged(BluetoothAdapter.STATE_OFF);
146 mSummaryUpdater.onBluetoothStateChanged(BluetoothAdapter.STATE_ON);
160 mSummaryUpdater
[all...]

Completed in 434 milliseconds