Searched defs:equal (Results 76 - 100 of 130) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMap.h140 // static bool equal(const ValueType&, const T&);
149 // static bool equal(const ValueType&, const T&);
250 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a, b); } function in struct:WTF::HashMapTranslator
261 template<typename T, typename U> static bool equal(const T& a, const U& b) { return Translator::equal(a, b); } function in struct:WTF::HashMapTranslatorAdapter
H A DListHashSetTest.cpp531 static bool equal(const Complicated& a, const Complicated& b) { return a.m_simple.m_value == b.m_simple.m_value; } function in struct:__anon11434::ComplicatedHashFunctions
535 static bool equal(const Complicated& a, const Simple& b) { return a.m_simple.m_value == b.m_value; } function in struct:__anon11434::ComplexityTranslator
H A DLinkedHashSet.h277 static bool equal(const Node& a, const ValuePeekInType& b) { return HashFunctions::equal(a.m_value, b); } function in struct:WTF::LinkedHashSetTranslator
278 static bool equal(const Node& a, const Node& b) { return HashFunctions::equal(a.m_value, b.m_value); } function in struct:WTF::LinkedHashSetTranslator
575 template<typename T, typename U> static bool equal(const T& a, const U& b) { return Translator::equal(a.m_value, b); } function in struct:WTF::LinkedHashSetTranslatorAdapter
H A DListHashSet.h433 template<typename T> static bool equal(const T& a, const T& b) { return HashArg::equal(a->m_value, b->m_value); } function in struct:WTF::ListHashSetNodeHashFunctions
654 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a->m_value, b); } function in struct:WTF::ListHashSetTranslator
767 template<typename T, typename U> static bool equal(const T& a, const U& b) { return Translator::equal(a->m_value, b); } function in struct:WTF::ListHashSetTranslatorAdapter
H A DHashTable.h286 template<typename T, typename U> static bool equal(const T& a, const U& b) { return HashFunctions::equal(a, b); } function in class:WTF::IdentityHashTranslator
344 return !HashTranslator::equal(KeyTraits::emptyValue(), key);
661 if (HashTranslator::equal(Extractor::extract(*entry), key))
670 if (!isDeletedBucket(*entry) && HashTranslator::equal(Extractor::extract(*entry), key))
704 if (HashTranslator::equal(Extractor::extract(*entry), key))
712 else if (HashTranslator::equal(Extractor::extract(*entry), key))
746 if (HashTranslator::equal(Extractor::extract(*entry), key))
754 else if (HashTranslator::equal(Extractor::extract(*entry), key))
823 if (HashTranslator::equal(Extracto
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.cpp146 static bool equal(StringImpl* const& str, const UCharBuffer& buf) function in struct:WTF::UCharBufferTranslator
148 return WTF::equal(str, buf.s, buf.length);
174 static bool equal(StringImpl* const& string, const HashAndCharacters<CharacterType>& buffer) function in struct:WTF::HashAndCharactersTranslator
176 return WTF::equal(string, buffer.characters, buffer.length);
200 static bool equal(StringImpl* const& string, const HashAndUTF8Characters& buffer) function in struct:WTF::HashAndUTF8CharactersTranslator
311 static bool equal(StringImpl* const& string, const SubstringLocation& buffer) function in struct:WTF::SubstringTranslator
314 return WTF::equal(string, buffer.baseString->characters8() + buffer.start, buffer.length);
315 return WTF::equal(string, buffer.baseString->characters16() + buffer.start, buffer.length);
352 static bool equal(StringImpl* const& str, const LCharBuffer& buf) function in struct:WTF::LCharBufferTranslator
354 return WTF::equal(st
372 static bool equal(StringImpl* const& str, const CharBuffer& buf) function in struct:WTF::CharBufferFromLiteralDataTranslator
[all...]
H A DStringImpl.cpp1140 // only call equal if the hashes match.
1150 while (searchHash != matchHash || !equal(searchCharacters + i, matchString, matchLength)) {
1202 // only call equal() if the hashes match.
1217 while (searchHash != matchHash || !equal(searchCharacters + i, matchCharacters, matchLength)) {
1378 // only call equal if the hashes match.
1391 while (searchHash != matchHash || !equal(searchCharacters + delta, matchCharacters, matchLength)) {
1483 return equal(stringImpl->characters8() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
1484 return equal(stringImpl->characters16() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
1912 return equal(a->characters8(), b->characters8(), aLength);
1914 return equal(
1923 bool equal(const StringImpl* a, const StringImpl* b) function
1950 bool equal(const StringImpl* a, const LChar* b, unsigned length) function
1955 bool equal(const StringImpl* a, const UChar* b, unsigned length) function
1960 bool equal(const StringImpl* a, const LChar* b) function
2025 bool equal = true; local
[all...]
/external/deqp/framework/common/
H A DtcuVectorUtil.hpp108 template<typename T> inline bool equal (T a, T b) { return (a == b); } function in namespace:tcu
227 inline Vector<bool, Size> equal (const Vector<T, Size>& a, const Vector<T, Size>& b) function in namespace:tcu
/external/guava/guava/src/com/google/common/io/
H A DByteStreams.java601 public static boolean equal(InputSupplier<? extends InputStream> supplier1, method in class:ByteStreams
790 * of bytes read is, at most, equal to {@code len}.
/external/llvm/lib/TableGen/
H A DTGLexer.h42 equal, question, // = ? enumerator in enum:llvm::tgtok::TokKind
/external/llvm/unittests/Support/
H A DPath.cpp375 bool equal; local
376 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal)); local
377 EXPECT_TRUE(equal);
/external/sqlite/android/
H A Dsqlite3_android.cpp96 bool equal = local
101 if (equal) {
/external/valgrind/main/memcheck/tests/
H A Dstr_tester.c58 /* Complain if first two args don't strcmp as equal. */
60 equal (const char *a, const char *b, int number) function
137 equal (one, "abcd", 2); /* Basic test. */
140 equal (one, "x", 3); /* Writeover. */
141 equal (one+2, "cd", 4); /* Wrote too much? */
145 equal (one, "hi there", 5); /* Basic test encore. */
146 equal (two, "hi there", 6); /* Stomped on source? */
149 equal (one, "", 7); /* Boundary condition. */
154 equal (one + i, "hi there", 8 + (i * 2));
156 equal (tw
[all...]
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Djs_fs_test.cc145 << "Vars are not equal: " << VarToString(it->request)
367 bool equal = VarsAreEqual(expected_item, var_item); local
371 if (!equal)
391 bool equal = VarsAreEqual(expected_value, var_value); local
396 if (!equal) {
423 bool equal = memcmp(var_ptr, expected_ptr, var_len) == 0; local
427 return equal;
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFormController.cpp159 static bool equal(const FormElementKey& a, const FormElementKey& b) { return a == b; } function in struct:blink::FormElementKeyHash
277 if (!equal(key.type(), "file", 4))
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtitvinf.cpp165 UBool equal = ( local
169 if ( equal == TRUE ) {
170 equal = fIntervalPatterns->equals(*(other.fIntervalPatterns));
173 return equal;
H A Ddtitvfmt.cpp196 UBool equal; local
197 equal = (this == fmt);
199 equal = (*fInfo == *fmt->fInfo);
200 equal = (*fDateFormat == *fmt->fDateFormat);
201 equal = fFromCalendar->isEquivalentTo(*fmt->fFromCalendar) ;
202 equal = fToCalendar->isEquivalentTo(*fmt->fToCalendar) ;
203 equal = (fSkeleton == fmt->fSkeleton);
/external/chromium_org/third_party/skia/tests/
H A DMatrixTest.cpp22 SkDebugf("not equal %g %g\n", (float)a[i], (float)b[i]);
32 bool equal = a == b; local
34 if (equal != cheapEqual) {
35 if (equal) {
65 return equal;
/external/icu/icu4c/source/i18n/
H A Ddtitvinf.cpp165 UBool equal = ( local
169 if ( equal == TRUE ) {
170 equal = fIntervalPatterns->equals(*(other.fIntervalPatterns));
173 return equal;
H A Ddtitvfmt.cpp196 UBool equal; local
197 equal = (this == fmt);
199 equal = (*fInfo == *fmt->fInfo);
200 equal = (*fDateFormat == *fmt->fDateFormat);
201 equal = fFromCalendar->isEquivalentTo(*fmt->fFromCalendar) ;
202 equal = fToCalendar->isEquivalentTo(*fmt->fToCalendar) ;
203 equal = (fSkeleton == fmt->fSkeleton);
/external/skia/tests/
H A DMatrixTest.cpp22 SkDebugf("not equal %g %g\n", (float)a[i], (float)b[i]);
32 bool equal = a == b; local
34 if (equal != cheapEqual) {
35 if (equal) {
65 return equal;
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_utl.c582 * pattern is longer, compare just an equal-length suffix with the
851 static int do_check_string(ASN1_STRING *a, int cmp_type, equal_fn equal, argument
862 return equal(a->data, a->length, b, blen, flags);
875 rv = equal(astr, astrlen, b, blen, flags);
891 equal_fn equal; local
899 equal = equal_email;
909 equal = equal_nocase;
911 equal = equal_wildcard;
917 equal = equal_case;
941 if (do_check_string(cstr, alt_type, equal, flag
[all...]
/external/svox/pico/lib/
H A Dpicoktab.c825 Part-of-speech symbols with equal number of components are grouped
973 picoos_uint16 i, j, equal; local
975 equal = 1;
978 while (equal && (i < len)) {
984 equal = (j < len);
988 return equal;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTextEditor.js314 equal: function(positionHandle) { }
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHandle.h1315 static bool equal(T* a, const blink::Member<T>& b) { return a == b; } function in struct:WTF::PtrHash
1316 static bool equal(const blink::Member<T>& a, T* b) { return a == b; } function in struct:WTF::PtrHash
1318 static bool equal(const U& a, const V& b) { return a == b; } function in struct:WTF::PtrHash
1327 using PtrHash<P*>::equal;
1328 static bool equal(const RefPtr<P>& a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
1329 static bool equal(P* a, const RefPtr<P>& b) { return a == b; } function in struct:WTF::PtrHash
1330 static bool equal(const RefPtr<P>& a, P* b) { return a == b; } function in struct:WTF::PtrHash

Completed in 1130 milliseconds

123456