/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
error.py | 50 def Compare(a, b): 51 """Compare two error objects, by source code order. 65 Compare = staticmethod(Compare)
|
/external/chromium_org/third_party/closure_linter/closure_linter/common/ |
error.py | 50 def Compare(a, b): 51 """Compare two error objects, by source code order. 65 Compare = staticmethod(Compare)
|
/external/chromium_org/tools/site_compare/operators/ |
equals.py | 5 """Compare two images for equality.""" 11 def Compare(file1, file2, **kwargs): 15 file1: path to first image to compare 16 file2: path to second image to compare
|
equals_with_mask.py | 5 """Compare two images for equality, subject to a mask.""" 13 def Compare(file1, file2, **kwargs): 21 file1: path to first image to compare 22 file2: path to second image to compare
|
/art/test/003-omnibus-opcodes/src/ |
Compare.java | 20 public class Compare { 96 /* compare when high words are equal but low words differ */
|
/dalvik/tests/003-omnibus-opcodes/src/ |
Compare.java | 8 public class Compare { 84 /* compare when high words are equal but low words differ */
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
minmax_element_comp.pass.cpp | 12 // template<ForwardIterator Iter, StrictWeakOrder<auto, Iter::value_type> Compare> 13 // requires CopyConstructible<Compare> 15 // minmax_element(Iter first, Iter last, Compare comp); 27 typedef std::greater<int> Compare; 28 Compare comp; 73 typedef std::greater<int> Compare; 74 Compare comp;
|
/external/chromium/third_party/libjingle/overrides/talk/xmllite/ |
qname.cc | 57 QName::Compare(const QName & other) const { 58 int result = local_part_.compare(other.local_part_); 62 return namespace_.compare(other.namespace_);
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
qname.cc | 79 int QName::Compare(const StaticQName& other) const { 80 int result = local_part_.compare(other.local); 84 return namespace_.compare(other.ns); 87 int QName::Compare(const QName& other) const { 88 int result = local_part_.compare(other.local_part_); 92 return namespace_.compare(other.namespace_);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/ |
swap_member.pass.cpp | 31 typedef test_compare<std::equal_to<int> > Compare; 33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; 35 C c1(0, Hash(1), Compare(1), Alloc(1)); 36 C c2(0, Hash(2), Compare(2), Alloc(2)); 43 assert(c1.key_eq() == Compare(2)); 52 assert(c2.key_eq() == Compare(1)); 60 typedef test_compare<std::equal_to<int> > Compare; 62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; 75 C c1(0, Hash(1), Compare(1), Alloc(1)); 76 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/ |
swap_non_member.pass.cpp | 31 typedef test_compare<std::equal_to<int> > Compare; 33 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; 35 C c1(0, Hash(1), Compare(1), Alloc(1)); 36 C c2(0, Hash(2), Compare(2), Alloc(2)); 43 assert(c1.key_eq() == Compare(2)); 52 assert(c2.key_eq() == Compare(1)); 60 typedef test_compare<std::equal_to<int> > Compare; 62 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C; 75 C c1(0, Hash(1), Compare(1), Alloc(1)); 76 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
swap_member.pass.cpp | 32 typedef test_compare<std::equal_to<int> > Compare; 34 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; 36 C c1(0, Hash(1), Compare(1), Alloc(1)); 37 C c2(0, Hash(2), Compare(2), Alloc(2)); 44 assert(c1.key_eq() == Compare(2)); 53 assert(c2.key_eq() == Compare(1)); 61 typedef test_compare<std::equal_to<int> > Compare; 63 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; 76 C c1(0, Hash(1), Compare(1), Alloc(1)); 77 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/ |
swap_non_member.pass.cpp | 31 typedef test_compare<std::equal_to<int> > Compare; 33 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; 35 C c1(0, Hash(1), Compare(1), Alloc(1)); 36 C c2(0, Hash(2), Compare(2), Alloc(2)); 43 assert(c1.key_eq() == Compare(2)); 52 assert(c2.key_eq() == Compare(1)); 60 typedef test_compare<std::equal_to<int> > Compare; 62 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C; 75 C c1(0, Hash(1), Compare(1), Alloc(1)); 76 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/ |
swap_member.pass.cpp | 30 typedef test_compare<std::equal_to<int> > Compare; 32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; 34 C c1(0, Hash(1), Compare(1), Alloc(1)); 35 C c2(0, Hash(2), Compare(2), Alloc(2)); 42 assert(c1.key_eq() == Compare(2)); 51 assert(c2.key_eq() == Compare(1)); 59 typedef test_compare<std::equal_to<int> > Compare; 61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; 74 C c1(0, Hash(1), Compare(1), Alloc(1)); 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/ |
swap_non_member.pass.cpp | 30 typedef test_compare<std::equal_to<int> > Compare; 32 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; 34 C c1(0, Hash(1), Compare(1), Alloc(1)); 35 C c2(0, Hash(2), Compare(2), Alloc(2)); 42 assert(c1.key_eq() == Compare(2)); 51 assert(c2.key_eq() == Compare(1)); 59 typedef test_compare<std::equal_to<int> > Compare; 61 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C; 74 C c1(0, Hash(1), Compare(1), Alloc(1)); 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/ |
swap_member.pass.cpp | 30 typedef test_compare<std::equal_to<int> > Compare; 32 typedef std::unordered_set<int, Hash, Compare, Alloc> C; 34 C c1(0, Hash(1), Compare(1), Alloc(1)); 35 C c2(0, Hash(2), Compare(2), Alloc(2)); 42 assert(c1.key_eq() == Compare(2)); 51 assert(c2.key_eq() == Compare(1)); 59 typedef test_compare<std::equal_to<int> > Compare; 61 typedef std::unordered_set<int, Hash, Compare, Alloc> C; 74 C c1(0, Hash(1), Compare(1), Alloc(1)); 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.swap/ |
swap_non_member.pass.cpp | 30 typedef test_compare<std::equal_to<int> > Compare; 32 typedef std::unordered_set<int, Hash, Compare, Alloc> C; 34 C c1(0, Hash(1), Compare(1), Alloc(1)); 35 C c2(0, Hash(2), Compare(2), Alloc(2)); 42 assert(c1.key_eq() == Compare(2)); 51 assert(c2.key_eq() == Compare(1)); 59 typedef test_compare<std::equal_to<int> > Compare; 61 typedef std::unordered_set<int, Hash, Compare, Alloc> C; 74 C c1(0, Hash(1), Compare(1), Alloc(1)); 75 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(2), Alloc(2)) [all...] |
/external/chromium/chrome/browser/chromeos/ |
language_preferences_unittest.cc | 20 bool Compare(T a, T b) { 24 bool Compare<const char*>(const char* a, const char* b) { 42 if (Compare(pref.default_pref_value,
|
/external/chromium_org/content/common/indexed_db/ |
indexed_db_key.cc | 87 int IndexedDBKey::Compare(const IndexedDBKey& other) const { 96 if (int result = array_[i].Compare(other.array_[i])) 105 return binary_.compare(other.binary_); 107 return string_.compare(other.string_); 124 return Compare(other) < 0; 128 return !Compare(other);
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
comparator.cc | 25 virtual int Compare(const Slice& a, const Slice& b) const { 26 return a.compare(b); 48 assert(Compare(*start, limit) < 0);
|
/external/easymock/src/org/easymock/internal/matchers/ |
Compare.java | 24 public class Compare<T> implements IArgumentMatcher, Serializable {
34 public Compare(T expected, Comparator<? super T> comparator, LogicalOperator result) {
50 return operator.matchResult(comparator.compare((T) actual, expected));
|
/external/lzma/CPP/Windows/ |
PropVariant.cpp | 218 int CPropVariant::Compare(const CPropVariant &a)
|
/frameworks/av/media/libstagefright/codecs/common/include/ |
voMem.h | 48 VO_S32 (VO_API * Compare) (VO_S32 uID, VO_PTR pBuffer1, VO_PTR pBuffer2, VO_U32 uSize);
|
/frameworks/compile/mclinker/include/mcld/Support/ |
MemoryArea.h | 99 struct Compare { 113 typedef std::multimap<Key, Space*, Key::Compare> SpaceMapType;
|
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
qname.cc | 151 QName::Compare(const QName & other) const { 155 int result = data_->localPart_.compare(other.data_->localPart_); 159 return data_->namespace_.compare(other.data_->namespace_);
|