/external/apache-http/src/org/apache/http/auth/ |
D | AuthScope.java | 35 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 …]
|
D | NTUserPrincipal.java | 36 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()
|
D | NTCredentials.java | 36 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()
|
D | BasicUserPrincipal.java | 35 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()
|
D | UsernamePasswordCredentials.java | 35 import org.apache.http.util.LangUtils; 118 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; 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()
|
D | BasicNameValuePair.java | 36 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/ |
D | Scheme.java | 35 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/ |
D | HttpHost.java | 37 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/ |
D | LangUtils.java | 47 public final class LangUtils { class 53 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; 159 if (LangUtils.equals(state, entry.getState())) { in allocEntry()
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
D | SFXSetup.dsp | 624 SOURCE=..\..\UI\FileManager\LangUtils.h
|
/external/apache-http/api/ |
D | apache-http-legacy-current.txt | 4277 public final deprecated class LangUtils {
|