OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mScheme
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
WebAddress.java
44
private String
mScheme
;
72
mScheme
= "";
82
if (t != null)
mScheme
= t.toLowerCase(Locale.ROOT);
114
if (mPort == 443 &&
mScheme
.equals("")) {
115
mScheme
= "https";
117
if (
mScheme
.equals("https"))
122
if (
mScheme
.equals(""))
mScheme
= "http";
128
if ((mPort != 443 &&
mScheme
.equals("https")) ||
129
(mPort != 80 &&
mScheme
.equals("http")))
[
all
...]
/external/apache-http/android/src/android/net/compatibility/
WebAddress.java
41
private String
mScheme
;
69
mScheme
= "";
79
if (t != null)
mScheme
= t.toLowerCase(Locale.ROOT);
111
if (mPort == 443 &&
mScheme
.equals("")) {
112
mScheme
= "https";
114
if (
mScheme
.equals("https"))
119
if (
mScheme
.equals(""))
mScheme
= "http";
125
if ((mPort != 443 &&
mScheme
.equals("https")) ||
126
(mPort != 80 &&
mScheme
.equals("http")))
[
all
...]
/frameworks/base/core/java/android/net/
WebAddress.java
48
private String
mScheme
;
76
mScheme
= "";
86
if (t != null)
mScheme
= t.toLowerCase(Locale.ROOT);
118
if (mPort == 443 &&
mScheme
.equals("")) {
119
mScheme
= "https";
121
if (
mScheme
.equals("https"))
126
if (
mScheme
.equals(""))
mScheme
= "http";
132
if ((mPort != 443 &&
mScheme
.equals("https")) ||
133
(mPort != 80 &&
mScheme
.equals("http")))
[
all
...]
/external/apache-http/android/src/android/net/http/
HttpAuthHeader.java
44
private int
mScheme
;
168
return
mScheme
== BASIC;
175
return
mScheme
== DIGEST;
185
return
mScheme
;
242
if (
mScheme
== BASIC) {
245
if (
mScheme
== DIGEST) {
269
if (
mScheme
!= UNKNOWN) {
289
mScheme
= DIGEST;
295
mScheme
= BASIC;
353
if (
mScheme
== DIGEST)
[
all
...]
Completed in 131 milliseconds