HelenOS sources

value_type         62 uspace/lib/cpp/include/__bits/adt/array.hpp         value_type elems[N ? N : 1];
value_type         62 uspace/lib/cpp/include/__bits/adt/deque.hpp                 using value_type        = typename deque<T, Allocator>::value_type;
value_type         65 uspace/lib/cpp/include/__bits/adt/deque.hpp                 using pointer           = const value_type*;
value_type        188 uspace/lib/cpp/include/__bits/adt/deque.hpp                 using value_type        = typename deque<T, Allocator>::value_type;
value_type        191 uspace/lib/cpp/include/__bits/adt/deque.hpp                 using pointer           = value_type*;
value_type        330 uspace/lib/cpp/include/__bits/adt/deque.hpp             using reference       = value_type&;
value_type        331 uspace/lib/cpp/include/__bits/adt/deque.hpp             using const_reference = const value_type&;
value_type        373 uspace/lib/cpp/include/__bits/adt/deque.hpp             deque(size_type n, const value_type& value, const allocator_type& alloc = allocator_type{})
value_type        587 uspace/lib/cpp/include/__bits/adt/deque.hpp                     value_type value{};
value_type        594 uspace/lib/cpp/include/__bits/adt/deque.hpp             void resize(size_type sz, const value_type& value)
value_type        721 uspace/lib/cpp/include/__bits/adt/deque.hpp             void push_front(const value_type& value)
value_type        730 uspace/lib/cpp/include/__bits/adt/deque.hpp             void push_front(value_type&& value)
value_type        735 uspace/lib/cpp/include/__bits/adt/deque.hpp                 data_[front_bucket_][--front_bucket_idx_] = forward<value_type>(value);
value_type        739 uspace/lib/cpp/include/__bits/adt/deque.hpp             void push_back(const value_type& value)
value_type        748 uspace/lib/cpp/include/__bits/adt/deque.hpp             void push_back(value_type&& value)
value_type        750 uspace/lib/cpp/include/__bits/adt/deque.hpp                 data_[back_bucket_][back_bucket_idx_++] = forward<value_type>(value);
value_type        757 uspace/lib/cpp/include/__bits/adt/deque.hpp             iterator insert(const_iterator position, const value_type& value)
value_type        775 uspace/lib/cpp/include/__bits/adt/deque.hpp             iterator insert(const_iterator position, value_type&& value)
value_type        780 uspace/lib/cpp/include/__bits/adt/deque.hpp                 data_[get_bucket_index_(idx)][get_element_index_(idx)] = forward<value_type>(value);
value_type        786 uspace/lib/cpp/include/__bits/adt/deque.hpp             iterator insert(const_iterator position, size_type n, const value_type& value)
value_type        823 uspace/lib/cpp/include/__bits/adt/deque.hpp             iterator insert(const_iterator position, initializer_list<value_type> init)
value_type        967 uspace/lib/cpp/include/__bits/adt/deque.hpp             value_type** data_;
value_type        971 uspace/lib/cpp/include/__bits/adt/deque.hpp                 data_ = new value_type*[bucket_capacity_];
value_type       1108 uspace/lib/cpp/include/__bits/adt/deque.hpp                 value_type** new_data = new value_type*[bucket_capacity_];
value_type         82 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             using node_type = list_node<value_type>;
value_type         85 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 hash_table_bucket<value_type, size_type>*,
value_type         86 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 list_node<value_type>*, size_type
value_type         90 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 : table_{new hash_table_bucket<value_type, size_type>[buckets]()},
value_type         97 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 : table_{new hash_table_bucket<value_type, size_type>[buckets]()},
value_type        197 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             auto insert(const value_type& val)
value_type        202 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             auto insert(value_type&& val)
value_type        204 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                 return Policy::insert(*this, forward<value_type>(val));
value_type        338 uspace/lib/cpp/include/__bits/adt/hash_table.hpp                        sizeof(hash_table_bucket<value_type, size_type>);
value_type        514 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             const key_type& get_key(const value_type& val) const
value_type        519 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             bool keys_equal(const key_type& key, const value_type& val)
value_type        524 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             bool keys_equal(const key_type& key, const value_type& val) const
value_type        529 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             hash_table_bucket<value_type, size_type>* table()
value_type        534 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             hash_table_bucket<value_type, size_type>* head(size_type idx)
value_type        561 uspace/lib/cpp/include/__bits/adt/hash_table.hpp             hash_table_bucket<value_type, size_type>* table_;
value_type         51 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_iterator(hash_table_bucket<value_type, size_type>* table = nullptr,
value_type         53 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                                 list_node<value_type>* current = nullptr)
value_type        100 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             list_node<value_type>* node()
value_type        105 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const list_node<value_type>* node() const
value_type        116 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_bucket<value_type, size_type>* table_;
value_type        119 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             list_node<value_type>* current_;
value_type        156 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_const_iterator(const hash_table_bucket<value_type, size_type>* table = nullptr,
value_type        158 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                                       const list_node<value_type>* current = nullptr)
value_type        220 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             list_node<value_type>* node()
value_type        222 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 return const_cast<list_node<value_type>*>(current_);
value_type        225 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const list_node<value_type>* node() const
value_type        236 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const hash_table_bucket<value_type, size_type>* table_;
value_type        239 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const list_node<value_type>* current_;
value_type        295 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_local_iterator(list_node<value_type>* head = nullptr,
value_type        296 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                                       list_node<value_type>* current = nullptr)
value_type        330 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             list_node<value_type>* node()
value_type        335 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const list_node<value_type>* node() const
value_type        341 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             list_node<value_type>* head_;
value_type        342 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             list_node<value_type>* current_;
value_type        379 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             hash_table_const_local_iterator(const list_node<value_type>* head = nullptr,
value_type        380 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                                             const list_node<value_type>* current = nullptr)
value_type        427 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             list_node<value_type>* node()
value_type        429 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp                 return const_cast<list_node<value_type>*>(current_);
value_type        432 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const list_node<value_type>* node() const
value_type        438 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const list_node<value_type>* head_;
value_type        439 uspace/lib/cpp/include/__bits/adt/hash_table_iterators.hpp             const list_node<value_type>* current_;
value_type        145 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp             using value_type = typename Table::value_type;
value_type        151 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp             auto val = value_type{forward<Args>(args)...};
value_type        229 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp             using value_type = typename Table::value_type;
value_type        255 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp                 auto node = new node_type{forward<value_type>(val)};
value_type        429 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp             using value_type = typename Table::value_type;
value_type        432 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp             auto node = new node_type{forward<value_type>(val)};
value_type         54 uspace/lib/cpp/include/__bits/adt/list.hpp                 using value_type      = typename list<T>::value_type;
value_type         62 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_const_iterator(list_node<value_type>* node = nullptr,
value_type         63 uspace/lib/cpp/include/__bits/adt/list.hpp                                     list_node<value_type>* head = nullptr,
value_type        126 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_node<value_type>* node()
value_type        128 uspace/lib/cpp/include/__bits/adt/list.hpp                     return const_cast<list_node<value_type>*>(current_);
value_type        131 uspace/lib/cpp/include/__bits/adt/list.hpp                 const list_node<value_type>* node() const
value_type        136 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_node<value_type>* head()
value_type        138 uspace/lib/cpp/include/__bits/adt/list.hpp                     return const_cast<list_node<value_type>*>(head_);
value_type        141 uspace/lib/cpp/include/__bits/adt/list.hpp                 const list_node<value_type>* head() const
value_type        167 uspace/lib/cpp/include/__bits/adt/list.hpp                 const list_node<value_type>* current_;
value_type        168 uspace/lib/cpp/include/__bits/adt/list.hpp                 const list_node<value_type>* head_;
value_type        188 uspace/lib/cpp/include/__bits/adt/list.hpp                 using value_type      = typename list<T>::value_type;
value_type        196 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_iterator(list_node<value_type>* node = nullptr,
value_type        197 uspace/lib/cpp/include/__bits/adt/list.hpp                               list_node<value_type>* head = nullptr,
value_type        256 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_node<value_type>* node()
value_type        261 uspace/lib/cpp/include/__bits/adt/list.hpp                 const list_node<value_type>* node() const
value_type        266 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_node<value_type>* head()
value_type        271 uspace/lib/cpp/include/__bits/adt/list.hpp                 const list_node<value_type>* head() const
value_type        297 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_node<value_type>* current_;
value_type        298 uspace/lib/cpp/include/__bits/adt/list.hpp                 list_node<value_type>* head_;
value_type        348 uspace/lib/cpp/include/__bits/adt/list.hpp             using reference       = value_type&;
value_type        349 uspace/lib/cpp/include/__bits/adt/list.hpp             using const_reference = const value_type&;
value_type        352 uspace/lib/cpp/include/__bits/adt/list.hpp             using iterator        = aux::list_iterator<value_type>;
value_type        353 uspace/lib/cpp/include/__bits/adt/list.hpp             using const_iterator  = aux::list_const_iterator<value_type>;
value_type        379 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{size_type{}, value_type{}},
value_type        380 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{size_, value_type{}}
value_type        384 uspace/lib/cpp/include/__bits/adt/list.hpp             list(size_type n, const value_type& val,
value_type        389 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{size_type{}, val},
value_type        390 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{n, value_type{}}
value_type        430 uspace/lib/cpp/include/__bits/adt/list.hpp             list(initializer_list<value_type> init, const allocator_type& alloc = allocator_type{})
value_type        467 uspace/lib/cpp/include/__bits/adt/list.hpp             list& operator=(initializer_list<value_type> init)
value_type        484 uspace/lib/cpp/include/__bits/adt/list.hpp             void assign(size_type n, const value_type& val)
value_type        489 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{size_type{}, val},
value_type        490 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{n, value_type{}}
value_type        494 uspace/lib/cpp/include/__bits/adt/list.hpp             void assign(initializer_list<value_type> init)
value_type        586 uspace/lib/cpp/include/__bits/adt/list.hpp             void resize(size_type sz, const value_type& val)
value_type        660 uspace/lib/cpp/include/__bits/adt/list.hpp             void push_front(const value_type& value)
value_type        665 uspace/lib/cpp/include/__bits/adt/list.hpp             void push_front(value_type&& value)
value_type        667 uspace/lib/cpp/include/__bits/adt/list.hpp                 prepend_new_(forward<value_type>(value));
value_type        670 uspace/lib/cpp/include/__bits/adt/list.hpp             void push_back(const value_type& value)
value_type        675 uspace/lib/cpp/include/__bits/adt/list.hpp             void push_back(value_type&& value)
value_type        677 uspace/lib/cpp/include/__bits/adt/list.hpp                 append_new_(forward<value_type>(value));
value_type        708 uspace/lib/cpp/include/__bits/adt/list.hpp                 node->prepend(new aux::list_node<value_type>{forward<Args>(args)...});
value_type        717 uspace/lib/cpp/include/__bits/adt/list.hpp             iterator insert(const_iterator position, const value_type& val)
value_type        722 uspace/lib/cpp/include/__bits/adt/list.hpp             iterator insert(const_iterator position, value_type&& val)
value_type        724 uspace/lib/cpp/include/__bits/adt/list.hpp                 return emplace(position, forward<value_type>(val));
value_type        727 uspace/lib/cpp/include/__bits/adt/list.hpp             iterator insert(const_iterator position, size_type n, const value_type& val)
value_type        731 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{size_type{}, val},
value_type        732 uspace/lib/cpp/include/__bits/adt/list.hpp                     aux::insert_iterator<value_type>{n, value_type{}}
value_type        743 uspace/lib/cpp/include/__bits/adt/list.hpp                     node->append(new aux::list_node<value_type>{*first++});
value_type        751 uspace/lib/cpp/include/__bits/adt/list.hpp             iterator insert(const_iterator position, initializer_list<value_type> init)
value_type        910 uspace/lib/cpp/include/__bits/adt/list.hpp                 aux::list_node<value_type>* first_node{};
value_type        911 uspace/lib/cpp/include/__bits/adt/list.hpp                 aux::list_node<value_type>* last_node{};
value_type        973 uspace/lib/cpp/include/__bits/adt/list.hpp             void remove(const value_type& val)
value_type       1089 uspace/lib/cpp/include/__bits/adt/list.hpp             aux::list_node<value_type>* head_;
value_type       1121 uspace/lib/cpp/include/__bits/adt/list.hpp             aux::list_node<value_type>* append_new_(Args&&... args)
value_type       1123 uspace/lib/cpp/include/__bits/adt/list.hpp                 auto node = new aux::list_node<value_type>{forward<Args>(args)...};
value_type       1137 uspace/lib/cpp/include/__bits/adt/list.hpp             aux::list_node<value_type>* prepend_new_(Args&&... args)
value_type       1139 uspace/lib/cpp/include/__bits/adt/list.hpp                 auto node = new aux::list_node<value_type>{forward<Args>(args)...};
value_type       1154 uspace/lib/cpp/include/__bits/adt/list.hpp             aux::list_node<value_type>* get_last_() const
value_type       1164 uspace/lib/cpp/include/__bits/adt/list.hpp                                aux::list_node<value_type>* where = nullptr)
value_type       1174 uspace/lib/cpp/include/__bits/adt/list.hpp                     where->append(new aux::list_node<value_type>{*first++});
value_type         60 uspace/lib/cpp/include/__bits/adt/map.hpp             using reference       = value_type&;
value_type         61 uspace/lib/cpp/include/__bits/adt/map.hpp             using const_reference = const value_type&;
value_type         65 uspace/lib/cpp/include/__bits/adt/map.hpp             using node_type = aux::rbtree_single_node<value_type>;
value_type         68 uspace/lib/cpp/include/__bits/adt/map.hpp                 value_type, reference, pointer, size_type, node_type
value_type         71 uspace/lib/cpp/include/__bits/adt/map.hpp                 value_type, const_reference, const_pointer, size_type, node_type
value_type         90 uspace/lib/cpp/include/__bits/adt/map.hpp                     using first_argument_type  = value_type;
value_type         91 uspace/lib/cpp/include/__bits/adt/map.hpp                     using second_argument_type = value_type;
value_type         93 uspace/lib/cpp/include/__bits/adt/map.hpp                     bool operator()(const value_type& lhs, const value_type& rhs) const
value_type        141 uspace/lib/cpp/include/__bits/adt/map.hpp             map(initializer_list<value_type> init,
value_type        155 uspace/lib/cpp/include/__bits/adt/map.hpp             map(initializer_list<value_type> init,
value_type        181 uspace/lib/cpp/include/__bits/adt/map.hpp             map& operator=(initializer_list<value_type>& init)
value_type        280 uspace/lib/cpp/include/__bits/adt/map.hpp                 auto node = new node_type{value_type{key, mapped_type{}}};
value_type        292 uspace/lib/cpp/include/__bits/adt/map.hpp                 auto node = new node_type{value_type{move(key), mapped_type{}}};
value_type        330 uspace/lib/cpp/include/__bits/adt/map.hpp             pair<iterator, bool> insert(const value_type& val)
value_type        335 uspace/lib/cpp/include/__bits/adt/map.hpp             pair<iterator, bool> insert(value_type&& val)
value_type        337 uspace/lib/cpp/include/__bits/adt/map.hpp                 return tree_.insert(forward<value_type>(val));
value_type        343 uspace/lib/cpp/include/__bits/adt/map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        349 uspace/lib/cpp/include/__bits/adt/map.hpp             iterator insert(const_iterator, const value_type& val)
value_type        354 uspace/lib/cpp/include/__bits/adt/map.hpp             iterator insert(const_iterator, value_type&& val)
value_type        356 uspace/lib/cpp/include/__bits/adt/map.hpp                 return insert(forward<value_type>(val)).first;
value_type        363 uspace/lib/cpp/include/__bits/adt/map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        376 uspace/lib/cpp/include/__bits/adt/map.hpp             void insert(initializer_list<value_type> init)
value_type        389 uspace/lib/cpp/include/__bits/adt/map.hpp                     auto node = new node_type{value_type{key, forward<Args>(args)...}};
value_type        404 uspace/lib/cpp/include/__bits/adt/map.hpp                     auto node = new node_type{value_type{move(key), forward<Args>(args)...}};
value_type        435 uspace/lib/cpp/include/__bits/adt/map.hpp                     auto node = new node_type{value_type{key, forward<T>(val)}};
value_type        454 uspace/lib/cpp/include/__bits/adt/map.hpp                     auto node = new node_type{value_type{move(key), forward<T>(val)}};
value_type        644 uspace/lib/cpp/include/__bits/adt/map.hpp                 value_type, key_type, aux::key_value_key_extractor<key_type, mapped_type>,
value_type        723 uspace/lib/cpp/include/__bits/adt/map.hpp             using reference       = value_type&;
value_type        724 uspace/lib/cpp/include/__bits/adt/map.hpp             using const_reference = const value_type&;
value_type        728 uspace/lib/cpp/include/__bits/adt/map.hpp             using node_type = aux::rbtree_multi_node<value_type>;
value_type        743 uspace/lib/cpp/include/__bits/adt/map.hpp                     using first_argument_type  = value_type;
value_type        744 uspace/lib/cpp/include/__bits/adt/map.hpp                     using second_argument_type = value_type;
value_type        746 uspace/lib/cpp/include/__bits/adt/map.hpp                     bool operator()(const value_type& lhs, const value_type& rhs) const
value_type        753 uspace/lib/cpp/include/__bits/adt/map.hpp                 value_type, reference, pointer, size_type, node_type
value_type        756 uspace/lib/cpp/include/__bits/adt/map.hpp                 value_type, const_reference, const_pointer, size_type, node_type
value_type        800 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap(initializer_list<value_type> init,
value_type        814 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap(initializer_list<value_type> init,
value_type        840 uspace/lib/cpp/include/__bits/adt/map.hpp             multimap& operator=(initializer_list<value_type>& init)
value_type        941 uspace/lib/cpp/include/__bits/adt/map.hpp             iterator insert(const value_type& val)
value_type        946 uspace/lib/cpp/include/__bits/adt/map.hpp             iterator insert(value_type&& val)
value_type        948 uspace/lib/cpp/include/__bits/adt/map.hpp                 return tree_.insert(forward<value_type>(val));
value_type        954 uspace/lib/cpp/include/__bits/adt/map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        960 uspace/lib/cpp/include/__bits/adt/map.hpp             iterator insert(const_iterator, const value_type& val)
value_type        965 uspace/lib/cpp/include/__bits/adt/map.hpp             iterator insert(const_iterator, value_type&& val)
value_type        967 uspace/lib/cpp/include/__bits/adt/map.hpp                 return insert(forward<value_type>(val));
value_type        974 uspace/lib/cpp/include/__bits/adt/map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        987 uspace/lib/cpp/include/__bits/adt/map.hpp             void insert(initializer_list<value_type> init)
value_type       1163 uspace/lib/cpp/include/__bits/adt/map.hpp                 value_type, key_type, aux::key_value_key_extractor<key_type, mapped_type>,
value_type         49 uspace/lib/cpp/include/__bits/adt/queue.hpp             using value_type      = typename Container::value_type;
value_type        137 uspace/lib/cpp/include/__bits/adt/queue.hpp             void push(const value_type& val)
value_type        142 uspace/lib/cpp/include/__bits/adt/queue.hpp             void push(value_type&& val)
value_type        144 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.push_back(forward<value_type>(val));
value_type        195 uspace/lib/cpp/include/__bits/adt/queue.hpp         class Compare = less<typename Container::value_type>
value_type        200 uspace/lib/cpp/include/__bits/adt/queue.hpp             using value_type      = typename Container::value_type;
value_type        311 uspace/lib/cpp/include/__bits/adt/queue.hpp             void push(const value_type& val)
value_type        317 uspace/lib/cpp/include/__bits/adt/queue.hpp             void push(value_type&& val)
value_type        319 uspace/lib/cpp/include/__bits/adt/queue.hpp                 c.push_back(forward<value_type>(val));
value_type        194 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             auto insert(const value_type& val)
value_type        199 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             auto insert(value_type&& val)
value_type        201 uspace/lib/cpp/include/__bits/adt/rbtree.hpp                 return Policy::insert(*this, forward<value_type>(val));
value_type        316 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             const key_type& get_key(const value_type& val) const
value_type        321 uspace/lib/cpp/include/__bits/adt/rbtree.hpp             bool keys_comp(const key_type& key, const value_type& val) const
value_type        165 uspace/lib/cpp/include/__bits/adt/rbtree_policies.hpp             using value_type = typename Tree::value_type;
value_type        169 uspace/lib/cpp/include/__bits/adt/rbtree_policies.hpp             auto val = value_type{forward<Args>(args)...};
value_type         59 uspace/lib/cpp/include/__bits/adt/set.hpp             using reference       = value_type&;
value_type         60 uspace/lib/cpp/include/__bits/adt/set.hpp             using const_reference = const value_type&;
value_type         64 uspace/lib/cpp/include/__bits/adt/set.hpp             using node_type = aux::rbtree_single_node<value_type>;
value_type         72 uspace/lib/cpp/include/__bits/adt/set.hpp                 value_type, const_reference, const_pointer, size_type, node_type
value_type        117 uspace/lib/cpp/include/__bits/adt/set.hpp             set(initializer_list<value_type> init,
value_type        131 uspace/lib/cpp/include/__bits/adt/set.hpp             set(initializer_list<value_type> init,
value_type        157 uspace/lib/cpp/include/__bits/adt/set.hpp             set& operator=(initializer_list<value_type>& init)
value_type        258 uspace/lib/cpp/include/__bits/adt/set.hpp             pair<iterator, bool> insert(const value_type& val)
value_type        263 uspace/lib/cpp/include/__bits/adt/set.hpp             pair<iterator, bool> insert(value_type&& val)
value_type        265 uspace/lib/cpp/include/__bits/adt/set.hpp                 return tree_.insert(forward<value_type>(val));
value_type        268 uspace/lib/cpp/include/__bits/adt/set.hpp             iterator insert(const_iterator, const value_type& val)
value_type        273 uspace/lib/cpp/include/__bits/adt/set.hpp             iterator insert(const_iterator, value_type&& val)
value_type        275 uspace/lib/cpp/include/__bits/adt/set.hpp                 return insert(forward<value_type>(val)).first;
value_type        285 uspace/lib/cpp/include/__bits/adt/set.hpp             void insert(initializer_list<value_type> init)
value_type        540 uspace/lib/cpp/include/__bits/adt/set.hpp             using reference       = value_type&;
value_type        541 uspace/lib/cpp/include/__bits/adt/set.hpp             using const_reference = const value_type&;
value_type        545 uspace/lib/cpp/include/__bits/adt/set.hpp             using node_type = aux::rbtree_multi_node<value_type>;
value_type        553 uspace/lib/cpp/include/__bits/adt/set.hpp                 value_type, const_reference, const_pointer, size_type, node_type
value_type        598 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset(initializer_list<value_type> init,
value_type        612 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset(initializer_list<value_type> init,
value_type        638 uspace/lib/cpp/include/__bits/adt/set.hpp             multiset& operator=(initializer_list<value_type>& init)
value_type        739 uspace/lib/cpp/include/__bits/adt/set.hpp             iterator insert(const value_type& val)
value_type        744 uspace/lib/cpp/include/__bits/adt/set.hpp             iterator insert(value_type&& val)
value_type        746 uspace/lib/cpp/include/__bits/adt/set.hpp                 return tree_.insert(forward<value_type>(val));
value_type        749 uspace/lib/cpp/include/__bits/adt/set.hpp             iterator insert(const_iterator, const value_type& val)
value_type        754 uspace/lib/cpp/include/__bits/adt/set.hpp             iterator insert(const_iterator, value_type&& val)
value_type        756 uspace/lib/cpp/include/__bits/adt/set.hpp                 return insert(forward<value_type>(val));
value_type        766 uspace/lib/cpp/include/__bits/adt/set.hpp             void insert(initializer_list<value_type> init)
value_type         47 uspace/lib/cpp/include/__bits/adt/stack.hpp             using value_type      = typename container_type::value_type;
value_type        110 uspace/lib/cpp/include/__bits/adt/stack.hpp             void push(const value_type& val)
value_type        115 uspace/lib/cpp/include/__bits/adt/stack.hpp             void push(value_type&& val)
value_type         62 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             using reference       = value_type&;
value_type         63 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             using const_reference = const value_type&;
value_type         68 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, reference, pointer, size_type
value_type         71 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, const_reference, const_pointer, size_type
value_type         74 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, reference, pointer
value_type         77 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, const_reference, const_pointer
value_type        122 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map(initializer_list<value_type> init,
value_type        152 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map(initializer_list<value_type> init, size_type bucket_count,
value_type        157 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map(initializer_list<value_type> init, size_type bucket_count,
value_type        184 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_map& operator=(initializer_list<value_type>& init)
value_type        256 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             pair<iterator, bool> insert(const value_type& val)
value_type        261 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             pair<iterator, bool> insert(value_type&& val)
value_type        263 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 return table_.insert(forward<value_type>(val));
value_type        269 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        275 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             iterator insert(const_iterator, const value_type& val)
value_type        280 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             iterator insert(const_iterator, value_type&& val)
value_type        282 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 return insert(forward<value_type>(val)).first;
value_type        289 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        302 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             void insert(initializer_list<value_type> init)
value_type        699 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, key_type, aux::key_value_key_extractor<key_type, mapped_type>,
value_type        737 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             using reference       = value_type&;
value_type        738 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             using const_reference = const value_type&;
value_type        743 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, reference, pointer, size_type
value_type        746 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, const_reference, const_pointer, size_type
value_type        749 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, reference, pointer
value_type        752 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, const_reference, const_pointer
value_type        797 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap(initializer_list<value_type> init,
value_type        829 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap(initializer_list<value_type> init, size_type bucket_count,
value_type        834 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap(initializer_list<value_type> init, size_type bucket_count,
value_type        861 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             unordered_multimap& operator=(initializer_list<value_type>& init)
value_type        933 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             iterator insert(const value_type& val)
value_type        938 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             iterator insert(value_type&& val)
value_type        940 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 return table_.insert(forward<value_type>(val));
value_type        946 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        952 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             iterator insert(const_iterator, const value_type& val)
value_type        957 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             iterator insert(const_iterator, value_type&& val)
value_type        959 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 return insert(forward<value_type>(val));
value_type        966 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 enable_if_t<is_constructible_v<value_type, T&&>>* = nullptr
value_type        979 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp             void insert(initializer_list<value_type> init)
value_type       1131 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 value_type, key_type, aux::key_value_key_extractor<key_type, mapped_type>,
value_type         60 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             using reference       = value_type&;
value_type         61 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             using const_reference = const value_type&;
value_type         71 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 value_type, const_reference, const_pointer, size_type
value_type         75 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 value_type, const_reference, const_pointer
value_type        127 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(initializer_list<value_type> init,
value_type        157 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(initializer_list<value_type> init, size_type bucket_count,
value_type        162 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set(initializer_list<value_type> init, size_type bucket_count,
value_type        189 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_set& operator=(initializer_list<value_type>& init)
value_type        261 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             pair<iterator, bool> insert(const value_type& val)
value_type        266 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             pair<iterator, bool> insert(value_type&& val)
value_type        268 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 return table_.insert(forward<value_type>(val));
value_type        271 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             iterator insert(const_iterator, const value_type& val)
value_type        276 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             iterator insert(const_iterator, value_type&& val)
value_type        278 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 return insert(forward<value_type>(val)).first;
value_type        288 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             void insert(initializer_list<value_type> init)
value_type        476 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             using reference       = value_type&;
value_type        477 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             using const_reference = const value_type&;
value_type        487 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 value_type, const_reference, const_pointer, size_type
value_type        491 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 value_type, const_reference, const_pointer
value_type        543 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset(initializer_list<value_type> init,
value_type        573 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset(initializer_list<value_type> init, size_type bucket_count,
value_type        578 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset(initializer_list<value_type> init, size_type bucket_count,
value_type        605 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             unordered_multiset& operator=(initializer_list<value_type>& init)
value_type        677 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             iterator insert(const value_type& val)
value_type        682 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             iterator insert(value_type&& val)
value_type        684 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 return table_.insert(forward<value_type>(val));
value_type        687 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             iterator insert(const_iterator, const value_type& val)
value_type        692 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             iterator insert(const_iterator, value_type&& val)
value_type        694 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp                 return insert(forward<value_type>(val));
value_type        704 uspace/lib/cpp/include/__bits/adt/unordered_set.hpp             void insert(initializer_list<value_type> init)
value_type         49 uspace/lib/cpp/include/__bits/adt/vector.hpp             using reference              = value_type&;
value_type         50 uspace/lib/cpp/include/__bits/adt/vector.hpp             using const_reference        = const value_type&;
value_type        280 uspace/lib/cpp/include/__bits/adt/vector.hpp             void resize(size_type sz, const value_type& val)
value_type        415 uspace/lib/cpp/include/__bits/adt/vector.hpp             iterator insert(const_iterator position, const value_type& x)
value_type        425 uspace/lib/cpp/include/__bits/adt/vector.hpp             iterator insert(const_iterator position, value_type&& x)
value_type        430 uspace/lib/cpp/include/__bits/adt/vector.hpp                 *pos = forward<value_type>(x);
value_type        435 uspace/lib/cpp/include/__bits/adt/vector.hpp             iterator insert(const_iterator position, size_type count, const value_type& x)
value_type        505 uspace/lib/cpp/include/__bits/adt/vector.hpp             value_type* data_;
value_type        693 uspace/lib/cpp/include/__bits/algorithm.hpp         using value_type = typename iterator_traits<RandomAccessIterator>::value_type;
value_type        695 uspace/lib/cpp/include/__bits/algorithm.hpp         sort(first, last, less<value_type>{});
value_type        924 uspace/lib/cpp/include/__bits/algorithm.hpp         using value_type = typename iterator_traits<RandomAccessIterator>::value_type;
value_type        926 uspace/lib/cpp/include/__bits/algorithm.hpp         push_heap(first, last, less<value_type>{});
value_type        959 uspace/lib/cpp/include/__bits/algorithm.hpp         using value_type = typename iterator_traits<RandomAccessIterator>::value_type;
value_type        961 uspace/lib/cpp/include/__bits/algorithm.hpp         pop_heap(first, last, less<value_type>{});
value_type        985 uspace/lib/cpp/include/__bits/algorithm.hpp         using value_type = typename iterator_traits<RandomAccessIterator>::value_type;
value_type        987 uspace/lib/cpp/include/__bits/algorithm.hpp         make_heap(first, last, less<value_type>{});
value_type       1015 uspace/lib/cpp/include/__bits/algorithm.hpp         using value_type = typename iterator_traits<RandomAccessIterator>::value_type;
value_type       1017 uspace/lib/cpp/include/__bits/algorithm.hpp         sort_heap(first, last, less<value_type>{});
value_type       1036 uspace/lib/cpp/include/__bits/algorithm.hpp         using value_type = typename iterator_traits<RandomAccessIterator>::value_type;
value_type       1038 uspace/lib/cpp/include/__bits/algorithm.hpp         return is_heap_until(first, last, less<value_type>{});
value_type         46 uspace/lib/cpp/include/__bits/aux.hpp         constexpr operator value_type() const noexcept
value_type         51 uspace/lib/cpp/include/__bits/aux.hpp         constexpr value_type operator()() const noexcept
value_type         44 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const value_type& re = value_type{},
value_type         45 uspace/lib/cpp/include/__bits/complex.hpp                               const value_type& im = value_type{})
value_type         58 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type real() const
value_type         63 uspace/lib/cpp/include/__bits/complex.hpp             void real(value_type val)
value_type         68 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type imag() const
value_type         73 uspace/lib/cpp/include/__bits/complex.hpp             void imag(value_type val)
value_type         78 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const value_type& val)
value_type         81 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = value_type{};
value_type         86 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator+=(const value_type& val)
value_type         93 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator-=(const value_type& val)
value_type        100 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator*=(const value_type& val)
value_type        108 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator/=(const value_type& val)
value_type        174 uspace/lib/cpp/include/__bits/complex.hpp             value_type real_;
value_type        175 uspace/lib/cpp/include/__bits/complex.hpp             value_type imag_;
value_type        184 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const value_type& re = value_type{},
value_type        185 uspace/lib/cpp/include/__bits/complex.hpp                               const value_type& im = value_type{})
value_type        198 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type real() const
value_type        203 uspace/lib/cpp/include/__bits/complex.hpp             void real(value_type val)
value_type        208 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type imag() const
value_type        213 uspace/lib/cpp/include/__bits/complex.hpp             void imag(value_type val)
value_type        218 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const value_type& val)
value_type        221 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = value_type{};
value_type        226 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator+=(const value_type& val)
value_type        233 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator-=(const value_type& val)
value_type        240 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator*=(const value_type& val)
value_type        248 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator/=(const value_type& val)
value_type        314 uspace/lib/cpp/include/__bits/complex.hpp             value_type real_;
value_type        315 uspace/lib/cpp/include/__bits/complex.hpp             value_type imag_;
value_type        324 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const value_type& re = value_type{},
value_type        325 uspace/lib/cpp/include/__bits/complex.hpp                               const value_type& im = value_type{})
value_type        338 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type real() const
value_type        343 uspace/lib/cpp/include/__bits/complex.hpp             void real(value_type val)
value_type        348 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type imag() const
value_type        353 uspace/lib/cpp/include/__bits/complex.hpp             void imag(value_type val)
value_type        358 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const value_type& val)
value_type        361 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = value_type{};
value_type        366 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator+=(const value_type& val)
value_type        373 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator-=(const value_type& val)
value_type        380 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator*=(const value_type& val)
value_type        388 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator/=(const value_type& val)
value_type        454 uspace/lib/cpp/include/__bits/complex.hpp             value_type real_;
value_type        455 uspace/lib/cpp/include/__bits/complex.hpp             value_type imag_;
value_type        464 uspace/lib/cpp/include/__bits/complex.hpp             constexpr complex(const value_type& re = value_type{},
value_type        465 uspace/lib/cpp/include/__bits/complex.hpp                               const value_type& im = value_type{})
value_type        478 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type real() const
value_type        483 uspace/lib/cpp/include/__bits/complex.hpp             void real(value_type val)
value_type        488 uspace/lib/cpp/include/__bits/complex.hpp             constexpr value_type imag() const
value_type        493 uspace/lib/cpp/include/__bits/complex.hpp             void imag(value_type val)
value_type        498 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator=(const value_type& val)
value_type        501 uspace/lib/cpp/include/__bits/complex.hpp                 imag_ = value_type{};
value_type        506 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator+=(const value_type& val)
value_type        513 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator-=(const value_type& val)
value_type        520 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator*=(const value_type& val)
value_type        528 uspace/lib/cpp/include/__bits/complex.hpp             complex& operator/=(const value_type& val)
value_type        594 uspace/lib/cpp/include/__bits/complex.hpp             value_type real_;
value_type        595 uspace/lib/cpp/include/__bits/complex.hpp             value_type imag_;
value_type         65 uspace/lib/cpp/include/__bits/insert_iterator.hpp             using reference         = value_type&;
value_type         66 uspace/lib/cpp/include/__bits/insert_iterator.hpp             using pointer           = value_type*;
value_type         68 uspace/lib/cpp/include/__bits/insert_iterator.hpp             explicit insert_iterator(difference_type count, const value_type& val = value_type{})
value_type         78 uspace/lib/cpp/include/__bits/insert_iterator.hpp             const value_type& operator*() const
value_type         83 uspace/lib/cpp/include/__bits/insert_iterator.hpp             const value_type* operator->() const
value_type        113 uspace/lib/cpp/include/__bits/insert_iterator.hpp             value_type value_;
value_type         68 uspace/lib/cpp/include/__bits/iterator.hpp         using value_type        = typename Iterator::value_type;
value_type        171 uspace/lib/cpp/include/__bits/iterator.hpp             typename iterator_traits<Iterator>::value_type,
value_type        369 uspace/lib/cpp/include/__bits/iterator.hpp             back_insert_iterator& operator=(const typename container_type::value_type& value)
value_type        375 uspace/lib/cpp/include/__bits/iterator.hpp             back_insert_iterator& operator=(typename container_type::value_type&& value)
value_type        421 uspace/lib/cpp/include/__bits/iterator.hpp             front_insert_iterator& operator=(const typename container_type::value_type& value)
value_type        427 uspace/lib/cpp/include/__bits/iterator.hpp             front_insert_iterator& operator=(typename container_type::value_type&& value)
value_type        473 uspace/lib/cpp/include/__bits/iterator.hpp             insert_iterator& operator=(const typename container_type::value_type& value)
value_type        481 uspace/lib/cpp/include/__bits/iterator.hpp             insert_iterator& operator=(typename container_type::value_type&& value)
value_type        546 uspace/lib/cpp/include/__bits/iterator.hpp             using value_type        = typename iterator_traits<iterator_type>::value_type;
value_type         76 uspace/lib/cpp/include/__bits/memory/allocator_traits.hpp         using value_type         = typename Alloc::value_type;
value_type        216 uspace/lib/cpp/include/__bits/memory/allocator_traits.hpp                 return static_cast<pointer>(::operator new(n * sizeof(value_type)));
value_type        121 uspace/lib/cpp/include/__bits/memory/misc.hpp             ::new (static_cast<void*>(&*result)) typename iterator_traits<ForwardIterator>::value_type(*first);
value_type        132 uspace/lib/cpp/include/__bits/memory/misc.hpp             ::new (static_cast<void*>(&*result)) typename iterator_traits<ForwardIterator>::value_type(*first);
value_type        143 uspace/lib/cpp/include/__bits/memory/misc.hpp             ::new (static_cast<void*>(&*first)) typename iterator_traits<ForwardIterator>::value_type(x);
value_type        152 uspace/lib/cpp/include/__bits/memory/misc.hpp             ::new (static_cast<void*>(&*first)) typename iterator_traits<ForwardIterator>::value_type(x);
value_type        100 uspace/lib/cpp/include/__bits/memory/type_getters.hpp     struct alloc_get_pointer: aux::type_is<typename T::value_type*>
value_type        110 uspace/lib/cpp/include/__bits/memory/type_getters.hpp         : aux::type_is<typename pointer_traits<Ptr>::template rebind<const typename T::value_type>>
value_type        450 uspace/lib/cpp/include/__bits/string/string.hpp             using reference       = value_type&;
value_type        451 uspace/lib/cpp/include/__bits/string/string.hpp             using const_reference = const value_type&;
value_type        510 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(const value_type* str, size_type n, const allocator_type& alloc = allocator_type{})
value_type        516 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(const value_type* str, const allocator_type& alloc = allocator_type{})
value_type        522 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(size_type n, value_type c, const allocator_type& alloc = allocator_type{})
value_type        543 uspace/lib/cpp/include/__bits/string/string.hpp                         traits_type::assign(data_[i], static_cast<value_type>(last));
value_type        553 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string(initializer_list<value_type> init, const allocator_type& alloc = allocator_type{})
value_type        597 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator=(const value_type* other)
value_type        604 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator=(value_type c)
value_type        611 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator=(initializer_list<value_type> init)
value_type        702 uspace/lib/cpp/include/__bits/string/string.hpp             void resize(size_type new_size, value_type c)
value_type        718 uspace/lib/cpp/include/__bits/string/string.hpp                 resize(new_size, value_type{});
value_type        808 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator+=(const value_type* str)
value_type        813 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator+=(value_type c)
value_type        819 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& operator+=(initializer_list<value_type> init)
value_type        841 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& append(const value_type* str, size_type n)
value_type        852 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& append(const value_type* str)
value_type        857 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& append(size_type n, value_type c)
value_type        868 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& append(initializer_list<value_type> init)
value_type        873 uspace/lib/cpp/include/__bits/string/string.hpp             void push_back(value_type c)
value_type        907 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& assign(const value_type* str, size_type n)
value_type        918 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& assign(const value_type* str)
value_type        923 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& assign(size_type n, value_type c)
value_type        934 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& assign(initializer_list<value_type> init)
value_type        955 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& insert(size_type pos, const value_type* str, size_type n)
value_type        969 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& insert(size_type pos, const value_type* str)
value_type        974 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& insert(size_type pos, size_type n, value_type c)
value_type        979 uspace/lib/cpp/include/__bits/string/string.hpp             iterator insert(const_iterator pos, value_type c)
value_type        993 uspace/lib/cpp/include/__bits/string/string.hpp             iterator insert(const_iterator pos, size_type n, value_type c)
value_type       1026 uspace/lib/cpp/include/__bits/string/string.hpp             iterator insert(const_iterator pos, initializer_list<value_type> init)
value_type       1078 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& replace(size_type pos, size_type n1, const value_type* str,
value_type       1102 uspace/lib/cpp/include/__bits/string/string.hpp             basic_string& replace(size_type pos, size_type n, const value_type* str)
value_type       1108 uspace/lib/cpp/include/__bits/string/string.hpp                                   value_type c)
value_type       1120 uspace/lib/cpp/include/__bits/string/string.hpp                                   const value_type* str, size_type n)
value_type       1126 uspace/lib/cpp/include/__bits/string/string.hpp                                   const value_type* str)
value_type       1132 uspace/lib/cpp/include/__bits/string/string.hpp                                   size_type n, value_type c)
value_type       1145 uspace/lib/cpp/include/__bits/string/string.hpp                                   initializer_list<value_type> init)
value_type       1150 uspace/lib/cpp/include/__bits/string/string.hpp             size_type copy(value_type* str, size_type n, size_type pos = 0) const
value_type       1172 uspace/lib/cpp/include/__bits/string/string.hpp             const value_type* c_str() const noexcept
value_type       1177 uspace/lib/cpp/include/__bits/string/string.hpp             const value_type* data() const noexcept
value_type       1210 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find(const value_type* str, size_type pos, size_type len) const noexcept
value_type       1227 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find(const value_type* str, size_type pos = 0) const noexcept
value_type       1232 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find(value_type c, size_type pos = 0) const noexcept
value_type       1251 uspace/lib/cpp/include/__bits/string/string.hpp             size_type rfind(const value_type* str, size_type pos, size_type len) const noexcept
value_type       1268 uspace/lib/cpp/include/__bits/string/string.hpp             size_type rfind(const value_type* str, size_type pos = npos) const noexcept
value_type       1273 uspace/lib/cpp/include/__bits/string/string.hpp             size_type rfind(value_type c, size_type pos = npos) const noexcept
value_type       1292 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_of(const value_type* str, size_type pos, size_type len) const noexcept
value_type       1309 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_of(const value_type* str, size_type pos = 0) const noexcept
value_type       1314 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_of(value_type c, size_type pos = 0) const noexcept
value_type       1324 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_of(const value_type* str, size_type pos, size_type len) const noexcept
value_type       1338 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_of(const value_type* str, size_type pos = npos) const noexcept
value_type       1343 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_of(value_type c, size_type pos = npos) const noexcept
value_type       1353 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_not_of(const value_type* str, size_type pos, size_type len) const noexcept
value_type       1370 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_not_of(const value_type* str, size_type pos = 0) const noexcept
value_type       1375 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_first_not_of(value_type c, size_type pos = 0) const noexcept
value_type       1394 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_not_of(const value_type* str, size_type pos, size_type len) const noexcept
value_type       1408 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_not_of(const value_type* str, size_type pos = npos) const noexcept
value_type       1413 uspace/lib/cpp/include/__bits/string/string.hpp             size_type find_last_not_of(value_type c, size_type pos = npos) const noexcept
value_type       1462 uspace/lib/cpp/include/__bits/string/string.hpp             int compare(const value_type* other) const
value_type       1467 uspace/lib/cpp/include/__bits/string/string.hpp             int compare(size_type pos, size_type n, const value_type* other) const
value_type       1473 uspace/lib/cpp/include/__bits/string/string.hpp                         const value_type* other, size_type n2) const
value_type       1479 uspace/lib/cpp/include/__bits/string/string.hpp             value_type* data_;
value_type       1495 uspace/lib/cpp/include/__bits/string/string.hpp             void init_(const value_type* str, size_type size)
value_type       1579 uspace/lib/cpp/include/__bits/string/string.hpp                 value_type c{};
value_type       1583 uspace/lib/cpp/include/__bits/string/string.hpp             bool is_any_of_(size_type idx, const value_type* str, size_type len) const
value_type       1594 uspace/lib/cpp/include/__bits/string/string.hpp             bool substr_starts_at_(size_type idx, const value_type* str, size_type len) const
value_type         50 uspace/lib/cpp/src/__bits/test/adaptors.cpp                 using pointer         = value_type*;
value_type         56 uspace/lib/cpp/src/__bits/test/adaptors.cpp                     priority_queue<value_type, std::vector<value_type>, Comp> q,
value_type        100 uspace/lib/cpp/src/__bits/test/adaptors.cpp                 priority_queue<value_type, std::vector<value_type>, Comp> queue_;
HelenOS homepage, sources at GitHub