Home
last modified time | relevance | path

Searched refs:KeyCompare (Results 1 – 6 of 6) 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/llvm-project/pstl/test/std/algorithms/alg.sorting/
Dsort.pass.cpp111 friend class KeyCompare;
116 class KeyCompare class
127 KeyCompare(OddTag) : status(Live) {} in KeyCompare() function in KeyCompare
128 ~KeyCompare() { status = Dead; } in ~KeyCompare()
234 test_sort<ParanoidKey>(KeyCompare(OddTag()), in main()
/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.h836 template<typename T> int KeyCompare(const void *key, const void *elem) { in KeyCompare() function
849 case 1: comp = KeyCompare<uint8_t>; break;
850 case 2: comp = KeyCompare<uint16_t>; break;
851 case 4: comp = KeyCompare<uint32_t>; break;
852 case 8: comp = KeyCompare<uint64_t>; break;
Dflatbuffers.h346 &key, Data(), size(), IndirectHelper<T>::element_stride, KeyCompare<K>);
370 template<typename K> static int KeyCompare(const void *ap, const void *bp) {
/external/protobuf/src/google/protobuf/
Dmap.h376 struct KeyCompare { struct
380 typedef std::set<Key*, KeyCompare, KeyPtrAllocator> Tree; argument
849 Tree(KeyCompare(), KeyPtrAllocator(alloc_))); in TreeConvert()