Home
last modified time | relevance | path

Searched refs:key_value_pair (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/libs/utility/test/
Dinitialized_test.cpp21 template <class T> class key_value_pair class
28 key_value_pair() { } in key_value_pair() function in __anon02f030cb0111::key_value_pair
31 explicit key_value_pair(const std::string& key) in key_value_pair() function in __anon02f030cb0111::key_value_pair
38 key_value_pair(const std::string& key, const T& value) in key_value_pair() function in __anon02f030cb0111::key_value_pair
86 key_value_pair<T> default_key_value_pair; in test_key_value_pair()
91 BOOST_TEST( is_value_initialized(key_value_pair<T>("key").get_value()) ); in test_key_value_pair()
95 BOOST_TEST( key_value_pair<T>("key", magic_value).get_value() == magic_value ); in test_key_value_pair()
/third_party/boost/boost/icl/detail/
Dinterval_map_algo.hpp130 const typename IntervalMapT::element_type& key_value_pair) in contains() argument
132 typename IntervalMapT::const_iterator it_ = container.find(key_value_pair.key); in contains()
133 return it_ != container.end() && (*it_).second == key_value_pair.data; in contains()
/third_party/boost/boost/icl/
Dmap.hpp189 explicit map(const element_type& key_value_pair): base_type::map() in map() argument
191 insert(key_value_pair); in map()
348 map& set(const element_type& key_value_pair) in set() argument
350 return icl::set_at(*this, key_value_pair); in set()
355 size_type erase(const element_type& key_value_pair) in erase() argument
357 return icl::erase(*this, key_value_pair); in erase()
364 void add_intersection(map& section, const element_type& key_value_pair)const in add_intersection()
367 ::add_intersection(section, *this, key_value_pair); in add_intersection()
Dinterval_base_map.hpp308 SubType& add(const element_type& key_value_pair) in add() argument
310 return icl::add(*that(), key_value_pair); in add()
332 SubType& subtract(const element_type& key_value_pair) in subtract() argument
334 return icl::subtract(*that(), key_value_pair); in subtract()
349 SubType& insert(const element_type& key_value_pair) in insert() argument
351 return icl::insert(*that(), key_value_pair); in insert()
369 SubType& set(const element_type& key_value_pair) in set() argument
371 return icl::set_at(*that(), key_value_pair); in set()
385 SubType& erase(const element_type& key_value_pair) in erase() argument
387 icl::erase(*that(), key_value_pair); in erase()
[all …]
/third_party/boost/libs/icl/test/
Dtest_icl_map.hpp38 map_element_type key_value_pair(MK_v(6), MK_u(3)); in icl_map_contains_4_bicremental_types() local
39 BOOST_CHECK( contains(map_a, key_value_pair) ); in icl_map_contains_4_bicremental_types()
40 BOOST_CHECK( within(key_value_pair, map_a) ); in icl_map_contains_4_bicremental_types()
/third_party/boost/boost/icl/concept/
Dinterval_map.hpp43 contains(const Type& super, const typename Type::element_type& key_value_pair) in contains() argument
46 const_iterator it_ = icl::find(super, key_value_pair.key); in contains()
47 return it_ != super.end() && (*it_).second == key_value_pair.data; in contains()