/frameworks/compile/mclinker/include/mcld/ADT/ |
ilist_sort.h | 22 void sort(llvm::iplist<T, Alloc>& xs, size_t size, Comparator is_less_than) { 23 typedef llvm::iplist<T, Alloc> iplist; typedef 24 typedef typename iplist::iterator iterator; 50 iplist ys; 77 void sort(llvm::iplist<T, Alloc>& list,
|
/frameworks/compile/mclinker/unittests/ |
GCFactoryListTraitsTest.h | 77 const llvm::iplist<Node, mcld::GCFactoryListTraits<Node> >& getNodeList() 82 llvm::iplist<Node, mcld::GCFactoryListTraits<Node> >& getNodeList() { 90 llvm::iplist<Node, mcld::GCFactoryListTraits<Node> > m_pNodeList;
|
GCFactoryListTraitsTest.cpp | 38 // Reset the node value and (re)insert into the iplist. 47 // Erasing of llvm::iplist won't destroy the allocation of the nodes managed 64 llvm::iplist<Node>::const_iterator it = m_pNodeList.begin(); \ 102 for (llvm::iplist<Node>::const_iterator I = m_pNodeList.begin(),
|
SectionDataTest.cpp | 61 llvm::iplist<Fragment>::iterator iter = s->begin();
|
/external/llvm/include/llvm/ADT/ |
ilist.h | 49 template<typename NodeTy, typename Traits> class iplist; 341 /// iplist - The subset of list functionality that can safely be used on nodes 352 /// in the list. When the list is empty, the pointer in the iplist points 362 class iplist : public Traits { class in namespace:llvm 382 // No fundamental reason why iplist can't be copyable, but the default 384 iplist(const iplist &) = delete; 385 void operator=(const iplist &) = delete; 400 iplist() : Head(this->provideInitialHead()) {} function in class:llvm::iplist 401 ~iplist() { [all...] |
/external/llvm/include/llvm/IR/ |
SymbolTableListTraits.h | 1 //===-- llvm/SymbolTableListTraits.h - Traits for iplist --------*- C++ -*-===// 34 template <typename NodeTy, typename Traits> class iplist; 118 class SymbolTableList : public iplist<NodeTy, SymbolTableListTraits<NodeTy>> {};
|
/external/llvm/include/llvm/Transforms/Utils/ |
SymbolRewriter.h | 89 typedef iplist<RewriteDescriptor> RewriteDescriptorList;
|
/frameworks/compile/mclinker/include/mcld/LD/ |
RelocData.h | 34 * RelocationList here to avoid iplist to delete Relocations. 44 typedef llvm::iplist<Relocation, GCFactoryListTraits<Relocation> >
|
SectionData.h | 36 typedef llvm::iplist<Fragment> FragmentListType;
|
/frameworks/compile/mclinker/include/mcld/Target/ |
TargetLDBackend.h | 50 typedef llvm::iplist<Relocation, GCFactoryListTraits<Relocation> >
|
/external/llvm/include/llvm/MC/ |
MCSection.h | 60 typedef iplist<MCFragment> FragmentListType;
|
/external/llvm/lib/Transforms/Utils/ |
SymbolRewriter.cpp | 134 iterator_range<typename iplist<ValueType>::iterator> 153 iterator_range<typename iplist<ValueType>::iterator>
|
/external/llvm/lib/IR/ |
BasicBlock.cpp | 97 iplist<BasicBlock>::iterator BasicBlock::eraseFromParent() {
|
Instruction.cpp | 75 iplist<Instruction>::iterator Instruction::eraseFromParent() {
|