Home
last modified time | relevance | path

Searched refs:KeyCompare (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/base/containers/
Dflat_tree.h81 template <class Key, class Value, class GetKeyFromValue, class KeyCompare>
91 using key_compare = KeyCompare;
101 : KeyCompare(std::forward<Cmp>(compare_arg)) {}
499 template <class Key, class Value, class GetKeyFromValue, class KeyCompare>
500 flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::flat_tree() = default;
502 template <class Key, class Value, class GetKeyFromValue, class KeyCompare>
503 flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::flat_tree(
504 const KeyCompare& comp)
507 template <class Key, class Value, class GetKeyFromValue, class KeyCompare>
509 flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::flat_tree(
[all …]
/external/swiftshader/third_party/subzero/src/
DIceGlobalContext.cpp65 template <typename KeyType, class Enable = void> struct KeyCompare {}; struct
68 struct KeyCompare<KeyType, struct
77 struct KeyCompare<KeyType, typename std::enable_if< struct
173 KeyCompare<KeyType>>;
/external/flatbuffers/include/flatbuffers/
Dflexbuffers.h782 template<typename T> int KeyCompare(const void *key, const void *elem) { in KeyCompare() function
795 case 1: comp = KeyCompare<uint8_t>; break;
796 case 2: comp = KeyCompare<uint16_t>; break;
797 case 4: comp = KeyCompare<uint32_t>; break;
798 case 8: comp = KeyCompare<uint64_t>; break;
Dflatbuffers.h322 &key, Data(), size(), IndirectHelper<T>::element_stride, KeyCompare<K>);
345 template<typename K> static int KeyCompare(const void *ap, const void *bp) {
/external/protobuf/src/google/protobuf/
Dmap.h752 struct KeyCompare { struct
756 typedef std::set<Key*, KeyCompare, KeyPtrAllocator> Tree; argument
1225 Tree(KeyCompare(), KeyPtrAllocator(alloc_))); in TreeConvert()