Searched refs:equal (Results 1 - 25 of 203) sorted by relevance

123456789

/external/webkit/WebCore/page/
H A DSecurityOriginHash.h53 static bool equal(SecurityOrigin* a, SecurityOrigin* b) function in struct:WebCore::SecurityOriginHash
58 // equal without changing hash to match it.
61 return a->equal(b);
63 static bool equal(SecurityOrigin* a, const RefPtr<SecurityOrigin>& b) function in struct:WebCore::SecurityOriginHash
65 return equal(a, b.get());
67 static bool equal(const RefPtr<SecurityOrigin>& a, SecurityOrigin* b) function in struct:WebCore::SecurityOriginHash
69 return equal(a.get(), b);
71 static bool equal(const RefPtr<SecurityOrigin>& a, const RefPtr<SecurityOrigin>& b) function in struct:WebCore::SecurityOriginHash
73 return equal(a.get(), b.get());
/external/clearsilver/cs/
H A Dtest_numbers.cs7 ERROR: -1 should equal -1
37 ERROR: 0x15 (hex) should equal 21
47 CORRECT: (3*2)+4 does equal 10
49 ERROR: (3*2)+4 should equal 10
55 ERROR: 0 + 2 should equal 2
H A Dtest_joo.cs11 FAIL - empty string should equal empty string [1]
15 FAIL - existing var shouldn't equal empty string [2]
29 FAIL - Empty var should equal empty string [4]
41 PASS - Non existing var doesn't equal empty string
133 PASS - ELSE boolean true doesn't equal empty (1 != 0)
139 PASS - ELSE boolean true doesn't equal empty (1 != 0)
145 [22] FAIL - ELSE boolean false doesn't equal empty [22]
151 PASS - IF boolean true not equal empty (1 != 0)
157 PASS - IF boolean true not equal empty (1 != 0)
163 FAIL - IF boolean false not equal empt
[all...]
/external/webkit/WebCore/platform/
H A DKURLHash.h41 static bool equal(const KURL& a, const KURL& b) function in struct:WebCore::KURLHash
43 return StringHash::equal(a.string(), b.string());
H A DLinkHash.h41 static bool equal(LinkHash a, LinkHash b) { return a == b; } function in struct:WebCore::LinkHashHash
/external/e2fsprogs/lib/ext2fs/
H A Dtst_badblocks.c271 int equal; local
317 equal = ext2fs_badblocks_equal(bb1, bb2);
318 printf("bb1 and bb2 are %sequal.\n", equal ? "" : "NOT ");
319 if (equal)
322 equal = ext2fs_badblocks_equal(bb1, bb3);
323 printf("bb1 and bb3 are %sequal.\n", equal ? "" : "NOT ");
324 if (!equal)
327 equal = ext2fs_badblocks_equal(bb1, bb4);
328 printf("bb1 and bb4 are %sequal.\n", equal ? "" : "NOT ");
329 if (equal)
[all...]
/external/bluetooth/glib/gio/tests/
H A Dg-file.c30 gboolean equal; member in struct:TestPathsWithOper
85 gboolean equal; local
101 equal = g_file_equal (file1, file2);
106 return equal;
134 gboolean equal = compare_two_files (FALSE, cmp_paths[i].path1, cmp_paths[i].path2); local
135 g_assert_cmpint (equal, ==, cmp_paths[i].equal);
163 gboolean equal = compare_two_files (TRUE, cmp_uris[i].path1, cmp_uris[i].path2); local
164 g_assert_cmpint (equal, ==, cmp_uris[i].equal);
175 gboolean equal; local
211 gboolean equal = dup_equals (dup_paths[i].use_uri, dup_paths[i].path1); local
225 gboolean equal; local
274 gboolean equal = parse_check_utf8 (strings[i].use_uri, strings[i].path1, strings[i].path2); local
[all...]
/external/guava/src/com/google/common/collect/
H A DAbstractMapEntry.java46 return Objects.equal(this.getKey(), that.getKey())
47 && Objects.equal(this.getValue(), that.getValue());
/external/webkit/WebCore/platform/text/
H A DStringHash.h43 static bool equal(StringImpl* a, StringImpl* b) function in struct:WebCore::StringHash
83 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) function in struct:WebCore::StringHash
85 return equal(a.get(), b.get());
89 static bool equal(const String& a, const String& b) function in struct:WebCore::StringHash
91 return equal(a.impl(), b.impl());
192 static bool equal(StringImpl* a, StringImpl* b) function in class:WebCore::CaseFoldingHash
209 static bool equal(const RefPtr<StringImpl>& a, const RefPtr<StringImpl>& b) function in class:WebCore::CaseFoldingHash
211 return equal(a.get(), b.get());
222 static bool equal(const String& a, const String& b) function in class:WebCore::CaseFoldingHash
224 return equal(
226 static bool equal(const AtomicString& a, const AtomicString& b) function in class:WebCore::CaseFoldingHash
[all...]
H A DAtomicStringHash.h43 static bool equal(const AtomicString& a, const AtomicString& b) function in struct:WebCore::AtomicStringHash
/external/webkit/WebCore/plugins/
H A DPluginPackage.h64 static bool equal(const PluginPackage& a, const PluginPackage& b);
129 static bool equal(const uintptr_t a, const uintptr_t b) { return equal(reinterpret_cast<PluginPackage*>(a), reinterpret_cast<PluginPackage*>(b)); } function in struct:WebCore::PluginPackageHash
130 static bool equal(const RefPtr<PluginPackage>& a, const RefPtr<PluginPackage>& b) { return PluginPackage::equal(*a.get(), *b.get()); } function in struct:WebCore::PluginPackageHash
/external/webkit/JavaScriptCore/runtime/
H A DIdentifier.h78 static bool equal(const UString::Rep*, const char*);
79 static bool equal(const UString::Rep*, const UChar*, int length);
80 static bool equal(const UString::Rep* a, const UString::Rep* b) { return JSC::equal(a, b); } function in class:JSC::Identifier
88 static bool equal(const Identifier& a, const Identifier& b) { return a._ustring.rep() == b._ustring.rep(); } function in class:JSC::Identifier
89 static bool equal(const Identifier& a, const char* b) { return equal(a._ustring.rep(), b); } function in class:JSC::Identifier
124 return Identifier::equal(a, b);
129 return !Identifier::equal(a, b);
134 return Identifier::equal(
[all...]
/external/webkit/JavaScriptCore/wtf/
H A DHashFunctions.h91 static bool equal(T a, T b) { return a == b; } function in struct:WTF::IntHash
105 static bool equal(T a, T b) { return a == b; } function in struct:WTF::FloatHash
123 static bool equal(T a, T b) { return a == b; } function in struct:WTF::PtrHash
129 using PtrHash<P*>::equal;
130 static bool equal(const RefPtr<P>& a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
131 static bool equal(P* a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
132 static bool equal(const RefPtr<P>& a, P* b) { return a == b; } function in struct:WTF::PtrHash
144 static bool equal(const std::pair<T, U>& a, const std::pair<T, U>& b) function in struct:WTF::PairHash
146 return DefaultHash<T>::Hash::equal(a.first, b.first) && DefaultHash<U>::Hash::equal(
[all...]
/external/stlport/stlport/stl/
H A D_relops_cont.h10 equal(__x.begin(), __x.end(), __y.begin());
/external/stlport/test/eh/
H A Dtest_push_back.h44 EH_ASSERT( EH_STD::equal( original.begin(), original.end(), c.begin() ) );
H A Dtest_push_front.h40 EH_ASSERT( EH_STD::equal( original.begin(), original.end(), ++next ) );
/external/icu4c/common/
H A Dtriedict.cpp53 TernaryNode *equal; // Equal link member in struct:TernaryNode
69 equal = NULL;
76 delete equal;
143 // Must be equal to get here
149 p = p->equal;
188 parent->equal = newNode;
269 UBool equal; local
281 equal = (node->equal != NULL);
285 // for as long as we're traversing the equal subtre
388 uint16_t equal; // Equal link node index member in struct:CompactTrieHorizontalEntry
401 uint16_t equal; // Equal link node index member in struct:CompactTrieVerticalNode
1199 const CompactTrieNode *equal = getCompactNode(header, array[middle].equal); local
1237 const CompactTrieNode *equal = getCompactNode(header, vnode->equal); local
[all...]
/external/apache-http/src/org/apache/http/conn/routing/
H A DHttpRoute.java348 boolean equal = this.targetHost.equals(that.targetHost);
349 equal &=
353 equal &=
359 equal &=
365 if (equal && (this.proxyChain != null)) {
366 for (int i=0; equal && (i<this.proxyChain.length); i++)
367 equal = this.proxyChain[i].equals(that.proxyChain[i]);
370 return equal;
H A DRouteTracker.java335 boolean equal = this.targetHost.equals(that.targetHost);
336 equal &=
340 equal &=
346 equal &=
353 if (equal && (this.proxyChain != null)) {
354 for (int i=0; equal && (i<this.proxyChain.length); i++)
355 equal = this.proxyChain[i].equals(that.proxyChain[i]);
358 return equal;
/external/libvpx/vp8/encoder/
H A Dparms.cpp75 string equal; local
85 config_file >> equal; local
87 if(equal != "=")
/external/proguard/src/proguard/evaluation/value/
H A DIdentifiedReferenceValue.java54 public int equal(ReferenceValue other) method in class:IdentifiedReferenceValue
H A DIntegerValue.java200 * Returns whether this IntegerValue and the given IntegerValue are equal:
203 public abstract int equal(IntegerValue other); method in class:IntegerValue
212 * Returns whether this IntegerValue is less than or equal to the given
227 return -equal(other);
240 * Returns whether this IntegerValue is greater than or equal to the given IntegerValue:
433 * equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
435 public int equal(UnknownIntegerValue other) method in class:IntegerValue
437 return equal((IntegerValue)other);
451 * Returns whether this IntegerValue is less than or equal to the given
469 return -equal(othe
679 public int equal(SpecificIntegerValue other) method in class:IntegerValue
923 public int equal(ParticularIntegerValue other) method in class:IntegerValue
[all...]
/external/webkit/WebCore/platform/graphics/
H A DIntSizeHash.h33 static bool equal(const IntSize& a, const IntSize& b) { return a == b; } function in struct:WTF::IntHash
/external/webkit/WebCore/rendering/style/
H A DContentData.cpp63 return equal(text(), other.text());
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darcsum.h81 ArcSumEqual<A> equal; local
83 if (equal(current_arc, arcs[i])) {

Completed in 561 milliseconds

123456789