Searched refs:equals (Results 1 - 25 of 230) sorted by relevance

12345678910

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DReplicationHostAddress.java62 public boolean equals(Object o){ method in class:ReplicationHostAddress
64 return this.toString().equals(((ReplicationHostAddress)o).toString());
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/serial/test/
H A DMarshalledObject.java36 public boolean equals(Object o) { method in class:MarshalledObject
41 return this.data.equals(other.data) &&
42 this.primaryKey.equals(other.primaryKey) &&
43 this.indexKey1.equals(other.indexKey1) &&
44 this.indexKey2.equals(other.indexKey2);
87 if ("1".equals(keyName)) {
94 } else if ("2".equals(keyName)) {
108 if ("1".equals(keyName)) {
115 } else if ("2".equals(keyName)) {
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DMapEntryParameter.java61 * java.util.Map.Entry#equals}.
65 public boolean equals(Object other) { method in class:MapEntryParameter
74 : key.equals(e.getKey())) &&
76 : value.equals(e.getValue()));
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/evolve/
H A DEntityConverter.java64 * and given object, and if the {@link Converter#equals} superclass method
68 public boolean equals(Object other) { method in class:EntityConverter
71 return deletedKeys.equals(o.deletedKeys) &&
72 super.equals(other);
H A DMutation.java60 public boolean equals(Object other) { method in class:Mutation
63 return className.equals(o.className) &&
65 ((fieldName != null) ? fieldName.equals(o.fieldName)
H A DRenamer.java80 * object, and if the {@link Mutation#equals} method returns true.
83 public boolean equals(Object other) { method in class:Renamer
86 return newName.equals(o.newName) &&
87 super.equals(other);
H A DConversion.java47 * <p>The {@code Conversion} class must implement the standard equals method.
48 * See {@link #equals} for more information.</p>
83 * public boolean equals(Object o) {
151 * public boolean equals(Object o) {
238 * public boolean equals(Object o) {
301 * public boolean equals(Object o) {
364 * public boolean equals(Object o) {
418 * The standard {@code equals} method that must be implemented by
425 * implement the {@code equals} method.</p>
427 * <p>If the {@code equals} metho
437 boolean equals(Object other); method in interface:Conversion
[all...]
H A DConverter.java76 /* Require explicit implementation of the equals method. */
79 Method m = cls.getMethod("equals", Object.class);
82 ("Conversion class does not implement the equals method " +
83 "explicitly (Object.equals is not sufficient): " +
100 * given object, and if the {@link Mutation#equals} superclass method
104 public boolean equals(Object other) { method in class:Converter
107 return conversion.equals(o.conversion) &&
108 super.equals(other);
H A DMutations.java164 public boolean equals(Object other) { method in class:Mutations
167 return renamers.equals(o.renamers) &&
168 deleters.equals(o.deleters) &&
169 converters.equals(o.converters);
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/serial/
H A DTestSerial.java49 public boolean equals(Object object) { method in class:TestSerial
54 : (!o.other.equals(this.other))) {
62 : (!o.s.equals(this.s))) {
H A DTestSerial.java.original49 public boolean equals(Object object)
55 : (!o.other.equals(this.other)))
62 : (!o.s.equals(this.s)))
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/model/
H A DPrimaryKeyMetadata.java47 public boolean equals(Object other) { method in class:PrimaryKeyMetadata
50 return super.equals(o) &&
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSTimingFunctionValue.cpp42 bool CSSCubicBezierTimingFunctionValue::equals(const CSSCubicBezierTimingFunctionValue& other) const function in class:WebCore::CSSCubicBezierTimingFunctionValue
53 bool CSSStepsTimingFunctionValue::equals(const CSSStepsTimingFunctionValue& other) const function in class:WebCore::CSSStepsTimingFunctionValue
H A DCSSAspectRatioValue.cpp41 bool CSSAspectRatioValue::equals(const CSSAspectRatioValue& other) const function in class:WebCore::CSSAspectRatioValue
H A DCSSInheritedValue.h38 bool equals(const CSSInheritedValue&) const { return true; } function in class:WebCore::CSSInheritedValue
H A DCSSUnicodeRangeValue.cpp40 bool CSSUnicodeRangeValue::equals(const CSSUnicodeRangeValue& other) const function in class:WebCore::CSSUnicodeRangeValue
H A DDashboardRegion.h33 bool equals(const DashboardRegion& other) const function in class:WebCore::DashboardRegion
37 && m_next ? other.m_next && m_next->equals(*other.m_next) : !other.m_next;
H A DWebKitCSSFilterValue.cpp98 bool WebKitCSSFilterValue::equals(const WebKitCSSFilterValue& other) const function in class:WebCore::WebKitCSSFilterValue
100 return m_type == other.m_type && CSSValueList::equals(other);
H A DCSSBorderImageSliceValue.cpp52 bool CSSBorderImageSliceValue::equals(const CSSBorderImageSliceValue& other) const function in class:WebCore::CSSBorderImageSliceValue
H A DCSSInitialValue.h44 bool equals(const CSSInitialValue&) const { return true; } function in class:WebCore::CSSInitialValue
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DItem.java237 return i.strVal1.equals(strVal1);
239 return i.strVal1.equals(strVal1)
240 && i.strVal2.equals(strVal2);
245 return i.strVal1.equals(strVal1)
246 && i.strVal2.equals(strVal2)
247 && i.strVal3.equals(strVal3);
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dtest_helpers.cpp131 bool equals = true; local
132 while (equals && *expected_iter != NULL && actual_iter != actual.end()) {
134 equals = false;
140 if (equals && ((*expected_iter == NULL && actual_iter != actual.end()) ||
142 equals = false;
144 if (!equals) {
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DMarshalledObject.java97 if ("1".equals(keyName)) {
104 } else if ("2".equals(keyName)) {
118 if ("1".equals(keyName)) {
125 } else if ("2".equals(keyName)) {
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/
H A DTestEntity.java25 public boolean equals(Object o) { method in class:TestEntity
/macosx-10.10/passwordserver_sasl-193/cyrus_sasl/java/CyrusSasl/
H A DClientFactory.java53 if (protocol.equals("imap") ||
54 protocol.equals("pop3") ||
55 protocol.equals("smtp")) {

Completed in 126 milliseconds

12345678910