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

1 2 3 4 5 6 7 891011>>

  /external/skia/dm/
DMSerializeTask.h 10 // Record a picture, serialize it, deserialize it, then draw it and compare to reference bitmap.
  /external/skia/tools/skpdiff/
SkPMetric.h 17 * An image differ that uses the pdiff image metric to compare images.
  /external/stlport/test/unit/
math_aux.h 14 * This function is not only used to compare floating point values with a tolerance,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
minmax_comp.pass.cpp 12 // template<class T, StrictWeakOrder<auto, T> Compare>
13 // requires !SameType<T, Compare> && CopyConstructible<Compare>
15 // minmax(const T& a, const T& b, Compare comp);
  /ndk/sources/host-tools/make-3.81/tests/scripts/features/
quoting 28 # COMPARE RESULTS
  /ndk/sources/host-tools/make-3.81/tests/scripts/variables/
MAKELEVEL 29 # COMPARE RESULTS
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/
compare.hpp 49 static int compare( CharT const* s1, CharT const* s2, std::size_t n ) function in struct:boost::unit_test::ut_detail::case_ins
69 return x.size() == y.size() && ut_detail::case_ins<CharT>::compare( x.begin(), y.begin(), x.size() ) == 0;
86 : ut_detail::case_ins<CharT>::compare( x.begin(), y.begin(), x.size() ) < 0;
104 : traits_type::compare( x.begin(), y.begin(), x.size() ) < 0;
  /ndk/tests/device/test-gnustl-full/unit/
math_aux.h 14 * This function is not only used to compare floating point values with a tolerance,
  /ndk/tests/device/test-stlport/unit/
math_aux.h 14 * This function is not only used to compare floating point values with a tolerance,
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatTest.java 787 private void compare(String testName, String format, String expected) { method in class:DecimalFormatTest
792 private boolean compare(int count, String format, String expected) { method in class:DecimalFormatTest
816 compare("00.0#E0: 0.0", df.format(0.0), "00.0E0");
817 compare("00.0#E0: 1.0", df.format(1.0), "10.0E-1")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
set 21 template <class Key, class Compare = less<Key>,
29 typedef Compare key_compare;
141 template <class Key, class Compare, class Allocator>
143 operator==(const set<Key, Compare, Allocator>& x,
144 const set<Key, Compare, Allocator>& y);
146 template <class Key, class Compare, class Allocator>
148 operator< (const set<Key, Compare, Allocator>& x,
149 const set<Key, Compare, Allocator>& y);
151 template <class Key, class Compare, class Allocator>
153 operator!=(const set<Key, Compare, Allocator>& x
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneNumberUtilsTest.java 184 assertTrue(PhoneNumberUtils.compare(null, null));
185 assertFalse(PhoneNumberUtils.compare(null, "123"));
186 assertFalse(PhoneNumberUtils.compare("123", null));
268 assertFalse(PhoneNumberUtils.compare("", ""));
270 assertTrue(PhoneNumberUtils.compare("911", "911"));
271 assertFalse(PhoneNumberUtils.compare("911", "18005550911"));
272 assertTrue(PhoneNumberUtils.compare("5555", "5555"));
273 assertFalse(PhoneNumberUtils.compare("5555", "180055555555"));
275 assertTrue(PhoneNumberUtils.compare("+17005554141", "+17005554141"));
276 assertTrue(PhoneNumberUtils.compare("+17005554141", "+1 (700).555-4141"))
    [all...]
  /external/chromium_org/third_party/icu/source/test/iotest/
trnstst.c 121 UChar compare[] = { 0xfeff, 0x03a3, 0x03c4, 0x03b5, 0x03c6, 0x1f00, 0x03bd, 0x03bf, 0x03c2, 0x043C, 0x0000 }; local
193 len=fread(ubuf, sizeof(UChar), u_strlen(compare), infile);
195 if(len != u_strlen(compare))
197 log_err("Wanted %d UChars from file, got %d\n", u_strlen(compare), len);
201 if(u_strlen(compare) != u_strlen(ubuf))
203 log_err("Wanted %d UChars from file, but u_strlen() returns %d\n", u_strlen(compare), len);
206 if(u_strcmp(compare, ubuf))
227 UChar compare[] = { 0x03a3, 0x03c4, 0x03b5, 0x03c6, 0x1f00, 0x03bd, 0x03bf, 0x03c2, 0x043C, 0x0000 }; local
290 if(u_strlen(compare) != u_strlen(ubuf))
292 log_err("Wanted %d UChars from file, but u_strlen() returns %d\n", u_strlen(compare), u_strlen(ubuf))
    [all...]
  /external/icu4c/test/iotest/
trnstst.c 121 UChar compare[] = { 0xfeff, 0x03a3, 0x03c4, 0x03b5, 0x03c6, 0x1f00, 0x03bd, 0x03bf, 0x03c2, 0x043C, 0x0000 }; local
193 len=fread(ubuf, sizeof(UChar), u_strlen(compare), infile);
195 if(len != u_strlen(compare))
197 log_err("Wanted %d UChars from file, got %d\n", u_strlen(compare), len);
201 if(u_strlen(compare) != u_strlen(ubuf))
203 log_err("Wanted %d UChars from file, but u_strlen() returns %d\n", u_strlen(compare), len);
206 if(u_strcmp(compare, ubuf))
227 UChar compare[] = { 0x03a3, 0x03c4, 0x03b5, 0x03c6, 0x1f00, 0x03bd, 0x03bf, 0x03c2, 0x043C, 0x0000 }; local
290 if(u_strlen(compare) != u_strlen(ubuf))
292 log_err("Wanted %d UChars from file, but u_strlen() returns %d\n", u_strlen(compare), u_strlen(ubuf))
    [all...]
  /bionic/libc/arch-x86/string/
sse2-wcscmp-atom.S 90 * This implementation uses SSE to compare up to 16 bytes at a time.
178 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
187 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
196 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
245 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
254 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality */
324 pcmpeqd 16(%edi), %xmm2 /* compare first 4 double_words for equality */
332 pcmpeqd 32(%edi), %xmm2 /* compare first 4 double_words for equality */
340 pcmpeqd 48(%edi), %xmm2 /* compare first 4 double_words for equality */
414 pcmpeqd %xmm2, %xmm1 /* compare first 4 double_words for equality *
    [all...]
  /external/chromium_org/chrome/common/
content_settings_pattern_unittest.cc 119 EXPECT_EQ(ContentSettingsPattern::IDENTITY, pattern.Compare(pattern2));
133 EXPECT_EQ(ContentSettingsPattern::IDENTITY, pattern.Compare(pattern2));
193 ContentSettingsPattern::Wildcard().Compare(
312 Pattern("*").Compare(ContentSettingsPattern::Wildcard()));
471 TEST(ContentSettingsPatternTest, Compare) {
475 EXPECT_EQ(ContentSettingsPattern::IDENTITY, pattern1.Compare(pattern1));
477 Pattern("http://www.google.com:80").Compare(
480 Pattern("*://[*.]google.com:*").Compare(
487 // Compare invalid patterns.
491 invalid_pattern1.Compare(invalid_pattern2))
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
ColorBufferTest.java 59 compare(expectedColor, actualColor); method
77 compare(expectedColor, actualColor); method
96 compare(expectedColor, actualColor); method
115 compare(expectedColor, actualColor); method
134 compare(expectedColor, actualColor); method
153 compare(expectedColor, actualColor); method
172 compare(expectedColor, actualColor); method
185 private void compare(float[] expectedColor, float[] actualColor) { method in class:ColorBufferTest
NativeColorBufferTest.java 54 compare(expectedColor, actualColor); method
72 compare(expectedColor, actualColor); method
91 compare(expectedColor, actualColor); method
110 compare(expectedColor, actualColor); method
129 compare(expectedColor, actualColor); method
148 compare(expectedColor, actualColor); method
167 compare(expectedColor, actualColor); method
179 private void compare(float[] expectedColor, float[] actualColor) { method in class:NativeColorBufferTest
  /cts/tools/signature-tools/src/signature/io/html/
ClassByNameComparator.java 19 import signature.compare.model.IClassDefinitionDelta;
26 public int compare(IClassDefinitionDelta a, IClassDefinitionDelta b) { method in class:ClassByNameComparator
FieldByNameComparator.java 21 import signature.compare.model.IMemberDelta;
27 public int compare(T a, T b) { method in class:FieldByNameComparator
PackageByNameComparator.java 19 import signature.compare.model.IPackageDelta;
26 public int compare(IPackageDelta a, IPackageDelta b) { method in class:PackageByNameComparator
  /dalvik/vm/mterp/armv5te/
bincmp.S 4 * Generic two-operand compare-and-branch operation. Provide a "revcmp"
17 cmp r2, r3 @ compare (vA, vB)
zcmp.S 4 * Generic one-operand compare-and-branch operation. Provide a "revcmp"
14 cmp r2, #0 @ compare (vA, 0)
  /dalvik/vm/mterp/armv6t2/
bincmp.S 4 * Generic two-operand compare-and-branch operation. Provide a "revcmp"
16 cmp r2, r3 @ compare (vA, vB)
  /dalvik/vm/mterp/x86/
bincmp.S 4 * Generic two-operand compare-and-branch operation. Provide a "revcmp"
16 cmpl (rFP,rINST,4),%eax # compare (vA, vB)

Completed in 848 milliseconds

1 2 3 4 5 6 7 891011>>