Searched defs:ordered_map (Results  1 – 3 of 3) sorted by relevance
| /external/icu/icu4c/source/tools/toolutil/ | 
| D | json-json.hpp | 19061                   struct ordered_map : std::vector<std::pair<const Key, T>, Allocator>  struct19078     ordered_map() noexcept(noexcept(Container())) : Container{} {}  in ordered_map()  argument
 19079 …explicit ordered_map(const Allocator& alloc) noexcept(noexcept(Container(alloc))) : Container{allo…  in ordered_map()  function
 19081     ordered_map(It first, It last, const Allocator& alloc = Allocator())  in ordered_map()  function
 19083     ordered_map(std::initializer_list<value_type> init, const Allocator& alloc = Allocator() )  in ordered_map()  argument
 19086     std::pair<iterator, bool> emplace(const key_type& key, T&& t)  in emplace()
 19101     std::pair<iterator, bool> emplace(KeyType && key, T && t)  in emplace()
 19114     T& operator[](const key_type& key)  in operator []()
 19121     T & operator[](KeyType && key)  in operator []()
 19126     const T& operator[](const key_type& key) const  in operator []()
 [all …]
 
 | 
| /external/ublksrv/include/nlohmann/ | 
| D | json.hpp | 18570                   struct ordered_map : std::vector<std::pair<const Key, T>, Allocator>  struct18572     using key_type = Key;
 18573     using mapped_type = T;
 18574     using Container = std::vector<std::pair<const Key, T>, Allocator>;
 18575     using iterator = typename Container::iterator;
 18576     using const_iterator = typename Container::const_iterator;
 18577     using size_type = typename Container::size_type;
 18578     using value_type = typename Container::value_type;
 18580     using key_compare = std::equal_to<>;
 18582     using key_compare = std::equal_to<Key>;
 [all …]
 
 | 
| /external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/ | 
| D | btf.c | 75 	bool ordered_map;  member5115 	bool ordered_map;  member
 5308 	bool ordered_map, lossless_map, percpu_map;  in do_test_pprint()  local
 
 |