Home
last modified time | relevance | path

Searched refs:LangUtils (Results 1 – 11 of 11) sorted by relevance

/external/apache-http/src/org/apache/http/auth/
DAuthScope.java35 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 …]
DNTUserPrincipal.java36 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()
DNTCredentials.java36 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()
DBasicUserPrincipal.java35 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()
DUsernamePasswordCredentials.java35 import org.apache.http.util.LangUtils;
113 if (LangUtils.equals(this.principal, that.principal)) { in equals()
/external/apache-http/src/org/apache/http/message/
DBasicHeaderElement.java37 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()
DBasicNameValuePair.java36 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/
DScheme.java35 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/
DHttpHost.java37 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/
DLangUtils.java42 public final class LangUtils { class
48 private LangUtils() { in LangUtils() method in LangUtils
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
DRouteSpecificPool.java42 import org.apache.http.util.LangUtils;
154 if (LangUtils.equals(state, entry.getState())) { in allocEntry()