/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
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) [all...] |
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); 76 is_nothrow_move_assignable<key_compare>::value); 120 __is_nothrow_swappable<key_compare>::value && 126 key_compare key_comp() const; 185 typedef Compare key_compare; 186 typedef key_compare value_compare [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
initializer_list.pass.cpp | 14 // multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
initializer_list_compare.pass.cpp | 14 // multimap(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.cons/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
initializer_list_compare.pass.cpp | 14 // multiset(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
initializer_list.pass.cpp | 14 // multiset(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
initializer_list_compare.pass.cpp | 14 // set(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
initializer_list.pass.cpp | 14 // set(initializer_list<value_type> il, const key_compare& comp = key_compare());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.cnstr/ |
default_noexcept.pass.cpp | 15 // is_nothrow_default_constructible<key_compare>::value && 16 // is_nothrow_copy_constructible<key_compare>::value);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/ |
types.pass.cpp | 20 // typedef Compare key_compare; 21 // typedef key_compare value_compare; 42 static_assert((std::is_same<std::multiset<int>::key_compare, std::less<int> >::value), ""); 56 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::key_compare, std::less<int> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/ |
types.pass.cpp | 20 // typedef Compare key_compare; 21 // typedef key_compare value_compare; 42 static_assert((std::is_same<std::set<int>::key_compare, std::less<int> >::value), ""); 56 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::key_compare, std::less<int> >::value), "");
|
/external/stlport/stlport/stl/ |
_set.h | 56 typedef _Compare key_compare; typedef in class:set 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 147 key_compare key_comp() const { return _M_t.key_comp(); } 227 typedef _Compare key_compare; typedef in class:multiset 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 318 key_compare key_comp() const { return _M_t.key_comp(); }
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_set.h | 56 typedef _Compare key_compare; typedef in class:set 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 147 key_compare key_comp() const { return _M_t.key_comp(); } 227 typedef _Compare key_compare; typedef in class:multiset 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 318 key_compare key_comp() const { return _M_t.key_comp(); }
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_set.h | 56 typedef _Compare key_compare; typedef in class:set 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 147 key_compare key_comp() const { return _M_t.key_comp(); } 227 typedef _Compare key_compare; typedef in class:multiset 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 318 key_compare key_comp() const { return _M_t.key_comp(); }
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_set.h | 56 typedef _Compare key_compare; typedef in class:set 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 147 key_compare key_comp() const { return _M_t.key_comp(); } 227 typedef _Compare key_compare; typedef in class:multiset 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 318 key_compare key_comp() const { return _M_t.key_comp(); }
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_set.h | 56 typedef _Compare key_compare; typedef in class:set 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 147 key_compare key_comp() const { return _M_t.key_comp(); } 227 typedef _Compare key_compare; typedef in class:multiset 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 318 key_compare key_comp() const { return _M_t.key_comp(); }
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_set.h | 56 typedef _Compare key_compare; typedef in class:set 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 147 key_compare key_comp() const { return _M_t.key_comp(); } 227 typedef _Compare key_compare; typedef in class:multiset 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 318 key_compare key_comp() const { return _M_t.key_comp(); }
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_set.h | 56 typedef _Compare key_compare; typedef in class:set 65 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 147 key_compare key_comp() const { return _M_t.key_comp(); } 227 typedef _Compare key_compare; typedef in class:multiset 236 typedef _STLP_PRIV _Rb_tree<key_type, key_compare, 318 key_compare key_comp() const { return _M_t.key_comp(); }
|