HomeSort by relevance Sort by last modified time
    Searched refs:compare (Results 101 - 125 of 4699) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.collate/locale.collate.byname/
compare.pass.cpp 16 // int compare(const charT* low1, const charT* high1,
44 assert(f.compare(s2.data(), s2.data() + s2.size(),
51 assert(f.compare(s2.data(), s2.data() + s2.size(),
61 assert(f.compare(s2.data(), s2.data() + s2.size(),
68 assert(f.compare(s2.data(), s2.data() + s2.size(),
78 assert(f.compare(s2.data(), s2.data() + s2.size(),
85 assert(f.compare(s2.data(), s2.data() + s2.size(),
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneNumberUtilsTest.java 194 assertTrue(PhoneNumberUtils.compare(null, null));
195 assertFalse(PhoneNumberUtils.compare(null, "123"));
196 assertFalse(PhoneNumberUtils.compare("123", null));
281 assertFalse(PhoneNumberUtils.compare("", ""));
283 assertTrue(PhoneNumberUtils.compare("911", "911"));
284 assertFalse(PhoneNumberUtils.compare("911", "18005550911"));
285 assertTrue(PhoneNumberUtils.compare("5555", "5555"));
286 assertFalse(PhoneNumberUtils.compare("5555", "180055555555"));
288 assertTrue(PhoneNumberUtils.compare("+17005554141", "+17005554141"));
289 assertTrue(PhoneNumberUtils.compare("+17005554141", "+1 (700).555-4141"))
    [all...]
  /external/autotest/client/cros/chameleon/
mirror_comparison.py 14 """A class to compare the resolutions and screens for mirrored mode.
16 Calling its member method compare() does the comparison.
35 def compare(self): member in class:MirrorComparer
67 return self._screen_comparer.compare()
  /external/guava/guava/src/com/google/common/collect/
ComparatorOrdering.java 37 @Override public int compare(T a, T b) { method in class:ComparatorOrdering
38 return comparator.compare(a, b);
  /external/iptables/libxtables/
Android.mk 16 LOCAL_CFLAGS += -Wno-sign-compare -Wno-pointer-arith -Wno-type-limits -Wno-missing-field-initializers -Wno-unused-parameter -Wno-clobbered -Wno-tautological-compare -Werror
38 LOCAL_CFLAGS += -Wno-sign-compare -Wno-pointer-arith -Wno-type-limits -Wno-missing-field-initializers -Wno-unused-parameter -Wno-clobbered -Wno-tautological-compare -Werror
  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 117 public abstract IntegerValue compare(DoubleValue other); method in class:DoubleValue
128 return compare(other).negate();
216 public IntegerValue compare(SpecificDoubleValue other) method in class:DoubleValue
218 return compare((DoubleValue)other);
231 return compare(other).negate();
319 public IntegerValue compare(ParticularDoubleValue other) method in class:DoubleValue
321 return compare((SpecificDoubleValue)other);
334 return compare(other).negate();
FloatValue.java 117 public abstract IntegerValue compare(FloatValue other); method in class:FloatValue
128 return compare(other).negate();
216 public IntegerValue compare(SpecificFloatValue other) method in class:FloatValue
218 return compare((FloatValue)other);
231 return compare(other).negate();
319 public IntegerValue compare(ParticularFloatValue other) method in class:FloatValue
321 return compare((SpecificFloatValue)other);
334 return compare(other).negate();
  /external/skia/debugger/
debuggermain.cpp 43 if (0 == iter->compare("--help") || 0 == iter->compare("-h")) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseBooleanEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
61 return Booleans.compare(getValue(), ((BooleanEncodedValue)o).getValue());
BaseByteEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
60 return Ints.compare(getValue(), ((ByteEncodedValue)o).getValue());
BaseCharEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
61 return Chars.compare(getValue(), ((CharEncodedValue)o).getValue());
BaseDoubleEncodedValue.java 60 int res = Ints.compare(getValueType(), o.getValueType());
62 return Double.compare(getValue(), ((DoubleEncodedValue)o).getValue());
BaseFloatEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
60 return Float.compare(getValue(), ((FloatEncodedValue)o).getValue());
BaseIntEncodedValue.java 58 int res = Ints.compare(getValueType(), o.getValueType());
60 return Ints.compare(getValue(), ((IntEncodedValue)o).getValue());
BaseLongEncodedValue.java 61 int res = Ints.compare(getValueType(), o.getValueType());
63 return Longs.compare(getValue(), ((LongEncodedValue)o).getValue());
BaseShortEncodedValue.java 59 int res = Ints.compare(getValueType(), o.getValueType());
61 return Shorts.compare(getValue(), ((ShortEncodedValue)o).getValue());
  /packages/apps/TV/src/com/android/tv/data/
TvInputNewComparator.java 39 public int compare(TvInputInfo lhs, TvInputInfo rhs) { method in class:TvInputNewComparator
55 return mInputManager.getDefaultTvInputInfoComparator().compare(lhs, rhs);
  /system/extras/alloc-stress/
Android.mk 6 LOCAL_CFLAGS += -g -Wall -Werror -Wno-missing-field-initializers -Wno-sign-compare
  /system/extras/memcpy-perf/
Android.mk 6 LOCAL_CFLAGS += -g -Wall -Werror -Wno-missing-field-initializers -Wno-sign-compare -O3
  /system/extras/zram-perf/
Android.mk 6 LOCAL_CFLAGS += -g -Wall -Werror -Wno-missing-field-initializers -Wno-sign-compare -Wno-unused-parameter
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/v850/
compare.s 3 .global compare
4 compare: label
  /art/test/461-get-reference-vreg/
get_reference_vreg_jni.cc 40 if (m_name.compare("testThisWithInstanceCall") == 0) {
46 } else if (m_name.compare("testThisWithStaticCall") == 0) {
50 } else if (m_name.compare("testParameter") == 0) {
54 } else if (m_name.compare("testObjectInScope") == 0) {
  /cts/suite/audio_quality/lib/include/
StringUtil.h 35 static int compare(const android::String8& str, const char* other);
  /device/google/marlin/power/
list.c 62 new_node->compare = head->compare;
134 if (current_node->compare) {
135 if (current_node->compare(current_node->data,
  /device/huawei/angler/power/
list.c 62 new_node->compare = head->compare;
134 if (current_node->compare) {
135 if (current_node->compare(current_node->data,

Completed in 651 milliseconds

1 2 3 45 6 7 8 91011>>