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

/external/llvm/include/llvm/ADT/
H A Dilist.h1 //==-- llvm/ADT/ilist.h - Intrusive Linked List Template ---------*- C++ -*-==//
19 // The ilist class itself, should be a plug in replacement for list, assuming
24 // The ilist class is implemented by allocating a 'tail' node when the list is
72 /// strategy. The sentinel is stored in the prev field of ilist's Head.
82 /// provideInitialHead - when constructing an ilist, provide a starting
214 assert(NodePtr && "--'d off the beginning of an ilist!");
448 // an ilist (and potentially deleted) with iterators still pointing at it.
622 struct ilist : public iplist<NodeTy> { struct in namespace:llvm
626 ilist() {} function in struct:llvm::ilist
627 ilist(cons function in struct:llvm::ilist
630 explicit ilist(size_type count) { function in struct:llvm::ilist
633 ilist(size_type count, const NodeTy &val) { function in struct:llvm::ilist
636 template<class InIt> ilist(InIt first, InIt last) { function in struct:llvm::ilist
[all...]

Completed in 587 milliseconds