Searched defs:equals (Results 126 - 150 of 969) sorted by relevance

1234567891011>>

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DDecoderSpecificInfo.java64 public boolean equals(Object o) { method in class:DecoderSpecificInfo
74 if (!Arrays.equals(bytes, that.bytes)) {
H A DProfileLevelIndicationDescriptor.java49 public boolean equals(Object o) { method in class:ProfileLevelIndicationDescriptor
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParametersHeader.java92 * @see gov.nist.javax.sip.header.AddressParameters#equals(java.lang.Object)
94 public boolean equals(Object other) { method in class:AddressParametersHeader
101 return this.getAddress().equals( o.getAddress() ) && this.equalParameters( (Parameters) o );
H A DContentLength.java151 public boolean equals(Object other) {
150 public boolean equals(Object other) { method in class:ContentLength
H A DMaxForwards.java110 public boolean equals(Object other) { method in class:MaxForwards
H A DRoute.java106 public boolean equals(Object other) { method in class:Route
107 return (other instanceof RouteHeader) && super.equals(other);
H A DRouteList.java71 public boolean equals(Object other) { method in class:RouteList
82 if (!route.equals(route1))
H A DSIPObject.java82 public boolean equals(Object other) { method in class:SIPObject
83 if (!this.getClass().equals(other.getClass()))
90 if (!hisclass.equals(myclass))
140 else if (!f.get(this).equals(g.get(that)))
149 if (myclass.equals(SIPObject.class))
176 if (!this.getClass().equals(other.getClass()))
239 if ((((String) hisObj).trim()).equals(""))
249 && myObj.getClass().equals(hisObj.getClass())
273 if (myclass.equals(SIPObject.class))
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPProfileKey.java75 public boolean equals(Object other) method in class:PProfileKey
77 return (other instanceof PProfileKey) && super.equals(other);
H A DPUserDatabase.java64 if((databaseName==null)||(databaseName.equals(" ")))
88 public boolean equals(Object other) method in class:PUserDatabase
90 return (other instanceof PUserDatabaseHeader) && super.equals(other);
H A DPrivacy.java128 public boolean equals(Object other) method in class:Privacy
133 return (this.getPrivacy().equals( o.getPrivacy() ));
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
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 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/owasp/sanitizer/src/main/org/owasp/html/
H A DFilterUrlByProtocolAttributePolicy.java152 public boolean equals(Object o) { method in class:FilterUrlByProtocolAttributePolicy
154 && protocols.equals(((FilterUrlByProtocolAttributePolicy) o).protocols);
/external/proguard/src/proguard/
H A DKeepClassSpecification.java97 public boolean equals(Object object) method in class:KeepClassSpecification
112 super.equals(other);
/external/proguard/src/proguard/evaluation/value/
H A DCompositeDoubleValue.java59 public boolean equals(Object object) method in class:CompositeDoubleValue
62 super.equals(object) &&
63 this.doubleValue1.equals(((CompositeDoubleValue)object).doubleValue1) &&
65 this.doubleValue2.equals(((CompositeDoubleValue)object).doubleValue2);
H A DCompositeFloatValue.java59 public boolean equals(Object object) method in class:CompositeFloatValue
62 super.equals(object) &&
63 this.floatValue1.equals(((CompositeFloatValue)object).floatValue1) &&
65 this.floatValue2.equals(((CompositeFloatValue)object).floatValue2);
H A DTopValue.java62 public boolean equals(Object object) method in class:TopValue
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DInternalNano.java134 public static boolean equals(int[] field1, int[] field2) { method in class:InternalNano
138 return Arrays.equals(field1, field2);
146 public static boolean equals(long[] field1, long[] field2) { method in class:InternalNano
150 return Arrays.equals(field1, field2);
158 public static boolean equals(float[] field1, float[] field2) { method in class:InternalNano
162 return Arrays.equals(field1, field2);
170 public static boolean equals(double[] field1, double[] field2) { method in class:InternalNano
174 return Arrays.equals(field1, field2);
182 public static boolean equals(boolean[] field1, boolean[] field2) { method in class:InternalNano
186 return Arrays.equals(field
196 public static boolean equals(byte[][] field1, byte[][] field2) { method in class:InternalNano
231 public static boolean equals(Object[] field1, Object[] field2) { method in class:InternalNano
[all...]
H A DUnknownFieldData.java65 public boolean equals(Object o) { method in class:UnknownFieldData
74 return tag == other.tag && Arrays.equals(bytes, other.bytes);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowColorDrawable.java20 public boolean equals(Object o) { method in class:ShadowColorDrawable
24 if (!super.equals(o)) return false;
H A DShadowCriteria.java44 public boolean equals(Object obj) { method in class:ShadowCriteria
H A DShadowGeoPoint.java32 public boolean equals(Object o) { method in class:ShadowGeoPoint
H A DShadowOverlayItem.java40 public boolean equals(Object o) { method in class:ShadowOverlayItem
49 return Strings.equals(title, that.title)
50 && Strings.equals(snippet, that.snippet)
52 geoPoint.equals(that.geoPoint);
/external/smack/src/com/kenai/jbosh/
H A DAbstractAttr.java22 * type's behavior for {@code equals()}, {@code hashCode()},
66 public boolean equals(final Object otherObj) { method in class:AbstractAttr
72 return value.equals(other.value);

Completed in 241 milliseconds

1234567891011>>