Searched defs:equals (Results 226 - 250 of 969) sorted by last modified time

1234567891011>>

/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-analysis-3.3.jar ... Type getType () public int getSize () public boolean isReference () public boolean equals (java.lang.Object) public int hashCode () public java ...
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Dfindbugs.jar ... .Throwable getCause () public int hashCode () int hashCode public boolean equals (java.lang.Object) Object obj edu.umd ...
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
H A Djdepend-2.9.jarMETA-INF/ META-INF/MANIFEST.MF jdepend/ jdepend/framework/ jdepend/framework/AbstractParser.class AbstractParser. ...
H A Dyjp-controller-api-redist.jar ... boolean sizeLimitEnabled int sizeLimit boolean perClassGarbage boolean sampledAllocationRecording public boolean equals (java.lang.Object) Object o com.yourkit ...
/external/pcre/dist/
H A Dpcregrep.c1014 char *equals = strchr(op->long_name, '='); local
1015 int nlen = (equals == NULL)? (int)strlen(op->long_name) :
1016 (int)(equals - op->long_name);
2667 char *equals = strchr(op->long_name, '='); local
2673 if (equals == NULL) /* Not thing=data case */
2679 int oplen = (int)(equals - op->long_name);
2704 int arglen = (argequals == NULL || equals == NULL)?
2713 if (equals != NULL && argequals != NULL)
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java127 int equals = nvp.indexOf('=');
130 if (equals < 0) {
134 name = decodePercent(nvp.substring(0, equals));
135 value = decodePercent(nvp.substring(equals + 1));
250 public boolean equals(Object obj) method in class:OAuth.Parameter
262 } else if (!key.equals(that.key))
267 } else if (!value.equals(that.value))
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DAddress.java125 @Override public boolean equals(Object other) { method in class:Address
129 && this.uriHost.equals(that.uriHost)
H A DHandshake.java105 @Override public boolean equals(Object other) { method in class:Handshake
108 return cipherSuite.equals(that.cipherSuite)
109 && peerCertificates.equals(that.peerCertificates)
110 && localCertificates.equals(that.localCertificates);
H A DMediaType.java113 @Override public boolean equals(Object o) { method in class:MediaType
114 return o instanceof MediaType && ((MediaType) o).mediaType.equals(mediaType);
H A DOkAuthenticator.java72 @Override public boolean equals(Object o) { method in class:OkAuthenticator.Challenge
74 && ((Challenge) o).scheme.equals(scheme)
75 && ((Challenge) o).realm.equals(realm);
111 @Override public boolean equals(Object o) { method in class:OkAuthenticator.Credential
112 return o instanceof Credential && ((Credential) o).headerValue.equals(headerValue);
H A DRoute.java78 @Override public boolean equals(Object obj) { method in class:Route
81 return (address.equals(other.address)
82 && proxy.equals(other.proxy)
83 && inetSocketAddress.equals(other.inetSocketAddress)
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHeader.java37 @Override public boolean equals(Object other) { method in class:Header
40 return this.name.equals(that.name)
41 && this.value.equals(that.value);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DResponseCacheTest.java1351 if (requestMethod.equals("POST") || requestMethod.equals("PUT")) {
1565 public boolean equals(Object o) { method in class:ResponseCacheTest.InMemoryResponseCache.Key
1575 if (cacheVariant != null ? !cacheVariant.equals(key.cacheVariant)
1579 if (!uri.equals(key.uri)) {
1630 if (!method.equals(this.method)) {
1722 if (!"GET".equals(method)) {
1739 if (!"GET".equals(((HttpURLConnection) urlConnection).getRequestMethod())) {
/external/okhttp/okio/src/main/java/okio/
H A DByteString.java186 @Override public boolean equals(Object o) { method in class:ByteString
187 return o == this || o instanceof ByteString && Arrays.equals(((ByteString) o).data, data);
H A DOkBuffer.java665 @Override public boolean equals(Object o) { method in class:OkBuffer
/external/okhttp/okio/src/test/java/okio/
H A DByteStringTest.java47 @Test public void equals() throws Exception { method in class:ByteStringTest
49 assertTrue(byteString.equals(byteString));
50 assertTrue(byteString.equals(ByteString.decodeHex("000102")));
51 assertTrue(ByteString.of().equals(ByteString.EMPTY));
52 assertTrue(ByteString.EMPTY.equals(ByteString.of()));
53 assertFalse(byteString.equals(new Object()));
54 assertFalse(byteString.equals(ByteString.decodeHex("000201")));
62 assertTrue(byteString.equals(ByteString.of(bronzeHorseman.getBytes(Util.UTF_8))));
/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java122 public boolean equals(Object otherObject) { method in class:DuplicateNameValueList
126 if (!otherObject.getClass().equals(this.getClass())) {
142 else if (!nv2.equals(nv1))
H A DGenericObject.java222 if (!mergeObject.getClass().equals(this.getClass()))
287 if (myclass.equals(GenericObject.class))
409 public boolean equals(Object that) { method in class:GenericObject
411 if (!this.getClass().equals(that.getClass()))
467 else if (!f.get(this).equals(g.get(that)))
473 if (myclass.equals(GenericObject.class))
496 if (!this.getClass().equals(other.getClass()))
556 if ((((String) hisObj).trim()).equals(""))
H A DGenericObjectList.java400 public boolean equals(Object other) { method in class:GenericObjectList
402 if (!this.getClass().equals(other.getClass()))
414 if (myobj.equals(hisobj))
428 if (hisobj.equals(myobj))
448 if (!this.getClass().equals(other.getClass()))
H A DHost.java139 public boolean equals(Object obj) { method in class:Host
141 if (!this.getClass().equals(obj.getClass())) {
145 return otherHost.hostname.equals(hostname);

Completed in 862 milliseconds

1234567891011>>