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

<<11121314151617181920>>

  /external/chromium_org/sync/syncable/
syncable_id.h 74 inline int compare(const Id& that) const { function in class:syncer::syncable::Id
75 return s_.compare(that.s_);
110 // This method returns an ID that will compare less than any valid ID.
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
streamcollection.h 65 if ((*it)->label().compare(label) == 0) {
97 if ((*it)->label().compare(stream->label()) == 0)
106 if ((*it)->label().compare(remove_stream->label()) == 0) {
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
jid.h 71 bool operator<(const Jid& other) const { return Compare(other) < 0; };
72 bool operator>(const Jid& other) const { return Compare(other) > 0; };
74 int Compare(const Jid & other) const;
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_utils.h 35 // Compare sections of two byte arrays for equality
40 // @param length the length of the byte arrays to compare
52 // @param length the number of bytes to compare
  /external/chromium_org/third_party/sqlite/src/test/
reindex.test 71 return [expr {-[string compare $a $b]}]
74 return [expr {-[string compare [string tolower $a] [string tolower $b]]}]
113 return [string compare $a $b]
whereB.test 217 # the columns compare false
235 # the columns compare false
278 # the columns compare false
296 # the columns compare false
338 # the columns compare false
356 # the columns compare false
398 # the columns compare false
416 # the columns compare false
457 # the columns compare false
475 # the columns compare fals
    [all...]
  /external/chromium_org/v8/test/intl/collator/
normalization.js 44 assertEquals(0, collator.compare(toCompare[0], toCompare[1]));
50 assertEquals(0, collator.compare(toCompare[0], toCompare[1]));
55 assertEquals(0, collator.compare(toCompare[0], toCompare[1]));
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstArray.java 122 int compare = thisItem.compareTo(otherItem); local
123 if (compare != 0) {
124 return compare;
  /external/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 1 //===-- CmpInstAnalysis.h - Utils to help fold compare insts ------===//
10 // This file holds routines to help analyse compare instructions
11 // and fold them into constants or other compare instructions
  /external/llvm/test/CodeGen/SystemZ/
cmpxchg-01.ll 1 ; Test 8-bit compare and swap.
6 ; Check compare and swap with a variable.
39 ; Check compare and swap with constants. We should force the constants into
cmpxchg-02.ll 1 ; Test 16-bit compare and swap.
6 ; Check compare and swap with a variable.
39 ; Check compare and swap with constants. We should force the constants into
  /external/sfntly/cpp/src/test/
test_utils.h 35 // Compare sections of two byte arrays for equality
40 // @param length the length of the byte arrays to compare
52 // @param length the number of bytes to compare
  /external/skia/tools/skpdiff/
viewer.html 53 <img-compare type="alphaMask"
61 <img-compare type="baseline"
66 <img-compare type="test"
  /external/stlport/stlport/stl/
_collate.h 50 int compare(const char* __low1, const char* __high1, function in class:collate
86 int compare(const wchar_t* __low1, const wchar_t* __high1, function in class:collate
166 return __coll.compare(__x.data(), __x.data() + __x.size(),
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_copy_test.java 50 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]);
74 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]);
98 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_copy_test.java 50 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]);
74 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]);
98 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]);
  /libcore/luni/src/main/java/java/text/
CollationKey.java 31 * {@code Collator.compare(String, String)} compares two strings and returns
45 * {@code Collator.compare(String, String)} can examine and process the strings
64 * // Inside body of sort routine, compare keys this way
  /libcore/luni/src/main/java/libcore/icu/
RuleBasedCollatorICU.java 66 public int compare(String source, String target) { method in class:RuleBasedCollatorICU
67 return NativeCollation.compare(address, source, target);
131 return (compare(source, target) == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.merge/
inplace_merge_comp.pass.cpp 12 // template<BidirectionalIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare>
14 // && CopyConstructible<Compare>
16 // inplace_merge(Iter first, Iter middle, Iter last, Compare comp);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.nth.element/
nth_element_comp.pass.cpp 12 // template<RandomAccessIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare>
14 // && CopyConstructible<Compare>
16 // nth_element(Iter first, Iter nth, Iter last, Compare comp);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort/
partial_sort_comp.pass.cpp 12 // template<RandomAccessIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare>
14 // && CopyConstructible<Compare>
16 // partial_sort(Iter first, Iter middle, Iter last, Compare comp);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/stable.sort/
stable_sort_comp.pass.cpp 12 // template<RandomAccessIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare>
14 // && CopyConstructible<Compare>
16 // stable_sort(Iter first, Iter last, Compare comp);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_collate.h 50 int compare(const char* __low1, const char* __high1, function in class:collate
86 int compare(const wchar_t* __low1, const wchar_t* __high1, function in class:collate
166 return __coll.compare(__x.data(), __x.data() + __x.size(),
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_collate.h 50 int compare(const char* __low1, const char* __high1, function in class:collate
86 int compare(const wchar_t* __low1, const wchar_t* __high1, function in class:collate
166 return __coll.compare(__x.data(), __x.data() + __x.size(),
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_collate.h 50 int compare(const char* __low1, const char* __high1, function in class:collate
86 int compare(const wchar_t* __low1, const wchar_t* __high1, function in class:collate
166 return __coll.compare(__x.data(), __x.data() + __x.size(),

Completed in 612 milliseconds

<<11121314151617181920>>