Home
last modified time | relevance | path

Searched refs:QC_ACTION_TOGGLE_STATE (Results 1 – 21 of 21) sorted by relevance

/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/qc/
DAdaptiveBrightnessSwitchTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
154 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_enable_enablesAdaptiveBrightness()
163 intent.putExtra(QC_ACTION_TOGGLE_STATE, false); in onNotifyChange_disable_disablesAdaptiveBrightness()
DBluetoothSwitchTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
166 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_enable_enablesBluetooth()
175 intent.putExtra(QC_ACTION_TOGGLE_STATE, false); in onNotifyChange_disable_disablesBluetooth()
DHotspotTileTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
128 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_togglesHotspot()
DPairedBluetoothDevicesTest.java21 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
295 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_toggleBluetooth()
309 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_togglePhone()
324 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_toggleMedia()
DMobileDataTileTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
144 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_togglesMobileData()
DHotspotRowTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
141 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_togglesHotspot()
DMobileDataRowTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
145 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_togglesMobileData()
DWifiTileTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
198 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_togglesWifi()
DWifiRowTest.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
217 intent.putExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange_togglesWifi()
/packages/apps/Car/Settings/src/com/android/car/settings/qc/
DWifiTile.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
90 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, in onNotifyChange()
DMobileDataTile.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
94 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, in onNotifyChange()
DBluetoothSwitch.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
90 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, !isBluetoothOn()); in onNotifyChange()
DHotspotTile.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
102 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, in onNotifyChange()
DAdaptiveBrightnessSwitch.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
93 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, in onNotifyChange()
DWifiRow.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
107 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, in onNotifyChange()
DHotspotRow.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
124 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, in onNotifyChange()
DMobileDataRow.java20 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
116 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, in onNotifyChange()
DPairedBluetoothDevices.java22 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
182 boolean newState = intent.getBooleanExtra(QC_ACTION_TOGGLE_STATE, true); in onNotifyChange()
/packages/apps/Car/systemlibs/car-qc-lib/src/com/android/car/qc/view/
DQCTileView.java19 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
133 intent.putExtra(QC_ACTION_TOGGLE_STATE, isChecked); in onChanged()
DQCRowView.java20 import static com.android.car.qc.QCItem.QC_ACTION_TOGGLE_STATE;
352 intent.putExtra(QC_ACTION_TOGGLE_STATE, isChecked); in initSwitchView()
390 intent.putExtra(QC_ACTION_TOGGLE_STATE, isChecked); in initToggleView()
/packages/apps/Car/systemlibs/car-qc-lib/src/com/android/car/qc/
DQCItem.java44 public static final String QC_ACTION_TOGGLE_STATE = "QC_ACTION_TOGGLE_STATE"; field in QCItem