Home
last modified time | relevance | path

Searched refs:mScheme (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DWebAddress.java44 private String mScheme; field in WebAddress
70 mScheme = ""; in WebAddress()
80 if (t != null) mScheme = t.toLowerCase(Locale.ROOT); in WebAddress()
112 if (mPort == 443 && mScheme.equals("")) { in WebAddress()
113 mScheme = "https"; in WebAddress()
115 if (mScheme.equals("https")) in WebAddress()
120 if (mScheme.equals("")) mScheme = "http"; in WebAddress()
126 if ((mPort != 443 && mScheme.equals("https")) || in toString()
127 (mPort != 80 && mScheme.equals("http"))) { in toString()
135 return mScheme + "://" + authInfo + mHost + port + mPath; in toString()
/packages/modules/Wifi/framework/java/android/net/wifi/
DUriParserResults.java57 @WifiAnnotations.UriScheme private int mScheme; field in UriParserResults
81 mScheme = scheme; in UriParserResults()
98 return mScheme; in getUriScheme()
152 dest.writeInt(mScheme); in writeToParcel()
183 sbuf.append(", mScheme= ").append(mScheme); in toString()
196 return mScheme == results.mScheme in equals()
207 mScheme, in hashCode()
/packages/apps/Settings/src/com/android/settings/wifi/dpp/
DAdbQrCode.java59 private String mScheme; field in AdbQrCode
73 mScheme = SCHEME_DPP; in AdbQrCode()
76 mScheme = SCHEME_ZXING_WIFI_NETWORK_CONFIG; in AdbQrCode()
205 return mScheme; in getScheme()