Searched refs:CellSignalState (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/carrier/ |
D | QSCarrierTest.java | 67 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_first() 74 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_same() 82 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_changed() 86 CellSignalState other = c.changeVisibility(false); in testUpdateState_changed() 93 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_singleCarrier_first() 100 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_singleCarrier_noShowIcon() 109 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_multiCarrier_showIcon() 118 CellSignalState c = new CellSignalState(true, mSignalIconId, "", "", false, false); in testUpdateState_changeSingleMultiSingle()
|
D | CellSignalStateTest.kt | 33 val c = CellSignalState() in testChangeVisibility_sameObject() 42 val c = CellSignalState() in testChangeVisibility_otherObject()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/carrier/ |
D | QSCarrierGroupController.java | 70 private final CellSignalState[] mInfos = 71 new CellSignalState[SIM_SLOTS]; 100 mInfos[slotIndex] = new CellSignalState( 131 mInfos[slotIndex] = new CellSignalState( 142 mInfos[slotIndex] = new CellSignalState( 150 mInfos[slotIndex] = new CellSignalState( 168 mInfos[slotIndex] = new CellSignalState( 176 mInfos[slotIndex] = new CellSignalState( 255 mInfos[i] = new CellSignalState( in QSCarrierGroupController() 348 mInfos[i] = new CellSignalState(true, R.drawable.ic_blank, "", "", false, in handleUpdateState()
|
D | CellSignalState.kt | 24 data class CellSignalState( dataClass 40 fun changeVisibility(visible: Boolean): CellSignalState { in changeVisibility()
|
D | QSCarrier.java | 43 private CellSignalState mLastSignalState; 79 public boolean updateState(CellSignalState state, boolean isSingleCarrier) { in updateState()
|