Home
last modified time | relevance | path

Searched refs:networkTitle (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/network/telephony/
DCellInfoUtilTest.kt35 val networkTitle = CELL_IDENTITY_GSM.getNetworkTitle() in getNetworkTitle_alphaLong() constant
37 assertThat(networkTitle).isEqualTo(LONG) in getNetworkTitle_alphaLong()
54 val networkTitle = cellIdentity.getNetworkTitle() in getNetworkTitle_alphaShort() constant
56 assertThat(networkTitle).isEqualTo(SHORT) in getNetworkTitle_alphaShort()
73 val networkTitle = cellIdentity.getNetworkTitle() in getNetworkTitle_operatorNumeric() constant
75 assertThat(networkTitle).isEqualTo("12301") in getNetworkTitle_operatorNumeric()
92 val networkTitle = cellIdentity.getNetworkTitle() in getNetworkTitle_null() constant
94 assertThat(networkTitle).isNull() in getNetworkTitle_null()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DNetworkOperatorPreference.kt84 var networkTitle = cellId?.getNetworkTitle() ?: return in isSameCell() variable
86 if (DBG) Log.d(TAG, "refresh forbidden network: $networkTitle") in isSameCell()
87 networkTitle += " ${context.getString(R.string.forbidden_network)}" in isSameCell()
89 if (DBG) Log.d(TAG, "refresh the network: $networkTitle") in isSameCell()
91 title = networkTitle in isSameCell()