Searched defs:equals (Results 426 - 450 of 624) sorted by relevance

<<11121314151617181920>>

/external/nist-sip/java/javax/sip/message/
H A DMessage.java60 boolean equals(Object object); method in interface:Message
/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/proguard/src/proguard/evaluation/
H A DStack.java144 changed = changed || !thisValue.equals(newValue);
500 public boolean equals(Object object) method in class:Stack
520 !thisValue.equals(otherValue))
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DByteString.java236 // equals() and hashCode()
239 public boolean equals(final Object o) { method in class:ByteString
H A DMessage.java128 boolean equals(Object other); method in interface:Message
/external/skia/include/utils/
H A DSkMatrix44.h95 bool equals(SkScalar x, SkScalar y, SkScalar z, SkScalar w = SK_Scalar1) { function in struct:SkVector4
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationDirectoryItem.java458 public boolean equals(Object o) { method in class:AnnotationDirectoryItem
462 if (o==null || !this.getClass().equals(o.getClass())) {
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DRegisterType.java72 public boolean equals(Object o) { method in class:RegisterType
79 if (type != null ? !type.equals(that.type) : that.type != null) return false;
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue.cpp619 bool QScriptValue::equals(const QScriptValue& other) const function in class:QScriptValue
621 return d_ptr->equals(QScriptValuePrivate::get(other));
644 \sa equals()
/external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
H A Dtst_qscriptvalue.cpp89 void equals();
402 void tst_QScriptValue::equals() function in class:tst_QScriptValue
407 value.equals(previous);
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp66 bool WebNode::equals(const WebNode& n) const function in class:WebKit::WebNode
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest3.java53 public boolean equals(Object obj) { method in class:SerializationStressTest3.DefaultConstructor
129 public boolean equals(Object obj) { method in class:SerializationStressTest3.DefaultConstructorSub
158 public boolean equals(Object obj) { method in class:SerializationStressTest3.PrivateConstructor
188 public boolean equals(Object obj) { method in class:SerializationStressTest3.PrivateConstructorSub
216 public boolean equals(Object obj) { method in class:SerializationStressTest3.ProtectedConstructor
245 public boolean equals(Object obj) { method in class:SerializationStressTest3.ProtectedConstructorSub
273 public boolean equals(Object obj) { method in class:SerializationStressTest3.PublicConstructor
302 public boolean equals(Object obj) { method in class:SerializationStressTest3.PublicConstructorSub
344 passed = int1 == 0xA9 && object1.equals(v1);
411 assertTrue(MSG_TEST_FAILED + objToSave, test.equals(objLoade
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DHashMapTest.java421 assertTrue("Wrong result", it.next().equals(list.get(0)));
423 assertTrue("Wrong contents", map.keySet().iterator().next().equals(
438 assertTrue("Wrong result 2", it2.next().equals(next));
440 assertTrue("Wrong contents 2", map2.keySet().iterator().next().equals(
523 new Integer(i).toString()).equals((new Integer(i))));
558 assertTrue("Remove returned incorrect value", x.equals(new Integer(9)));
685 public boolean equals(Object o) { method in class:HashMapTest.ReusableKey
H A DTreeMapTest.java60 public boolean equals(Object o1, Object o2) { method in class:TreeMapTest.ReversedComparator
125 reversedTreeMap.firstKey().equals(new Integer(2).toString()));
127 reversedTreeMap.lastKey().equals(new Integer(1).toString()));
140 element.toString()).equals(element));
157 anotherTreeMap.firstKey().equals(new Integer(2).toString()));
159 anotherTreeMap.lastKey().equals(new Integer(1).toString()));
179 .equals(tm));
221 reversedTreeMap.firstKey().equals(new Integer(2).toString()));
223 reversedTreeMap.lastKey().equals(new Integer(1).toString()));
431 assertTrue("Returned incorrect last key", tm.lastKey().equals(
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DURI.java547 if (!tempString.substring(segIndex++).equals(".."))
1321 public boolean equals(Object p_test) method in class:URI
1328 if (((m_scheme == null && testURI.m_scheme == null) || (m_scheme != null && testURI.m_scheme != null && m_scheme.equals(
1329 testURI.m_scheme))) && ((m_userinfo == null && testURI.m_userinfo == null) || (m_userinfo != null && testURI.m_userinfo != null && m_userinfo.equals(
1330 testURI.m_userinfo))) && ((m_host == null && testURI.m_host == null) || (m_host != null && testURI.m_host != null && m_host.equals(
1331 testURI.m_host))) && m_port == testURI.m_port && ((m_path == null && testURI.m_path == null) || (m_path != null && testURI.m_path != null && m_path.equals(
1332 testURI.m_path))) && ((m_queryString == null && testURI.m_queryString == null) || (m_queryString != null && testURI.m_queryString != null && m_queryString.equals(
1333 testURI.m_queryString))) && ((m_fragment == null && testURI.m_fragment == null) || (m_fragment != null && testURI.m_fragment != null && m_fragment.equals(
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DURI.java418 if(uriSpec.startsWith("/") || !m_scheme.equals(p_base.m_scheme) || !p_base.getSchemeSpecificPart().startsWith("/"))
567 if (!tempString.substring(segIndex++).equals(".."))
1341 public boolean equals(Object p_test) method in class:URI
1348 if (((m_scheme == null && testURI.m_scheme == null) || (m_scheme != null && testURI.m_scheme != null && m_scheme.equals(
1349 testURI.m_scheme))) && ((m_userinfo == null && testURI.m_userinfo == null) || (m_userinfo != null && testURI.m_userinfo != null && m_userinfo.equals(
1350 testURI.m_userinfo))) && ((m_host == null && testURI.m_host == null) || (m_host != null && testURI.m_host != null && m_host.equals(
1351 testURI.m_host))) && m_port == testURI.m_port && ((m_path == null && testURI.m_path == null) || (m_path != null && testURI.m_path != null && m_path.equals(
1352 testURI.m_path))) && ((m_queryString == null && testURI.m_queryString == null) || (m_queryString != null && testURI.m_queryString != null && m_queryString.equals(
1353 testURI.m_queryString))) && ((m_fragment == null && testURI.m_fragment == null) || (m_fragment != null && testURI.m_fragment != null && m_fragment.equals(
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java132 expr = equals(opPos); break;
293 protected Expression equals(int opPos) throws TransformerException method in class:Compiler
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXObject.java633 public boolean equals(XObject obj2) method in class:XObject
640 return obj2.equals(this);
644 return m_obj.equals(obj2.m_obj);
671 return !equals(obj2);
750 // If equals at the expression level calls deepEquals, I think we're
752 // equals. I hope.
753 if(!this.equals((XObject)expr))
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
H A DJDKPKCS12KeyStore.java138 public boolean equals( method in class:JDKPKCS12KeyStore.CertId
315 if (tc.equals(cert))
329 if (tc.equals(cert))
393 if (!i.equals(s))
401 if (sub.equals(i))
750 if (info.getContentType().equals(data))
759 if (c[i].getContentType().equals(data))
767 if (b.getBagId().equals(pkcs8ShroudedKeyBag))
797 if (!existing.getDERObject().equals(attr))
809 if (aOid.equals(pkcs_9_at_friendlyNam
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalList.java173 public boolean equals(Object other) { method in class:LocalList.Entry
886 endEntry.getRegisterSpec().equals(spec)) {
/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java431 @Override public boolean equals(@Nullable Object obj) { method in class:ArrayTable
434 return cellSet().equals(other.cellSet());
H A DImmutableList.java498 @Override public boolean equals(Object obj) { method in class:ImmutableList
H A DImmutableMultimap.java451 @Override public boolean equals(@Nullable Object object) { method in class:ImmutableMultimap
454 return this.map.equals(that.asMap());
562 * of times a key appears in the returned multiset equals the number of
H A DLinkedListMultimap.java818 @Override public boolean equals(@Nullable Object object) { method in class:LinkedListMultimap.MultisetView
819 return keyCount.equals(object);
1081 @Override public boolean equals(@Nullable Object other) { method in class:LinkedListMultimap
1087 return this.asMap().equals(that.asMap());
H A DLists.java589 @Override public boolean equals(@Nullable Object obj) { method in class:Lists.StringAsImmutableList
695 @Override public boolean equals(@Nullable Object o) { method in class:Lists.CharSequenceAsList
900 * An implementation of {@link List#equals(Object)}.

Completed in 504 milliseconds

<<11121314151617181920>>