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

<<21222324252627282930>>

  /ndk/sources/host-tools/make-3.81/tests/scripts/variables/
MAKE 32 # COMPARE RESULTS
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/detail/
argument_value_usage.hpp 25 #include <boost/test/utils/basic_cstring/compare.hpp>
  /packages/apps/Music/src/com/android/music/
MusicAlphabetIndexer.java 35 protected int compare(String word, String letter) { method in class:MusicAlphabetIndexer
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
MessageDateComparator.java 23 public int compare(Message o1, Message o2) { method in class:MessageDateComparator
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
BoundedTreeSet.java 38 if (comparator().compare(e, last()) > 0) return false;
  /packages/services/Telephony/common/src/com/android/services/telephony/common/
MoreStrings.java 29 // Do exactly same thing as Uri#toSafeString() does, which will enable us to compare
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/
xt_tcpudp.h 11 u_int8_t flg_cmp; /* TCP flags compare byte */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_tcpudp.h 11 u_int8_t flg_cmp; /* TCP flags compare byte */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_tcpudp.h 11 u_int8_t flg_cmp; /* TCP flags compare byte */
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
RefSortedMap.java 101 if (hasStart && hasEnd && compare(start, end) >= 0) {
229 if (hasStart && compare(key, start) < 0) {
232 if (hasEnd && compare(key, end) >= 0) {
245 public int compare(K start, K end) {
246 return comparator != null ? comparator.compare(start, end)
360 public int compare(MapEntry<K, V> arg0, MapEntry<K, V> arg1) {
361 return RefSortedMap.this.compare(arg0.getKey(), arg1.getKey());
  /external/chromium_org/third_party/sqlite/src/test/
collate3.test 74 db collate string_compare {string compare}
195 db collate string_compare {string compare}
281 db collate user_defined "string compare"
296 db collate user_defined "string compare"
313 # Compare strings as numbers.
373 db collate $nm {string compare}
413 db collate $nm {string compare}
  /external/guava/guava/src/com/google/common/collect/
SortedLists.java 74 int c = comparator.compare(list.get(middle), key);
99 int c = comparator.compare(list.get(middle), key);
136 * A specification for which index to return if the list contains no elements that compare as
238 * <p>If there are elements in the list which compare as equal to the key, the choice of
239 * {@link KeyPresentBehavior} decides which index is returned. If no elements compare as equal to
250 * @param absentBehavior the specification for what to do if no elements of the list compare as
272 int c = comparator.compare(key, list.get(middle));
TreeBasedTable.java 189 || compare(lowerBound, upperBound) <= 0);
196 int compare(Object a, Object b) { method in class:TreeBasedTable.TreeRow
197 // pretend we can compare anything
200 return cmp.compare(a, b);
204 return o != null && (lowerBound == null || compare(lowerBound, o) <= 0)
205 && (upperBound == null || compare(upperBound, o) > 0);
360 lastValue != null && comparator.compare(next, lastValue) == 0;
  /external/proguard/src/proguard/evaluation/value/
LongValue.java 203 public IntegerValue compare(LongValue other) method in class:LongValue
217 return compare(other).negate();
358 public IntegerValue compare(SpecificLongValue other) method in class:LongValue
373 return compare(other).negate();
514 public IntegerValue compare(ParticularLongValue other) method in class:LongValue
516 return compare((SpecificLongValue)other);
529 return compare(other).negate();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOCase.java 32 * class to compare filenames.
137 * @param str1 the first string to compare, not null
138 * @param str2 the second string to compare, not null
155 * @param str1 the first string to compare, not null
156 * @param str2 the second string to compare, not null
174 * @param start the start to compare against, not null
189 * @param end the end to compare against, not null
  /cts/suite/audio_quality/lib/src/task/
TaskProcess.cpp 150 if (StringUtil::compare(mName, BuiltinProcessing::BUINTIN_FN_TABLE[i].mName) == 0) {
265 if (StringUtil::compare(item[0], "id") == 0) {
269 } else if (StringUtil::compare(item[0], "val") == 0) {
273 } else if (isInput && (StringUtil::compare(item[0], "consti") == 0)) {
279 } else if (isInput && (StringUtil::compare(item[0], "constf") == 0)) {
296 if (StringUtil::compare(name, "method") == 0) {
307 if (StringUtil::compare(tokens->at(0), "builtin") == 0) {
309 } else if (StringUtil::compare(tokens->at(0), "script") == 0) {
317 } else if (StringUtil::compare(name, "input") == 0) {
319 } else if (StringUtil::compare(name, "output") == 0)
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
UnsignedBytes.java 106 * @param a the first {@code byte} to compare
107 * @param b the second {@code byte} to compare
111 public static int compare(byte a, byte b) { method in class:UnsignedBytes
182 * #compare(byte, byte)}), the first pair of values that follow any common
278 // @Override public int compare(byte[] left, byte[] right) {
283 // * Compare 8 bytes at a time. Benchmarking shows comparing 8 bytes at a
294 // return UnsignedLongs.compare(lw, rw);
323 // int result = UnsignedBytes.compare(left[i], right[i]);
337 @Override public int compare(byte[] left, byte[] right) { method in class:UnsignedBytes.LexicographicalComparatorHolder.PureJavaComparator
340 int result = UnsignedBytes.compare(left[i], right[i])
    [all...]
  /external/icu4c/test/intltest/
thcoll.cpp 91 // Loop through each word in the dictionary and compare it to the previous
107 Collator::EComparisonResult result = coll->compare(lastWord, word);
138 // Loop through each word in the dictionary and compare it to the previous
154 int32_t result = coll->compare(lastWord, word);
163 + " compare(" + IntlTest::prettify(lastWord, str);
232 // Vowels reorder, should compare \\u0e2d and \\u0e34
278 int32_t result = c.compare(s1, s2);
283 i/3 + ": compare(" + IntlTest::prettify(s1, t1)
299 // Collator.compare worked OK; now try the collation keys
412 // In UCA 6.2, they compare equal again
    [all...]
ucaconf.cpp 233 int32_t cmpres = coll->compare(oldB, oldBlen, buffer, buflen, status);
234 int32_t cmpres2 = coll->compare(buffer, buflen, oldB, oldBlen, status);
237 errln("Compare result not symmetrical on line %i", line);
241 errln("Difference between coll->compare (%d) and sortkey compare (%d) on line %i",
  /external/lzma/CPP/Common/
MyString.h 91 // Compare
346 int Compare(const CStringBase& s) const
349 int Compare(const T *s) const
585 { return (s1.Compare(s2) == 0); }
589 { return (s1.Compare(s2) < 0); }
593 { return (s2.Compare(s1) == 0); }
597 { return (s1.Compare(s2) == 0); }
601 { return (s1.Compare(s2) != 0); }
605 { return (s2.Compare(s1) != 0); }
609 { return (s1.Compare(s2) != 0); }
    [all...]
  /libcore/luni/src/main/java/java/lang/
Double.java 149 * the double object to compare this object to.
160 return compare(value, object.value);
172 * representation ({@code 0x7ff8000000000000L}) (compare to {@link #doubleToRawLongBits}).
179 * {@code value}. <em>Not-a-Number (NaN)</em> values are preserved (compare
199 * <p>Note that, unlike {@code ==}, {@code -0.0} and {@code +0.0} compare
200 * unequal, and {@code NaN}s compare equal by this method.
203 * the object to compare this double with.
344 * the first value to compare.
346 * the second value to compare.
351 public static int compare(double double1, double double2) method in class:Double
    [all...]
Float.java 155 * the float object to compare this object to.
164 return compare(value, object.value);
182 * <p>Note that, unlike {@code ==}, {@code -0.0} and {@code +0.0} compare
183 * unequal, and {@code NaN}s compare equal by this method.
186 * the object to compare this float with.
200 * representation ({@code 0x7fc00000}) (compare to {@link #floatToRawIntBits}).
207 * float {@code value}. <em>Not-a-Number (NaN)</em> values are preserved (compare
349 * the first value to compare.
351 * the second value to compare.
357 public static int compare(float float1, float float2) method in class:Float
    [all...]
  /external/chromium_org/tools/site_compare/commands/
compare2.py 54 ["-u", "--url"], "URL to compare")
56 ["-l", "--list"], "List of URLs to compare", type="readfile")
131 compare = operators.GetOperator("equals_with_mask")
156 comparison_result = compare.Compare(file1, file2,
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 210 CMP temp1,#0 ;// compare pPredBufRow[i] with zero, 1=<i<=7
232 CMP Count,#16 ;// compare if i=8
248 CMP temp1,#0 ;// compare pPredBufRow[i] with zero, 1=<i<=7
258 CMP Rem,curQP ;// Compare Rem with round(curQP/2)
270 CMP Count,#128 ;// compare i with 64
  /frameworks/base/libs/hwui/
PathCache.h 152 int compare(const PathDescription& rhs) const;
155 return compare(other) == 0;
159 return compare(other) != 0;
164 return lhs.compare(rhs) < 0;
168 return lhs.compare(rhs);

Completed in 752 milliseconds

<<21222324252627282930>>