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

12345678

/external/google-breakpad/src/processor/
H A Dstatic_map_iterator-inl.h44 template<typename Key, typename Value, typename Compare>
45 StaticMapIterator<Key, Value, Compare>::StaticMapIterator(const char* base,
57 template<typename Key, typename Value, typename Compare>
58 StaticMapIterator<Key, Value, Compare>&
59 StaticMapIterator<Key, Value, Compare>::operator++() {
68 template<typename Key, typename Value, typename Compare>
69 StaticMapIterator<Key, Value, Compare>
70 StaticMapIterator<Key, Value, Compare>::operator++(int postfix_operator) {
75 StaticMapIterator<Key, Value, Compare> tmp = *this;
80 template<typename Key, typename Value, typename Compare>
[all...]
H A Dstatic_map-inl.h45 template<typename Key, typename Value, typename Compare>
46 StaticMap<Key, Value, Compare>::StaticMap(const char* raw_data)
60 template<typename Key, typename Value, typename Compare>
61 StaticMapIterator<Key, Value, Compare>
62 StaticMap<Key, Value, Compare>::find(const Key &key) const {
81 template<typename Key, typename Value, typename Compare>
82 StaticMapIterator<Key, Value, Compare>
83 StaticMap<Key, Value, Compare>::lower_bound(const Key &key) const {
102 template<typename Key, typename Value, typename Compare>
103 StaticMapIterator<Key, Value, Compare>
[all...]
H A Dstatic_map_iterator.h47 template<typename Key, typename Value, typename Compare> class StaticMap;
51 template<typename Key, typename Value, typename Compare>
87 friend class StaticMap<Key, Value, Compare>;
H A Dstatic_map.h82 template<typename Key, typename Value, typename Compare = DefaultCompare<Key> >
85 typedef StaticMapIterator<Key, Value, Compare> iterator;
86 typedef StaticMapIterator<Key, Value, Compare> const_iterator;
139 Compare compare_;
/external/webrtc/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/swiftshader/third_party/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/v8/src/zone/
H A Dzone-containers.h65 template <typename T, typename Compare = std::less<T>>
67 : public std::priority_queue<T, ZoneVector<T>, Compare> {
71 : std::priority_queue<T, ZoneVector<T>, Compare>(Compare(),
97 template <typename K, typename Compare = std::less<K>>
98 class ZoneSet : public std::set<K, Compare, zone_allocator<K>> {
102 : std::set<K, Compare, zone_allocator<K>>(Compare(),
108 template <typename K, typename V, typename Compare = std::less<K>>
110 : public std::map<K, V, Compare, zone_allocato
[all...]
/external/protobuf/src/google/protobuf/util/
H A Dfield_comparator_test.cc68 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
75 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
82 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
91 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
95 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
104 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
108 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
118 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
122 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL));
132 comparator_.Compare(message_1
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp74 bool convertToBRCT(MachineInstr &MI, MachineInstr &Compare,
77 bool adjustCCMasksForInstr(MachineInstr &MI, MachineInstr &Compare,
79 bool optimizeCompareZero(MachineInstr &Compare,
81 bool fuseCompareOperations(MachineInstr &Compare,
159 // Return the source register of Compare, which is the unknown value
161 static unsigned getCompareSourceReg(MachineInstr &Compare) { argument
163 if (Compare.isCompare())
164 reg = Compare.getOperand(0).getReg();
165 else if (isLoadAndTestAsCmp(Compare))
166 reg = Compare
175 convertToBRCT( MachineInstr &MI, MachineInstr &Compare, SmallVectorImpl<MachineInstr *> &CCUsers) argument
240 adjustCCMasksForInstr( MachineInstr &MI, MachineInstr &Compare, SmallVectorImpl<MachineInstr *> &CCUsers) argument
313 isCompareZero(MachineInstr &Compare) argument
334 optimizeCompareZero( MachineInstr &Compare, SmallVectorImpl<MachineInstr *> &CCUsers) argument
375 fuseCompareOperations( MachineInstr &Compare, SmallVectorImpl<MachineInstr *> &CCUsers) argument
[all...]
/external/libcxx/test/std/containers/unord/unord.map/
H A Dswap_member.pass.cpp33 typedef test_compare<std::equal_to<int> > Compare; typedef
35 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
36 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
37 C c2(0, Hash(2), Compare(2), Alloc(1, 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_map<int, std::string, Hash, Compare, Alloc> C;
76 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
77 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(
109 typedef test_compare<std::equal_to<int> > Compare; typedef
151 typedef test_compare<std::equal_to<int> > Compare; typedef
213 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
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/std/containers/unord/unord.map/unord.map.swap/
H A Dswap_non_member.pass.cpp33 typedef test_compare<std::equal_to<int> > Compare; typedef
35 typedef std::unordered_map<int, std::string, Hash, Compare, Alloc> C;
36 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
37 C c2(0, Hash(2), Compare(2), Alloc(1, 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_map<int, std::string, Hash, Compare, Alloc> C;
76 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
77 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(
109 typedef test_compare<std::equal_to<int> > Compare; typedef
151 typedef test_compare<std::equal_to<int> > Compare; typedef
213 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
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/std/containers/unord/unord.multiset/
H A Dswap_member.pass.cpp32 typedef test_compare<std::equal_to<int> > Compare; typedef
34 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
36 C c2(0, Hash(2), Compare(2), Alloc(1, 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_multiset<int, Hash, Compare, Alloc> C;
75 C c1(0, Hash(1), Compare(1), Alloc(1, 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
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
420 typedef test_compare<std::equal_to<int> > Compare; typedef
468 typedef test_compare<std::equal_to<int> > Compare; typedef
510 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.swap/
H A Dswap_non_member.pass.cpp32 typedef test_compare<std::equal_to<int> > Compare; typedef
34 typedef std::unordered_multiset<int, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
36 C c2(0, Hash(2), Compare(2), Alloc(1, 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_multiset<int, Hash, Compare, Alloc> C;
75 C c1(0, Hash(1), Compare(1), Alloc(1, 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
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
420 typedef test_compare<std::equal_to<int> > Compare; typedef
468 typedef test_compare<std::equal_to<int> > Compare; typedef
510 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/std/containers/unord/unord.set/
H A Dswap_member.pass.cpp32 typedef test_compare<std::equal_to<int> > Compare; typedef
34 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
36 C c2(0, Hash(2), Compare(2), Alloc(1, 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_set<int, Hash, Compare, Alloc> C;
75 C c1(0, Hash(1), Compare(1), Alloc(1, 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
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
420 typedef test_compare<std::equal_to<int> > Compare; typedef
468 typedef test_compare<std::equal_to<int> > Compare; typedef
510 typedef test_compare<std::equal_to<int> > Compare; typedef
[all...]
/external/libcxx/test/std/containers/unord/unord.set/unord.set.swap/
H A Dswap_non_member.pass.cpp32 typedef test_compare<std::equal_to<int> > Compare; typedef
34 typedef std::unordered_set<int, Hash, Compare, Alloc> C;
35 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
36 C c2(0, Hash(2), Compare(2), Alloc(1, 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_set<int, Hash, Compare, Alloc> C;
75 C c1(0, Hash(1), Compare(1), Alloc(1, 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
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
420 typedef test_compare<std::equal_to<int> > Compare; typedef
468 typedef test_compare<std::equal_to<int> > Compare; typedef
510 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/libcxx/test/std/containers/unord/unord.multimap/
H A Dswap_member.pass.cpp34 typedef test_compare<std::equal_to<int> > Compare; typedef
36 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
37 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
38 C c2(0, Hash(2), Compare(2), Alloc(1, 2));
45 assert(c1.key_eq() == Compare(2));
54 assert(c2.key_eq() == Compare(1));
62 typedef test_compare<std::equal_to<int> > Compare; typedef
64 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
77 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
78 C c2(std::begin(a2), std::end(a2), 0, Hash(2), Compare(
110 typedef test_compare<std::equal_to<int> > Compare; typedef
154 typedef test_compare<std::equal_to<int> > Compare; typedef
218 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
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/std/containers/unord/unord.multimap/unord.multimap.swap/
H A Dswap_non_member.pass.cpp33 typedef test_compare<std::equal_to<int> > Compare; typedef
35 typedef std::unordered_multimap<int, std::string, Hash, Compare, Alloc> C;
36 C c1(0, Hash(1), Compare(1), Alloc(1, 1));
37 C c2(0, Hash(2), Compare(2), Alloc(1, 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, 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
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
429 typedef test_compare<std::equal_to<int> > Compare; typedef
477 typedef test_compare<std::equal_to<int> > Compare; typedef
521 typedef test_compare<std::equal_to<int> > Compare; typedef
[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/google-breakpad/src/common/windows/
H A Domap_internal.h78 int Compare(const AddressRange& rhs) const;
79 bool operator<(const AddressRange& rhs) const { return Compare(rhs) == -1; }
80 bool operator>(const AddressRange& rhs) const { return Compare(rhs) == 1; }
/external/libcxx/test/std/utilities/function.objects/comparisons/
H A Dpointer_comparison_test_helper.hpp13 typedef CompareTemplate<T*> Compare; typedef
18 typedef Compare VoidCompare;
24 Compare comp;
/external/webrtc/webrtc/libjingle/xmpp/
H A Djid.h54 bool operator<(const Jid& other) const { return Compare(other) < 0; };
55 bool operator>(const Jid& other) const { return Compare(other) > 0; };
57 int Compare(const Jid & other) const;
/external/libcxx/test/std/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);
31 typedef std::greater<int> Compare; typedef
32 Compare comp;
77 typedef std::greater<int> Compare; typedef
78 Compare comp;

Completed in 620 milliseconds

12345678