Home
last modified time | relevance | path

Searched refs:removeDoubleQuotes (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/
DInternetTileViewModel.kt76 val secondary = removeDoubleQuotes(it.ssid) in <lambda>()
256 private fun removeDoubleQuotes(string: String?): String? { in <lambda>() method
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
DAccessPointTest.java1316 assertThat(AccessPoint.removeDoubleQuotes(spyConfig.SSID)).isEqualTo(TEST_SSID); in testSetScanResultsPasspoint_differentiatesHomeAndRoaming()
1319 assertThat(AccessPoint.removeDoubleQuotes(spyConfig.SSID)).isEqualTo(ROAMING_SSID); in testSetScanResultsPasspoint_differentiatesHomeAndRoaming()
1322 assertThat(AccessPoint.removeDoubleQuotes(spyConfig.SSID)).isEqualTo(TEST_SSID); in testSetScanResultsPasspoint_differentiatesHomeAndRoaming()
1562 .setSsid(AccessPoint.removeDoubleQuotes(TEST_SSID)) in testMatches1_transitionModeApMatchesNotTransitionModeAp_shouldMatchCorrectly()
1569 .setSsid(AccessPoint.removeDoubleQuotes(TEST_SSID)) in testMatches1_transitionModeApMatchesNotTransitionModeAp_shouldMatchCorrectly()
1579 .setSsid(AccessPoint.removeDoubleQuotes(TEST_SSID)) in testMatches1_transitionModeApMatchesNotTransitionModeAp_shouldMatchCorrectly()
1629 ScanResult saeScanResult = createScanResult(AccessPoint.removeDoubleQuotes(TEST_SSID), in testMatches3_transitionModeApMatchesNotTransitionModeAp_shouldMatchCorrectly()
1636 ScanResult pskScanResult = createScanResult(AccessPoint.removeDoubleQuotes(TEST_SSID), in testMatches3_transitionModeApMatchesNotTransitionModeAp_shouldMatchCorrectly()
1662 ScanResult scanResult = createScanResult(AccessPoint.removeDoubleQuotes(TEST_SSID), in getPskSaeTransitionModeAp()
1672 ScanResult scanResult = createScanResult(AccessPoint.removeDoubleQuotes(TEST_SSID), in getOweTransitionModeAp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/internet/domain/interactor/
DInternetTileDataInteractor.kt78 val secondary = removeDoubleQuotes(it.ssid) in <lambda>()
273 fun removeDoubleQuotes(string: String?): String? { in <lambda>() method
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
DAccessPoint.java424 ssid = (config.SSID == null ? "" : removeDoubleQuotes(config.SSID)); in loadConfig()
709 return getKey(removeDoubleQuotes(config.SSID), config.BSSID, getSecurity(config)); in getKey()
799 if (!ssid.equals(removeDoubleQuotes(config.SSID)) in matches()
1358 return TextUtils.equals(removeDoubleQuotes(info.getSSID()), ssid); in isInfoForThisAccessPoint()
1567 ssid = removeDoubleQuotes(mConfig.SSID); in update()
1837 static String removeDoubleQuotes(String string) { in removeDoubleQuotes() method in AccessPoint
2045 if (TextUtils.equals(ssid, removeDoubleQuotes(wifiInfo.getSSID()))) { in isSameSsidOrBssid()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DInternetTile.java158 private static String removeDoubleQuotes(@Nullable String string) { in removeDoubleQuotes() method in InternetTile
509 state.secondaryLabel = getSecondaryLabel(cb.mIsTransient, removeDoubleQuotes(cb.mSsid)); in handleUpdateWifiState()
559 minimalContentDescription.append(removeDoubleQuotes(cb.mSsid)); in handleUpdateWifiState()