Lines Matching full:list
10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in
38 // Double linked list. In the android NS we declare the nodes and
39 // iterators. The list declaration in the std NS follows that.
151 // std::list
154 class list {
167 list() { init(); }
168 ~list() { clear(); }
170 // Empty the list.
185 // Add data at the begin of the list.
199 // @eturn the number of elements in the list.
202 // @return the maximum size for a list
206 // @param pos Iterator in the list.
240 void list<_T>::clear() {
252 typename list<_T>::iterator list<_T>::insert(iterator pos, const value_type& elt) {
265 typename list<_T>::iterator list<_T>::erase(iterator pos) {
272 typename list<_T>::iterator list<_T>::erase(iterator first, iterator last) {
280 void list<_T>::eraseAtPos(iterator pos) {