Searched refs:iterator (Results 51 - 75 of 258) sorted by relevance

1234567891011

/frameworks/compile/mclinker/include/mcld/LD/
H A DLDContext.h38 typedef SectionTable::iterator sect_iterator;
42 typedef SymbolTable::iterator sym_iterator;
H A DArchive.h77 InputTree::iterator,
87 InputTree::iterator lastPos;
156 /// @param pIter - the iterator in the input tree built from this archive
157 bool addObjectMember(uint32_t pFileOffset, InputTree::iterator pIter);
176 InputTree::iterator pLastPos,
H A DEhFrame.h41 typedef CIEListType::iterator cie_iterator;
43 typedef FDEListType::iterator fde_iterator;
/frameworks/compile/mclinker/lib/MC/
H A DAttributeFactory.cpp31 iterator cur = m_AttrSet.begin();
32 iterator aEnd = m_AttrSet.end();
H A DSymbolCategory.cpp248 SymbolCategory::iterator SymbolCategory::begin()
253 SymbolCategory::iterator SymbolCategory::end()
268 SymbolCategory::iterator SymbolCategory::localBegin()
273 SymbolCategory::iterator SymbolCategory::localEnd()
275 iterator iter = m_OutputSymbols.begin();
294 SymbolCategory::iterator SymbolCategory::commonBegin()
299 SymbolCategory::iterator SymbolCategory::commonEnd()
301 iterator iter = localEnd();
318 SymbolCategory::iterator SymbolCategory::regularBegin()
323 SymbolCategory::iterator SymbolCategor
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp96 ARMGOT::iterator got_it = m_GOT.getNextGOTPLTEntry();
123 ARMGOT::iterator got_it = m_GOT.getNextGOTPLTEntry();
136 iterator first = m_SectionData.getFragmentList().begin();
161 iterator first = m_SectionData.getFragmentList().begin();
188 ARMPLT::iterator it = m_SectionData.begin();
189 ARMPLT::iterator ie = m_SectionData.end();
232 iterator it = begin();
241 ARMPLT::iterator ie = end();
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp78 X86GOT::iterator X86GOT::begin()
88 X86GOT::iterator X86GOT::end()
/frameworks/compile/mclinker/include/mcld/Support/
H A DGCFactory.h19 #include <iterator>
58 * \brief DataIterator provides STL compatible iterator for allocators
72 typedef DataIterator<ChunkType, nonconst_traits> iterator; typedef in class:mcld::DataIterator
98 assert(0 && "data iterator goes to a invalid position");
120 typename Alloc::value_type> > iterator; typedef in class:mcld::GCFactoryBase
174 iterator begin()
175 { return iterator(Alloc::m_pRoot, 0); }
180 iterator end() {
183 iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
H A DTargetRegistry.h130 typedef TargetListTy::iterator iterator; typedef in class:mcld::TargetRegistry
136 static iterator begin() { return s_TargetList.begin(); }
137 static iterator end() { return s_TargetList.end(); }
223 llvm::TargetRegistry::iterator TIter, TEnd = llvm::TargetRegistry::end();
/frameworks/compile/libbcc/tools/mcld/
H A DMain.cpp219 llvm::cl::list<std::string>::iterator wrap, wrap_end = OptWrapList.end();
225 llvm::cl::list<std::string>::iterator portable, portable_end = OptPortableList.end();
231 llvm::cl::list<std::string>::iterator sdir, sdir_end = OptSearchDirList.end();
272 llvm::cl::list<std::string>::iterator file_it = OptInputObjectFiles.begin();
273 llvm::cl::list<std::string>::iterator lib_it = OptNameSpecList.begin();
275 llvm::cl::list<std::string>::iterator file_begin = OptInputObjectFiles.begin();
276 llvm::cl::list<std::string>::iterator lib_begin = OptNameSpecList.begin();
277 llvm::cl::list<std::string>::iterator file_end = OptInputObjectFiles.end();
278 llvm::cl::list<std::string>::iterator lib_end = OptNameSpecList.end();
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp212 llvm::cl::list<std::string>::iterator wrap, wrap_end = OptWrapList.end();
218 llvm::cl::list<std::string>::iterator portable, portable_end = OptPortableList.end();
224 llvm::cl::list<std::string>::iterator sdir, sdir_end = OptSearchDirList.end();
265 llvm::cl::list<std::string>::iterator file_it = OptInputObjectFiles.begin();
266 llvm::cl::list<std::string>::iterator lib_it = OptNameSpecList.begin();
268 llvm::cl::list<std::string>::iterator file_begin = OptInputObjectFiles.begin();
269 llvm::cl::list<std::string>::iterator lib_begin = OptNameSpecList.begin();
270 llvm::cl::list<std::string>::iterator file_end = OptInputObjectFiles.end();
271 llvm::cl::list<std::string>::iterator lib_end = OptNameSpecList.end();
/frameworks/base/drm/java/android/drm/
H A DDrmUtils.java179 * This method returns an iterator object that can be used to iterate over
182 * @return The iterator object.
184 public Iterator<String> iterator() { method in class:DrmUtils.ExtendedMetadataParser
185 return mMap.values().iterator();
189 * This method returns an iterator object that can be used to iterate over
192 * @return The iterator object.
195 return mMap.keySet().iterator();
/frameworks/compile/mclinker/lib/Support/
H A DMemoryArea.cpp109 SpaceList::iterator space, sEnd = m_SpaceList.end();
116 SpaceList::iterator space, sEnd = m_SpaceList.end();
128 SpaceList::iterator sIter, sEnd = m_SpaceList.end();
/frameworks/compile/mclinker/unittests/
H A DUniqueGCFactoryBaseTest.cpp78 TEST_F( UniqueGCFactoryBaseTest, iterator )
94 MemoryAreaFactory::iterator aIter = memFactory->begin();
99 MemoryAreaFactory::iterator aEnd = memFactory->end();
H A DInputTreeTest.cpp48 InputTree::iterator node = m_pTestee->root();
75 InputTree::iterator node = m_pTestee->root();
100 InputTree::iterator node = m_pTestee->root();
121 InputTree::iterator node = m_pTestee->root();
H A DHashTableTest.cpp91 HashTableTy::iterator iter;
117 HashTableTy::iterator entry = hashTable->find(key);
157 HashTableTy::iterator iter;
183 HashTableTy::iterator iter;
206 HashTableTy::iterator iter;
241 HashTableTy::iterator iter;
262 HashTableTy::iterator iter, iEnd = hashTable->end();
/frameworks/base/media/mca/filterfw/native/base/
H A Dutilities.h44 // For hash_[multi]set, it is important that this deletes behind the iterator
45 // because the hash_set may call the hash function on the iterator when it is
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
116 typename std::set<T>::iterator iter = items_.find(item);
152 std::pair<typename Collection::iterator, bool> ret =
/frameworks/base/media/mca/filterpacks/native/base/
H A Dutilities.h44 // For hash_[multi]set, it is important that this deletes behind the iterator
45 // because the hash_set may call the hash function on the iterator when it is
64 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
116 typename std::set<T>::iterator iter = items_.find(item);
152 std::pair<typename Collection::iterator, bool> ret =
/frameworks/av/media/libstagefright/foundation/
H A DAAtomizer.cpp43 List<AString>::iterator it = entry.begin();
/frameworks/base/core/java/android/util/
H A DFastImmutableArraySet.java24 * The same iterator instance is reused each time to avoid creating lots of garbage.
39 public Iterator<T> iterator() { method in class:FastImmutableArraySet
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DGDBJITRegistrar.cpp106 void deregisterObjectInternal(RegisteredObjectBufferMap::iterator I);
146 for (RegisteredObjectBufferMap::iterator I = ObjectBufferMap.begin(), E = ObjectBufferMap.end();
148 // Call the private method that doesn't update the map so our iterator
187 RegisteredObjectBufferMap::iterator I = ObjectBufferMap.find(Object);
198 RegisteredObjectBufferMap::iterator I) {
/frameworks/compile/mclinker/lib/LD/
H A DLDSectionFactory.cpp42 iterator sect_iter, sect_end = end();
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriterPass.cpp35 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
52 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriterPass.cpp35 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
52 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputTree.h36 typedef PolicyIterator<Input, typename Traits::nonconst_traits, IteratorType> iterator; typedef in class:mcld::PolicyIterator
43 PolicyIterator(const iterator &X)
89 typedef BinaryTree<Input>::iterator iterator; typedef in class:mcld::InputTree
94 * \brief Mover provides the interface for moving iterator forward.
97 * iterator forward in certain direction. @ref Mover::connect
107 * \brief class Succeeder moves the iterator afterward.
120 * \brief class Includer moves the iterator downward.
190 bool isGroup(const InputTree::iterator& pos);

Completed in 216 milliseconds

1234567891011