HomeSort by relevance Sort by last modified time
    Searched full:compare (Results 726 - 750 of 7746) sorted by null

<<21222324252627282930>>

  /external/chromium/chrome/browser/autofill/
autofill_profile_unittest.cc 586 EXPECT_EQ(0, expected_a.Compare(*a));
587 EXPECT_EQ(0, expected_b.Compare(*b));
618 TEST(AutofillProfileTest, Compare) {
622 EXPECT_EQ(0, a.Compare(b));
627 EXPECT_EQ(0, a.Compare(b));
634 EXPECT_GT(0, a.Compare(b));
635 EXPECT_LT(0, b.Compare(a));
667 EXPECT_EQ(0, p.Compare(p2));
676 EXPECT_EQ(0, p.Compare(p2));
711 EXPECT_EQ(0, p.Compare(p2))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 58 CMP, // ARM compare instructions.
60 CMPZ, // ARM compare that sets only Z flag.
61 CMPFP, // ARM VFP compare instruction, sets FPSCR.
62 CMPFPw0, // ARM VFP compare against zero instruction, sets FPSCR.
102 VCEQ, // Vector compare equal.
103 VCEQZ, // Vector compare equal to zero.
104 VCGE, // Vector compare greater than or equal.
105 VCGEZ, // Vector compare greater than or equal to zero.
106 VCLEZ, // Vector compare less than or equal to zero.
107 VCGEU, // Vector compare unsigned greater than or equal
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
queue 95 class Compare = less<typename Container::value_type>>
107 Compare comp;
119 explicit priority_queue(const Compare& comp);
120 priority_queue(const Compare& comp, const container_type& c);
121 explicit priority_queue(const Compare& comp, container_type&& c);
124 const Compare& comp = Compare());
127 const Compare& comp, const container_type& c);
130 const Compare& comp, container_type&& c);
134 priority_queue(const Compare& comp, const Alloc& a)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
apicoll.cpp 27 // 02/10/98 damiba Added test for compare(UnicodeString&, UnicodeString&, int32_t)
90 // ctor, dtor, createInstance, compare, getStrength/setStrength
136 doAssert((col->compare("ab", "abc") == Collator::LESS), "ab < abc comparison failed");
137 doAssert((col->compare("ab", "AB") == Collator::LESS), "ab < AB comparison failed");
138 doAssert((col->compare("blackbird", "black-bird") == Collator::GREATER), "black-bird > blackbird comparison failed");
139 doAssert((col->compare("black bird", "black-bird") == Collator::LESS), "black bird > black-bird comparison failed");
140 doAssert((col->compare("Hello", "hello") == Collator::GREATER), "Hello > hello comparison failed");
141 doAssert((col->compare("","",success) == UCOL_EQUAL), "Comparison between empty strings failed");
151 doAssert((col->compare(abauIter, abssIter, success) == UCOL_LESS), "ab a-umlaut < ab sharp-s UCharIterator comparison failed");
156 doAssert((col->compare("ab", "abc", 2) == Collator::EQUAL), "ab = abc with length 2 comparison failed")
1859 virtual EComparisonResult compare(const UnicodeString& source, function in class:TestCollator
1865 virtual EComparisonResult compare(const UnicodeString& source, function in class:TestCollator
1872 virtual EComparisonResult compare(const UChar* source, function in class:TestCollator
1945 UCollationResult TestCollator::compare(const UnicodeString& source, function in class:TestCollator
1956 UCollationResult TestCollator::compare(const UnicodeString& source, function in class:TestCollator
1968 UCollationResult TestCollator::compare(const UChar* source, function in class:TestCollator
    [all...]
thcoll.cpp 90 // Loop through each word in the dictionary and compare it to the previous
106 Collator::EComparisonResult result = coll->compare(lastWord, word);
137 // Loop through each word in the dictionary and compare it to the previous
155 int32_t result = coll->compare(lastWord, word);
164 + " compare(" + IntlTest::prettify(lastWord, str);
233 // Vowels reorder, should compare \\u0e2d and \\u0e34
279 int32_t result = c.compare(s1, s2);
284 i/3 + ": compare(" + IntlTest::prettify(s1, t1)
300 // Collator.compare worked OK; now try the collation keys
  /external/chromium_org/third_party/leveldatabase/src/db/
version_set.cc 99 if (icmp.InternalKeyComparator::Compare(f->largest.Encode(), key) < 0) {
116 ucmp->Compare(*user_key, f->largest.user_key()) > 0);
123 ucmp->Compare(*user_key, f->smallest.user_key()) < 0);
279 if (s->ucmp->Compare(parsed_key.user_key, s->user_key) == 0) {
303 if (ucmp->Compare(user_key, f->smallest.user_key()) >= 0 &&
304 ucmp->Compare(user_key, f->largest.user_key()) <= 0) {
326 if (ucmp->Compare(user_key, f->smallest.user_key()) < 0) {
368 if (ucmp->Compare(user_key, f->smallest.user_key()) >= 0 &&
369 ucmp->Compare(user_key, f->largest.user_key()) <= 0) {
386 if (ucmp->Compare(user_key, tmp2->smallest.user_key()) < 0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglconfig.c 664 * qsort() in that the compare function accepts an additional
669 EGLint (*compare)(const _EGLConfig *, const _EGLConfig *,
683 while (i < count && compare(configs[i], configs[pivot], priv_data) < 0)
685 while (compare(configs[j], configs[pivot], priv_data) > 0)
700 _eglSortConfigs(configs, j, compare, priv_data);
701 _eglSortConfigs(configs + i, count - i, compare, priv_data);
707 * _eglSortConfigs for the meanings of match and compare.
713 EGLint (*compare)(const _EGLConfig *, const _EGLConfig *,
742 compare, priv_data);
  /external/icu4c/common/
uvector.h 61 * UVector needs a way to compare objects for equality. To do so, it
110 * Compare this vector with another. They will be considered
219 * as defined by 'compare'. The current elements are assumed to
222 void sortedInsert(void* obj, UElementComparator *compare, UErrorCode& ec);
226 * as defined by 'compare'. The current elements are assumed to
229 void sortedInsert(int32_t obj, UElementComparator *compare, UErrorCode& ec);
243 void sort(UElementComparator *compare, UErrorCode &ec);
251 void sortWithUComparator(UComparator *compare, const void *context, UErrorCode &ec);
268 void sortedInsert(UElement e, UElementComparator *compare, UErrorCode& ec);
  /external/mesa3d/src/egl/main/
eglconfig.c 664 * qsort() in that the compare function accepts an additional
669 EGLint (*compare)(const _EGLConfig *, const _EGLConfig *,
683 while (i < count && compare(configs[i], configs[pivot], priv_data) < 0)
685 while (compare(configs[j], configs[pivot], priv_data) > 0)
700 _eglSortConfigs(configs, j, compare, priv_data);
701 _eglSortConfigs(configs + i, count - i, compare, priv_data);
707 * _eglSortConfigs for the meanings of match and compare.
713 EGLint (*compare)(const _EGLConfig *, const _EGLConfig *,
742 compare, priv_data);
  /frameworks/base/tools/aapt/
AaptAssets.h 102 int compare(const AaptGroupEntry& o) const;
106 inline bool operator<(const AaptGroupEntry& o) const { return compare(o) < 0; }
107 inline bool operator<=(const AaptGroupEntry& o) const { return compare(o) <= 0; }
108 inline bool operator==(const AaptGroupEntry& o) const { return compare(o) == 0; }
109 inline bool operator!=(const AaptGroupEntry& o) const { return compare(o) != 0; }
110 inline bool operator>=(const AaptGroupEntry& o) const { return compare(o) >= 0; }
111 inline bool operator>(const AaptGroupEntry& o) const { return compare(o) > 0; }
147 return lhs.compare(rhs);
286 * compare against, but I'm not expecting to have enough files in a
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 61 /* Compare N bytes of S1 and S2. */
98 /* Compare S1 and S2. */
101 /* Compare N characters of S1 and S2. */
105 /* Compare the collated forms of S1 and S2. */
120 /* Compare the collated forms of S1 and S2 using rules from L. */
304 /* Compare N bytes of S1 and S2 (same as memcmp). */
330 /* Compare S1 and S2, ignoring case. */
334 /* Compare no more than N chars of S1 and S2, ignoring case. */
360 /* Compare S1 and S2 as strings holding name & indices/version numbers. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 61 /* Compare N bytes of S1 and S2. */
98 /* Compare S1 and S2. */
101 /* Compare N characters of S1 and S2. */
105 /* Compare the collated forms of S1 and S2. */
120 /* Compare the collated forms of S1 and S2 using rules from L. */
304 /* Compare N bytes of S1 and S2 (same as memcmp). */
330 /* Compare S1 and S2, ignoring case. */
334 /* Compare no more than N chars of S1 and S2, ignoring case. */
360 /* Compare S1 and S2 as strings holding name & indices/version numbers. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
string.h 61 /* Compare N bytes of S1 and S2. */
98 /* Compare S1 and S2. */
101 /* Compare N characters of S1 and S2. */
105 /* Compare the collated forms of S1 and S2. */
120 /* Compare the collated forms of S1 and S2 using rules from L. */
304 /* Compare N bytes of S1 and S2 (same as memcmp). */
330 /* Compare S1 and S2, ignoring case. */
334 /* Compare no more than N chars of S1 and S2, ignoring case. */
360 /* Compare S1 and S2 as strings holding name & indices/version numbers. */
  /bionic/libc/arch-arm/bionic/
strcmp.a15.S 112 use LDRB to load and compare byte by byte until
126 * Use UADD8 and SEL to compare words, and use REV and CLZ to compute the return value.
161 /* Macro to compare registers w1 and w2 and conditionally branch to label. */
211 /* Get here when the strings to compare are double-word aligned. */
212 /* Compare two words in every iteration. */
233 /* Fast compare byte by byte until the first string is word-aligned. */
292 /* Get here when the strings to compare are word-aligned,
298 /* Compare two words in every iteration. */
306 /* Load the next double-word from each string and compare. */
314 /* Macro to compare misaligned strings. *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/
string 792 compare(const basic_string& __str) const
793 { return _Base::compare(__str); }
796 compare(size_type __pos1, size_type __n1,
798 { return _Base::compare(__pos1, __n1, __str); }
801 compare(size_type __pos1, size_type __n1, const basic_string& __str,
803 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
806 compare(const _CharT* __s) const
809 return _Base::compare(__s);
813 // 5. string::compare specification questionable
815 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/debug/
string 831 compare(const basic_string& __str) const
832 { return _Base::compare(__str); }
835 compare(size_type __pos1, size_type __n1,
837 { return _Base::compare(__pos1, __n1, __str); }
840 compare(size_type __pos1, size_type __n1, const basic_string& __str,
842 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
845 compare(const _CharT* __s) const
848 return _Base::compare(__s);
852 // 5. string::compare specification questionable
854 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/debug/
string 831 compare(const basic_string& __str) const
832 { return _Base::compare(__str); }
835 compare(size_type __pos1, size_type __n1,
837 { return _Base::compare(__pos1, __n1, __str); }
840 compare(size_type __pos1, size_type __n1, const basic_string& __str,
842 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
845 compare(const _CharT* __s) const
848 return _Base::compare(__s);
852 // 5. string::compare specification questionable
854 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/debug/
string 792 compare(const basic_string& __str) const
793 { return _Base::compare(__str); }
796 compare(size_type __pos1, size_type __n1,
798 { return _Base::compare(__pos1, __n1, __str); }
801 compare(size_type __pos1, size_type __n1, const basic_string& __str,
803 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
806 compare(const _CharT* __s) const
809 return _Base::compare(__s);
813 // 5. string::compare specification questionable
815 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/debug/
string 792 compare(const basic_string& __str) const
793 { return _Base::compare(__str); }
796 compare(size_type __pos1, size_type __n1,
798 { return _Base::compare(__pos1, __n1, __str); }
801 compare(size_type __pos1, size_type __n1, const basic_string& __str,
803 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
806 compare(const _CharT* __s) const
809 return _Base::compare(__s);
813 // 5. string::compare specification questionable
815 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/debug/
string 792 compare(const basic_string& __str) const
793 { return _Base::compare(__str); }
796 compare(size_type __pos1, size_type __n1,
798 { return _Base::compare(__pos1, __n1, __str); }
801 compare(size_type __pos1, size_type __n1, const basic_string& __str,
803 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
806 compare(const _CharT* __s) const
809 return _Base::compare(__s);
813 // 5. string::compare specification questionable
815 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/debug/
string 792 compare(const basic_string& __str) const
793 { return _Base::compare(__str); }
796 compare(size_type __pos1, size_type __n1,
798 { return _Base::compare(__pos1, __n1, __str); }
801 compare(size_type __pos1, size_type __n1, const basic_string& __str,
803 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
806 compare(const _CharT* __s) const
809 return _Base::compare(__s);
813 // 5. string::compare specification questionable
815 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/debug/
string 831 compare(const basic_string& __str) const
832 { return _Base::compare(__str); }
835 compare(size_type __pos1, size_type __n1,
837 { return _Base::compare(__pos1, __n1, __str); }
840 compare(size_type __pos1, size_type __n1, const basic_string& __str,
842 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
845 compare(const _CharT* __s) const
848 return _Base::compare(__s);
852 // 5. string::compare specification questionable
854 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
string 879 compare(const basic_string& __str) const
880 { return _Base::compare(__str); }
883 compare(size_type __pos1, size_type __n1,
885 { return _Base::compare(__pos1, __n1, __str); }
888 compare(size_type __pos1, size_type __n1, const basic_string& __str,
890 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
893 compare(const _CharT* __s) const
896 return _Base::compare(__s);
900 // 5. string::compare specification questionable
902 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/debug/
string 831 compare(const basic_string& __str) const
832 { return _Base::compare(__str); }
835 compare(size_type __pos1, size_type __n1,
837 { return _Base::compare(__pos1, __n1, __str); }
840 compare(size_type __pos1, size_type __n1, const basic_string& __str,
842 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
845 compare(const _CharT* __s) const
848 return _Base::compare(__s);
852 // 5. string::compare specification questionable
854 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
string 879 compare(const basic_string& __str) const
880 { return _Base::compare(__str); }
883 compare(size_type __pos1, size_type __n1,
885 { return _Base::compare(__pos1, __n1, __str); }
888 compare(size_type __pos1, size_type __n1, const basic_string& __str,
890 { return _Base::compare(__pos1, __n1, __str, __pos2, __n2); }
893 compare(const _CharT* __s) const
896 return _Base::compare(__s);
900 // 5. string::compare specification questionable
902 compare(size_type __pos1, size_type __n1, const _CharT* __s) cons
    [all...]

Completed in 1656 milliseconds

<<21222324252627282930>>