Searched refs:LangUtils (Results 1 – 11 of 11) sorted by relevance
/external/apache-http/src/org/apache/http/auth/ |
D | AuthScope.java | 35 import org.apache.http.util.LangUtils; 199 if (LangUtils.equals(this.scheme, that.scheme)) { in match() 206 if (LangUtils.equals(this.realm, that.realm)) { in match() 220 if (LangUtils.equals(this.host, that.host)) { in match() 246 LangUtils.equals(this.host, that.host) in equals() 248 && LangUtils.equals(this.realm, that.realm) in equals() 249 && LangUtils.equals(this.scheme, that.scheme); in equals() 285 int hash = LangUtils.HASH_SEED; in hashCode() 286 hash = LangUtils.hashCode(hash, this.host); in hashCode() 287 hash = LangUtils.hashCode(hash, this.port); in hashCode() [all …]
|
D | NTUserPrincipal.java | 36 import org.apache.http.util.LangUtils; 88 int hash = LangUtils.HASH_SEED; in hashCode() 89 hash = LangUtils.hashCode(hash, this.username); in hashCode() 90 hash = LangUtils.hashCode(hash, this.domain); in hashCode() 100 if (LangUtils.equals(this.username, that.username) in equals() 101 && LangUtils.equals(this.domain, that.domain)) { in equals()
|
D | NTCredentials.java | 36 import org.apache.http.util.LangUtils; 149 int hash = LangUtils.HASH_SEED; in hashCode() 150 hash = LangUtils.hashCode(hash, this.principal); in hashCode() 151 hash = LangUtils.hashCode(hash, this.workstation); in hashCode() 161 if (LangUtils.equals(this.principal, that.principal) in equals() 162 && LangUtils.equals(this.workstation, that.workstation)) { in equals()
|
D | BasicUserPrincipal.java | 35 import org.apache.http.util.LangUtils; 62 int hash = LangUtils.HASH_SEED; in hashCode() 63 hash = LangUtils.hashCode(hash, this.username); in hashCode() 73 if (LangUtils.equals(this.username, that.username)) { in equals()
|
D | UsernamePasswordCredentials.java | 35 import org.apache.http.util.LangUtils; 113 if (LangUtils.equals(this.principal, that.principal)) { in equals()
|
/external/apache-http/src/org/apache/http/message/ |
D | BasicHeaderElement.java | 37 import org.apache.http.util.LangUtils; 205 && LangUtils.equals(this.value, that.value) in equals() 206 && LangUtils.equals(this.parameters, that.parameters); in equals() 213 int hash = LangUtils.HASH_SEED; in hashCode() 214 hash = LangUtils.hashCode(hash, this.name); in hashCode() 215 hash = LangUtils.hashCode(hash, this.value); in hashCode() 217 hash = LangUtils.hashCode(hash, this.parameters[i]); in hashCode()
|
D | BasicNameValuePair.java | 36 import org.apache.http.util.LangUtils; 172 && LangUtils.equals(this.value, that.value); in equals() 179 int hash = LangUtils.HASH_SEED; in hashCode() 180 hash = LangUtils.hashCode(hash, this.name); in hashCode() 181 hash = LangUtils.hashCode(hash, this.value); in hashCode()
|
/external/apache-http/src/org/apache/http/conn/scheme/ |
D | Scheme.java | 35 import org.apache.http.util.LangUtils; 215 int hash = LangUtils.HASH_SEED; in hashCode() 216 hash = LangUtils.hashCode(hash, this.defaultPort); in hashCode() 217 hash = LangUtils.hashCode(hash, this.name); in hashCode() 218 hash = LangUtils.hashCode(hash, this.layered); in hashCode() 219 hash = LangUtils.hashCode(hash, this.socketFactory); in hashCode()
|
/external/apache-http/src/org/apache/http/ |
D | HttpHost.java | 37 import org.apache.http.util.LangUtils; 207 int hash = LangUtils.HASH_SEED; in hashCode() 208 hash = LangUtils.hashCode(hash, this.lcHostname); in hashCode() 209 hash = LangUtils.hashCode(hash, this.port); in hashCode() 210 hash = LangUtils.hashCode(hash, this.schemeName); in hashCode()
|
/external/apache-http/src/org/apache/http/util/ |
D | LangUtils.java | 42 public final class LangUtils { class 48 private LangUtils() { in LangUtils() method in LangUtils
|
/external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
D | RouteSpecificPool.java | 42 import org.apache.http.util.LangUtils; 154 if (LangUtils.equals(state, entry.getState())) { in allocEntry()
|