Home
last modified time | relevance | path

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

/external/apache-http/src/org/apache/http/auth/
DAuthScope.java35 import org.apache.http.util.LangUtils;
204 if (LangUtils.equals(this.scheme, that.scheme)) { in match()
211 if (LangUtils.equals(this.realm, that.realm)) { in match()
225 if (LangUtils.equals(this.host, that.host)) { in match()
251 LangUtils.equals(this.host, that.host) in equals()
253 && LangUtils.equals(this.realm, that.realm) in equals()
254 && LangUtils.equals(this.scheme, that.scheme); in equals()
290 int hash = LangUtils.HASH_SEED; in hashCode()
291 hash = LangUtils.hashCode(hash, this.host); in hashCode()
292 hash = LangUtils.hashCode(hash, this.port); in hashCode()
[all …]
DNTUserPrincipal.java36 import org.apache.http.util.LangUtils;
93 int hash = LangUtils.HASH_SEED; in hashCode()
94 hash = LangUtils.hashCode(hash, this.username); in hashCode()
95 hash = LangUtils.hashCode(hash, this.domain); in hashCode()
105 if (LangUtils.equals(this.username, that.username) in equals()
106 && LangUtils.equals(this.domain, that.domain)) { in equals()
DNTCredentials.java36 import org.apache.http.util.LangUtils;
154 int hash = LangUtils.HASH_SEED; in hashCode()
155 hash = LangUtils.hashCode(hash, this.principal); in hashCode()
156 hash = LangUtils.hashCode(hash, this.workstation); in hashCode()
166 if (LangUtils.equals(this.principal, that.principal) in equals()
167 && LangUtils.equals(this.workstation, that.workstation)) { in equals()
DBasicUserPrincipal.java35 import org.apache.http.util.LangUtils;
67 int hash = LangUtils.HASH_SEED; in hashCode()
68 hash = LangUtils.hashCode(hash, this.username); in hashCode()
78 if (LangUtils.equals(this.username, that.username)) { in equals()
DUsernamePasswordCredentials.java35 import org.apache.http.util.LangUtils;
118 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;
210 && LangUtils.equals(this.value, that.value) in equals()
211 && LangUtils.equals(this.parameters, that.parameters); in equals()
218 int hash = LangUtils.HASH_SEED; in hashCode()
219 hash = LangUtils.hashCode(hash, this.name); in hashCode()
220 hash = LangUtils.hashCode(hash, this.value); in hashCode()
222 hash = LangUtils.hashCode(hash, this.parameters[i]); in hashCode()
DBasicNameValuePair.java36 import org.apache.http.util.LangUtils;
177 && LangUtils.equals(this.value, that.value); in equals()
184 int hash = LangUtils.HASH_SEED; in hashCode()
185 hash = LangUtils.hashCode(hash, this.name); in hashCode()
186 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;
220 int hash = LangUtils.HASH_SEED; in hashCode()
221 hash = LangUtils.hashCode(hash, this.defaultPort); in hashCode()
222 hash = LangUtils.hashCode(hash, this.name); in hashCode()
223 hash = LangUtils.hashCode(hash, this.layered); in hashCode()
224 hash = LangUtils.hashCode(hash, this.socketFactory); in hashCode()
/external/apache-http/src/org/apache/http/
DHttpHost.java37 import org.apache.http.util.LangUtils;
212 int hash = LangUtils.HASH_SEED; in hashCode()
213 hash = LangUtils.hashCode(hash, this.lcHostname); in hashCode()
214 hash = LangUtils.hashCode(hash, this.port); in hashCode()
215 hash = LangUtils.hashCode(hash, this.schemeName); in hashCode()
/external/apache-http/src/org/apache/http/util/
DLangUtils.java47 public final class LangUtils { class
53 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;
159 if (LangUtils.equals(state, entry.getState())) { in allocEntry()
/external/lzma/CPP/7zip/Bundles/SFXSetup/
DSFXSetup.dsp624 SOURCE=..\..\UI\FileManager\LangUtils.h
/external/apache-http/api/
Dapache-http-legacy-current.txt4277 public final deprecated class LangUtils {