Searched defs:LinkedList (Results 1 - 1 of 1) sorted by relevance

/external/chromium/base/
H A Dlinked_list.h8 // Simple LinkedList type. (See the Q&A section to understand how this
18 // Next, to keep track of the list's head/tail, use a LinkedList instance:
20 // LinkedList<MyNodeType> list;
22 // To add elements to the list, use any of LinkedList::Append,
53 // Q. Should I use std::list or base::LinkedList?
55 // A. The main reason to use base::LinkedList over std::list is
59 // Comparing the performance of base::LinkedList<T> to std::list<T*>:
61 // * Erasing an element of type T* from base::LinkedList<T> is
66 // * Insertion operations with base::LinkedList<T> never require
69 // Q. How does base::LinkedList implementatio
134 class LinkedList { class in namespace:base
139 LinkedList() : root_(&root_, &root_) {} function in class:base::LinkedList
[all...]

Completed in 72 milliseconds