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

1234567891011>>

/frameworks/compile/mclinker/include/mcld/Support/
H A DUniqueGCFactory.h44 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
58 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
71 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
H A DGCFactory.h16 #include <iterator>
55 * \brief DataIterator provides STL compatible iterator for allocators
69 typedef DataIterator<ChunkType, nonconst_traits> iterator; typedef in class:mcld::DataIterator
95 assert(0 && "data iterator goes to a invalid position");
117 typename Alloc::value_type> > iterator; typedef in class:mcld::GCFactoryBase
171 iterator begin()
172 { return iterator(Alloc::m_pRoot, 0); }
177 iterator end() {
180 iterator(Alloc::m_pCurrent, Alloc::m_pCurrent->bound);
/frameworks/compile/mclinker/unittests/
H A DUniqueGCFactoryBaseTest.cpp72 TEST_F( UniqueGCFactoryBaseTest, iterator )
88 MemoryAreaFactory::iterator aIter = memFactory->begin();
93 MemoryAreaFactory::iterator aEnd = memFactory->end();
H A DBinTreeTest.cpp50 BinaryTree<int>::iterator pos = m_pTestee->root();
60 BinaryTree<int>::iterator pos2 = mergeTree->root();
74 BinaryTree<int>::iterator pos = m_pTestee->root();
93 BinaryTree<int>::iterator pos = m_pTestee->root();
103 BinaryTree<int>::iterator pos2 = mergeTree->root();
113 BinaryTree<int>::iterator pos = m_pTestee->root();
116 BinaryTree<int>::iterator pos2 = mergeTree->root();
128 BinaryTree<int>::iterator pos = m_pTestee->root();
157 BinaryTree<int>::iterator pos = m_pTestee->root();
187 BinaryTree<int>::iterator po
[all...]
/frameworks/base/telephony/java/com/android/ims/
H A DImsConferenceState.java110 Iterator<Entry<String, Bundle>> iterator = entries.iterator();
112 while (iterator.hasNext()) {
113 Entry<String, Bundle> entry = iterator.next();
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h52 const InputTree::iterator& getCurrentNode() const { return m_Root; }
53 InputTree::iterator& getCurrentNode() { return m_Root; }
94 InputTree::iterator m_Root;
95 std::stack<InputTree::iterator> m_ReturnStack;
/frameworks/compile/mclinker/include/mcld/Target/
H A DOutputRelocSection.h50 typedef RelocData::iterator RelocIterator;
/frameworks/compile/mclinker/lib/Script/
H A DRpnExpr.cpp76 RpnExpr::iterator RpnExpr::insert(iterator pPosition, ExprToken* pToken)
81 void RpnExpr::erase(iterator pPosition)
88 RpnExpr* RpnExpr::buildHelperExpr(SectionMap::iterator pIter)
H A DSectionsCmd.cpp25 for (iterator it = begin(), ie = end(); it != ie; ++it) {
82 iterator assign, assignEnd = assignments.end();
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.h45 SectionData::iterator m_Last;
H A DMipsGOTPLT.cpp43 for (iterator it = begin(), ie = end(); it != ie; ++it, ++buffer) {
71 iterator it = begin();
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java204 MockEntryElementIterator iterator = new MockEntryElementIterator();
216 iterator.addExpectedElement(nameData);
224 iterator.addExpectedElement(phoneData);
232 iterator.addExpectedElement(emailData);
242 iterator.addExpectedElement(postalData);
250 iterator.addExpectedElement(organizationData);
259 iterator.addExpectedElement(imData);
268 iterator.addExpectedElement(photoData);
275 iterator.addExpectedElement(sipData);
282 iterator
[all...]
/frameworks/base/drm/java/android/drm/
H A DDrmSupportInfo.java68 * Retrieves an iterator object that you can use to iterate over the MIME types that
71 * @return The iterator object
74 return mMimeTypeList.iterator();
78 * Retrieves an iterator object that you can use to iterate over the file suffixes that
81 * @return The iterator object.
84 return mFileSuffixList.iterator();
H A DDrmUtils.java178 * This method returns an iterator object that can be used to iterate over
181 * @return The iterator object.
183 public Iterator<String> iterator() { method in class:DrmUtils.ExtendedMetadataParser
184 return mMap.values().iterator();
188 * This method returns an iterator object that can be used to iterate over
191 * @return The iterator object.
194 return mMap.keySet().iterator();
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DViewPool.java61 Iterator<V> iter = mPool.iterator();
79 /** Returns an iterator to the list of the views in the pool. */
82 return mPool.iterator();
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h36 typedef typename Alloc::iterator iterator; typedef in class:mcld::NodeFactory
/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h35 typedef SectionData::iterator iterator; typedef in class:mcld::BranchIsland
39 typedef RelocationListType::iterator reloc_iterator;
58 iterator begin();
62 iterator end();
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GOT.cpp65 SectionData::iterator frag, fragEnd = m_SectionData->end();
115 SectionData::iterator entry(m_pGOTPLTFront);
116 SectionData::iterator e_end;
120 e_end = SectionData::iterator(m_pGOTFront);
134 for (iterator it = begin(), ie = end(); it != ie; ++it, ++buffer) {
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp61 SectionData::iterator frag, fragEnd = m_SectionData->end();
110 SectionData::iterator entry(m_pGOTPLTFront);
111 SectionData::iterator e_end;
115 e_end = SectionData::iterator(m_pGOTFront);
129 for (iterator it = begin(), ie = end(); it != ie; ++it, ++buffer) {
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonPLT.cpp61 iterator first = m_pSectionData->getFragmentList().begin();
78 HexagonPLT::iterator it = begin();
88 SectionData::iterator frag, fragEnd = m_pSectionData->end();
138 HexagonPLT::iterator it = m_pSectionData->begin();
139 HexagonPLT::iterator ie = m_pSectionData->end();
184 iterator it = begin();
192 HexagonPLT::iterator ie = end();
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp105 X86PLT::iterator it = begin();
115 SectionData::iterator frag, fragEnd = m_pSectionData->end();
137 iterator first = m_pSectionData->getFragmentList().begin();
185 X86PLT::iterator it = m_pSectionData->begin();
186 X86PLT::iterator ie = m_pSectionData->end();
271 X86PLT::iterator it = m_pSectionData->begin();
272 X86PLT::iterator ie = m_pSectionData->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/ml/bordeaux/service/src/android/bordeaux/services/
H A DFeatureAssembly.java74 Iterator itr = mUseFeatures.iterator();
87 itr = mUsePairedFeatures.iterator();
105 Iterator itr = mUseFeatures.iterator();
/frameworks/av/media/libstagefright/foundation/
H A DAAtomizer.cpp43 List<AString>::iterator it = entry.begin();

Completed in 671 milliseconds

1234567891011>>