Searched refs:key_compare (Results 1 – 10 of 10) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | map | 30 typedef Compare key_compare; 49 key_compare comp; 51 value_compare(key_compare c); 60 is_nothrow_default_constructible<key_compare>::value && 61 is_nothrow_copy_constructible<key_compare>::value); 62 explicit map(const key_compare& comp); 63 map(const key_compare& comp, const allocator_type& a); 66 const key_compare& comp = key_compare()); 69 const key_compare& comp, const allocator_type& a); 74 is_nothrow_move_constructible<key_compare>::value); [all …]
|
D | set | 29 typedef Compare key_compare; 30 typedef key_compare value_compare; 48 is_nothrow_default_constructible<key_compare>::value && 49 is_nothrow_copy_constructible<key_compare>::value); 62 is_nothrow_move_constructible<key_compare>::value); 81 is_nothrow_move_assignable<key_compare>::value); 125 __is_nothrow_swappable<key_compare>::value && 131 key_compare key_comp() const; 210 typedef Compare key_compare; 211 typedef key_compare value_compare; [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/ |
D | types.pass.cpp | 42 static_assert((std::is_same<std::multiset<int>::key_compare, std::less<int> >::value), ""); in main() 56 …static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::key_compare, s… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/ |
D | types.pass.cpp | 42 static_assert((std::is_same<std::set<int>::key_compare, std::less<int> >::value), ""); in main() 56 …static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::key_compare, std::l… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/ |
D | types.pass.cpp | 43 …static_assert((std::is_same<std::multimap<int, double>::key_compare, std::less<int> >::value), ""); in main() 57 … double, std::less<int>, min_allocator<std::pair<const int, double>>>::key_compare, std::less<int>… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/ |
D | types.pass.cpp | 43 static_assert((std::is_same<std::map<int, double>::key_compare, std::less<int> >::value), ""); in main() 57 … double, std::less<int>, min_allocator<std::pair<const int, double>>>::key_compare, std::less<int>… in main()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _map.h | 58 typedef _Compare key_compare; in _STLP_CREATE_ITERATOR_TRAITS() typedef 77 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, in _STLP_CREATE_ITERATOR_TRAITS() 159 key_compare key_comp() const { return _M_t.key_comp(); } in _STLP_CREATE_ITERATOR_TRAITS() 251 typedef _Compare key_compare; in _STLP_CREATE_ITERATOR_TRAITS() typedef 270 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, in _STLP_CREATE_ITERATOR_TRAITS() 345 key_compare key_comp() const { return _M_t.key_comp(); } in _STLP_CREATE_ITERATOR_TRAITS()
|
D | _set.h | 56 typedef _Compare key_compare; in _STLP_CREATE_ITERATOR_TRAITS() typedef 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, in _STLP_CREATE_ITERATOR_TRAITS() 147 key_compare key_comp() const { return _M_t.key_comp(); } in _STLP_CREATE_ITERATOR_TRAITS() 227 typedef _Compare key_compare; in _STLP_CREATE_ITERATOR_TRAITS() typedef 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, in _STLP_CREATE_ITERATOR_TRAITS() 318 key_compare key_comp() const { return _M_t.key_comp(); } in _STLP_CREATE_ITERATOR_TRAITS()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
D | _set.h | 77 typedef _Compare key_compare; 83 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 206 key_compare key_comp() const { return _M_t.key_comp(); } 325 typedef _Compare key_compare; 331 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 459 key_compare key_comp() const { return _M_t.key_comp(); }
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | concept_check.hpp | 893 typedef typename C::key_compare key_compare; 905 BOOST_CONCEPT_ASSERT((BinaryPredicate<key_compare,key_type,key_type>)); 1025 typename C::key_compare kc;
|