Searched refs:Compare (Results 1 - 25 of 259) sorted by relevance

1234567891011

/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dqname.h66 int Compare(const StaticQName& other) const;
67 int Compare(const QName& other) const;
70 return Compare(other) == 0;
73 return Compare(other) == 0;
76 return Compare(other) != 0;
79 return Compare(other) != 0;
82 return Compare(other) < 0;
91 return other.Compare(*this) == 0;
95 return other.Compare(*this) != 0;
/external/chromium_org/third_party/webrtc/libjingle/xmllite/
H A Dqname.h49 int Compare(const StaticQName& other) const;
50 int Compare(const QName& other) const;
53 return Compare(other) == 0;
56 return Compare(other) == 0;
59 return Compare(other) != 0;
62 return Compare(other) != 0;
65 return Compare(other) < 0;
74 return other.Compare(*this) == 0;
78 return other.Compare(*this) != 0;
/external/llvm/include/llvm/ADT/
H A DPriorityQueue.h27 class Compare = std::less<typename Sequence::value_type> >
28 class PriorityQueue : public std::priority_queue<T, Sequence, Compare> {
30 explicit PriorityQueue(const Compare &compare = Compare(), argument
32 : std::priority_queue<T, Sequence, Compare>(compare, sequence)
37 const Compare &compare = Compare(),
39 : std::priority_queue<T, Sequence, Compare>(begin, end, compare, sequence)
36 PriorityQueue(Iterator begin, Iterator end, const Compare &compare = Compare(), const Sequence &sequence = Sequence()) argument
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_comparator.h17 virtual int Compare(const base::StringPiece& a,
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derror.py50 def Compare(a, b): member in class:Error
51 """Compare two error objects, by source code order.
65 Compare = staticmethod(Compare) variable in class:Error
/external/chromium_org/cc/test/
H A Dpixel_comparator.h18 virtual bool Compare(const SkBitmap& actual_bmp,
31 virtual bool Compare(const SkBitmap& actual_bmp,
54 virtual bool Compare(const SkBitmap& actual_bmp,
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Derror.py50 def Compare(a, b): member in class:Error
51 """Compare two error objects, by source code order.
65 Compare = staticmethod(Compare) variable in class:Error
/external/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp78 bool convertToBRCT(MachineInstr *MI, MachineInstr *Compare,
81 bool adjustCCMasksForInstr(MachineInstr *MI, MachineInstr *Compare,
83 bool optimizeCompareZero(MachineInstr *Compare,
85 bool fuseCompareAndBranch(MachineInstr *Compare,
161 // Compare compares the result of MI against zero. If MI is an addition
165 SystemZElimCompare::convertToBRCT(MachineInstr *MI, MachineInstr *Compare, argument
189 // MI and Compare. Make sure that there are also no references between
190 // Compare and Branch.
191 unsigned SrcReg = Compare->getOperand(0).getReg();
192 MachineBasicBlock::iterator MBBI = Compare, MBB
231 adjustCCMasksForInstr(MachineInstr *MI, MachineInstr *Compare, SmallVectorImpl<MachineInstr *> &CCUsers) argument
303 isCompareZero(MachineInstr *Compare) argument
322 optimizeCompareZero(MachineInstr *Compare, SmallVectorImpl<MachineInstr *> &CCUsers) argument
365 fuseCompareAndBranch(MachineInstr *Compare, SmallVectorImpl<MachineInstr *> &CCUsers) argument
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill-inl.h18 return form_group->Compare(form_group_) == 0;
22 return form_group.Compare(form_group_) == 0;
/external/libcxx/test/containers/unord/unord.map/
H A Dswap_member.pass.cpp31 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
108 typedef test_compare<std::equal_to<int> > Compare; typedef
150 typedef test_compare<std::equal_to<int> > Compare; typedef
212 typedef test_compare<std::equal_to<int> > Compare; typedef
241 typedef test_compare<std::equal_to<int> > Compare; typedef
289 typedef test_compare<std::equal_to<int> > Compare; typedef
331 typedef test_compare<std::equal_to<int> > Compare; typedef
393 typedef test_compare<std::equal_to<int> > Compare; typedef
422 typedef test_compare<std::equal_to<int> > Compare; typedef
470 typedef test_compare<std::equal_to<int> > Compare; typedef
512 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/containers/unord/unord.map/unord.map.swap/
H A Dswap_non_member.pass.cpp31 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
108 typedef test_compare<std::equal_to<int> > Compare; typedef
150 typedef test_compare<std::equal_to<int> > Compare; typedef
212 typedef test_compare<std::equal_to<int> > Compare; typedef
241 typedef test_compare<std::equal_to<int> > Compare; typedef
289 typedef test_compare<std::equal_to<int> > Compare; typedef
331 typedef test_compare<std::equal_to<int> > Compare; typedef
393 typedef test_compare<std::equal_to<int> > Compare; typedef
422 typedef test_compare<std::equal_to<int> > Compare; typedef
470 typedef test_compare<std::equal_to<int> > Compare; typedef
512 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multimap/
H A Dswap_member.pass.cpp32 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
109 typedef test_compare<std::equal_to<int> > Compare; typedef
153 typedef test_compare<std::equal_to<int> > Compare; typedef
217 typedef test_compare<std::equal_to<int> > Compare; typedef
246 typedef test_compare<std::equal_to<int> > Compare; typedef
294 typedef test_compare<std::equal_to<int> > Compare; typedef
338 typedef test_compare<std::equal_to<int> > Compare; typedef
402 typedef test_compare<std::equal_to<int> > Compare; typedef
431 typedef test_compare<std::equal_to<int> > Compare; typedef
479 typedef test_compare<std::equal_to<int> > Compare; typedef
523 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/
H A Dswap_non_member.pass.cpp31 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
108 typedef test_compare<std::equal_to<int> > Compare; typedef
152 typedef test_compare<std::equal_to<int> > Compare; typedef
216 typedef test_compare<std::equal_to<int> > Compare; typedef
245 typedef test_compare<std::equal_to<int> > Compare; typedef
293 typedef test_compare<std::equal_to<int> > Compare; typedef
337 typedef test_compare<std::equal_to<int> > Compare; typedef
401 typedef test_compare<std::equal_to<int> > Compare; typedef
430 typedef test_compare<std::equal_to<int> > Compare; typedef
478 typedef test_compare<std::equal_to<int> > Compare; typedef
522 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multiset/
H A Dswap_member.pass.cpp30 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
107 typedef test_compare<std::equal_to<int> > Compare; typedef
149 typedef test_compare<std::equal_to<int> > Compare; typedef
211 typedef test_compare<std::equal_to<int> > Compare; typedef
240 typedef test_compare<std::equal_to<int> > Compare; typedef
288 typedef test_compare<std::equal_to<int> > Compare; typedef
330 typedef test_compare<std::equal_to<int> > Compare; typedef
392 typedef test_compare<std::equal_to<int> > Compare; typedef
421 typedef test_compare<std::equal_to<int> > Compare; typedef
469 typedef test_compare<std::equal_to<int> > Compare; typedef
511 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
H A Dswap_non_member.pass.cpp30 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
107 typedef test_compare<std::equal_to<int> > Compare; typedef
149 typedef test_compare<std::equal_to<int> > Compare; typedef
211 typedef test_compare<std::equal_to<int> > Compare; typedef
240 typedef test_compare<std::equal_to<int> > Compare; typedef
288 typedef test_compare<std::equal_to<int> > Compare; typedef
330 typedef test_compare<std::equal_to<int> > Compare; typedef
392 typedef test_compare<std::equal_to<int> > Compare; typedef
421 typedef test_compare<std::equal_to<int> > Compare; typedef
469 typedef test_compare<std::equal_to<int> > Compare; typedef
511 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/containers/unord/unord.set/
H A Dswap_member.pass.cpp30 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
107 typedef test_compare<std::equal_to<int> > Compare; typedef
149 typedef test_compare<std::equal_to<int> > Compare; typedef
211 typedef test_compare<std::equal_to<int> > Compare; typedef
240 typedef test_compare<std::equal_to<int> > Compare; typedef
288 typedef test_compare<std::equal_to<int> > Compare; typedef
330 typedef test_compare<std::equal_to<int> > Compare; typedef
392 typedef test_compare<std::equal_to<int> > Compare; typedef
421 typedef test_compare<std::equal_to<int> > Compare; typedef
469 typedef test_compare<std::equal_to<int> > Compare; typedef
511 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/containers/unord/unord.set/unord.set.swap/
H A Dswap_non_member.pass.cpp30 typedef test_compare<std::equal_to<int> > Compare; typedef
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; typedef
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(
107 typedef test_compare<std::equal_to<int> > Compare; typedef
149 typedef test_compare<std::equal_to<int> > Compare; typedef
211 typedef test_compare<std::equal_to<int> > Compare; typedef
240 typedef test_compare<std::equal_to<int> > Compare; typedef
288 typedef test_compare<std::equal_to<int> > Compare; typedef
330 typedef test_compare<std::equal_to<int> > Compare; typedef
392 typedef test_compare<std::equal_to<int> > Compare; typedef
421 typedef test_compare<std::equal_to<int> > Compare; typedef
469 typedef test_compare<std::equal_to<int> > Compare; typedef
511 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/clang/test/SemaTemplate/
H A Dissue150.cpp78 template<class T, template<class> class Compare, class Default,
87 template<class _T, template<class> class Compare = PR9016::less,
88 class = typename interval_type_default<_T,Compare>::type,
96 template<class _T, template<class> class Compare = PR9016::less,
97 class = typename interval_type_default<_T,Compare>::type,
/external/chromium_org/components/content_settings/core/common/
H A Dcontent_settings_pattern_unittest.cc119 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_pattern
[all...]
/external/clang/test/SemaCXX/
H A Dbuiltins.cpp12 template<int (*Compare)(const char *s1, const char *s2)>
14 return Compare(s1, s2) == 0;
/external/easymock/src/org/easymock/internal/matchers/
H A DCompare.java24 public class Compare<T> implements IArgumentMatcher, Serializable { class in inherits:IArgumentMatcher,Serializable
34 public Compare(T expected, Comparator<? super T> comparator, LogicalOperator result) { method in class:Compare
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dcomparator.h26 virtual int Compare(const Slice& a, const Slice& b) const = 0;
/external/chromium_org/tools/site_compare/operators/
H A Dequals.py5 """Compare two images for equality."""
11 def Compare(file1, file2, **kwargs): function
/external/libcxx/test/algorithms/alg.sorting/alg.min.max/
H A Dminmax_element_comp.pass.cpp12 // 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; typedef
28 Compare comp;
73 typedef std::greater<int> Compare; typedef
74 Compare comp;
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dstring_compare.cc30 int Compare(const std::string& a, const std::string& b) const { function in class:i18n::addressinput::__anon12534::IcuStringComparer
60 return g_comparer.Get().Compare(a, b) == 0;
65 return g_comparer.Get().Compare(a, b) < 0;

Completed in 457 milliseconds

1234567891011