HomeSort by relevance Sort by last modified time
    Searched refs:mSummaryUpdater (Results 1 - 6 of 6) sorted by null

  /packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
SummaryUpdaterTest.java 45 private SummaryUpdaterTestable mSummaryUpdater;
53 mSummaryUpdater = new SummaryUpdaterTestable(mContext, mListener);
59 mSummaryUpdater.setTestSummary(summary);
60 mSummaryUpdater.notifyChangeIfNeeded();
68 mSummaryUpdater.setTestSummary(summaryInit);
69 mSummaryUpdater.notifyChangeIfNeeded();
72 mSummaryUpdater.setTestSummary(summaryUpdate);
73 mSummaryUpdater.notifyChangeIfNeeded();
81 mSummaryUpdater.setTestSummary(summaryInit);
82 mSummaryUpdater.notifyChangeIfNeeded()
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothSummaryUpdaterTest.java 71 private BluetoothSummaryUpdater mSummaryUpdater;
80 mSummaryUpdater = new BluetoothSummaryUpdater(mContext, mListener, mBluetoothManager);
85 mSummaryUpdater.register(true);
87 verify(mBluetoothManager.getEventManager()).registerCallback(mSummaryUpdater);
92 mSummaryUpdater.register(false);
94 verify(mBluetoothManager.getEventManager()).unregisterCallback(mSummaryUpdater);
101 mSummaryUpdater.register(true);
109 mSummaryUpdater.register(true);
110 mSummaryUpdater.onBluetoothStateChanged(BluetoothAdapter.STATE_OFF);
119 mSummaryUpdater.register(true)
    [all...]
BluetoothSettingsSummaryProviderTest.java 66 mSummaryProvider.mSummaryUpdater);
74 mSummaryProvider.mSummaryUpdater);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/
WifiSummaryUpdaterTest.java 56 private WifiSummaryUpdater mSummaryUpdater;
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.getSummary()).isEqualTo("Test Ssid")
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothMasterSwitchPreferenceController.java 44 private BluetoothSummaryUpdater mSummaryUpdater;
57 mSummaryUpdater = new BluetoothSummaryUpdater(mContext, this, mBluetoothManager);
83 mSummaryUpdater.register(true);
88 mSummaryUpdater.register(false);
BluetoothSettings.java 528 BluetoothSummaryUpdater mSummaryUpdater;
535 mSummaryUpdater = new BluetoothSummaryUpdater(mContext, this, mBluetoothManager);
540 mSummaryUpdater.register(listening);

Completed in 4549 milliseconds