HomeSort by relevance Sort by last modified time
    Searched full:iterator (Results 151 - 175 of 1789) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-iterator.h 0 /* Iterator routines for manipulating GENERIC and GIMPLE tree statements.
30 /* Iterator object for GENERIC or GIMPLE TREE statements. */
98 iterator to it. */
99 TSI_SAME_STMT, /* Leave the iterator at the same statement. */
101 iterator to the first statement in the chain. */
103 iterator to the last statement in the chain. */
104 TSI_CONTINUE_LINKING /* Move iterator to whatever position is suitable for
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIteratorBase.java 50 * Set this to END to construct an empty iterator.
61 * the iterator was produced by cloning another iterator.)
66 * Get start to END should 'close' the iterator,
78 * which may or may not be the same as this iterator.
112 * defined by XPath. In a forward iterator, I believe this equals the number of nodes which this
113 * iterator will yield. In a reverse iterator, I believe it should return
120 * @return The number of nodes in this iterator (forward) or 1 (reverse).
137 reset(); // Count the nodes found by this iterator
    [all...]
  /external/webkit/WebCore/dom/
ScriptExecutionContext.cpp 69 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end();
70 for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeObjectsEnd; ++iter) {
75 HashSet<MessagePort*>::iterator messagePortsEnd = m_messagePorts.end();
76 for (HashSet<MessagePort*>::iterator iter = m_messagePorts.begin(); iter != messagePortsEnd; ++iter) {
126 DatabaseSet::iterator i = m_openDatabaseSet->begin();
127 DatabaseSet::iterator end = m_openDatabaseSet->end();
191 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end();
192 for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeObjectsEnd; ++iter) {
203 HashMap<ActiveDOMObject*, void*>::iterator activeObjectsEnd = m_activeDOMObjects.end();
204 for (HashMap<ActiveDOMObject*, void*>::iterator iter = m_activeDOMObjects.begin(); iter != activeObjectsEnd; ++iter)
    [all...]
  /external/opencore/oscl/oscl/osclbase/src/
oscl_map.h 97 typedef typename rep_type::iterator iterator; typedef in class:Oscl_Map
150 * Returns an iterator pointing to the beginning of the map
152 iterator begin()
157 * Returns a const iterator pointing to the beginning of the map
164 * Returns an iterator pointing to the end of the map.
166 iterator end()
171 * Returns a const iterator pointing to the end of the map.
209 typedef Oscl_Pair<iterator, bool> pair_iterator_bool;
220 iterator insert(iterator position, const value_type& x
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 25 import java.util.Iterator;
109 Iterator iter = params.getTrustAnchors().iterator();
329 Iterator it = permitted.iterator();
353 Iterator it = excluded.iterator();
379 Iterator _iter = permitted.iterator();
410 Iterator _iter = excluded.iterator()
    [all...]
  /external/astl/include/
vector 37 #include <iterator>
71 typedef __wrapper_iterator<pointer,vector_type> iterator;
94 // template parameter is an integral type and not an iterator,
142 iterator begin() { return iterator(mBegin); }
143 iterator end() { return iterator(mBegin + mLength); }
157 // Remove the element pointed by the iterator.
159 // @param pos Iterator pointing to the elt to be removed.
160 // @return An iterator pointing to the next elt or end()
    [all...]
  /external/stlport/test/unit/
slist_test.cpp 11 # include <iterator>
72 slist<char>::iterator i;
73 //Check const_iterator construction from iterator
115 slist<char>::iterator sl_char_ite;
116 slist<int>::iterator sl_int_ite;
128 slist<int>::iterator slit;
170 slist<int>::iterator slit(sl.begin());
190 slist<int>::iterator slit(sl.begin());
207 slist<int>::iterator slit;
272 slist<int>::iterator slit
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/axes/
LocPathIterator.java 66 * @param nscontext The namespace context for this iterator,
83 * @param opPos The position of this iterator in the
101 * @param opPos The position of this iterator in the
104 * loaded, or false if this is a derived iterator and
150 * Set the environment in which this iterator operates, which should provide:
169 * iterator may be passed without a DTMManager, this allows the
170 * caller to easily get the DTM using just the iterator.
184 * iterator may be passed without a DTMManager, this allows the
185 * caller to easily get the DTMManager using just the iterator.
195 * Execute this iterator, meaning create a clone that ca
    [all...]
  /external/stlport/stlport/stl/
_bvector.h 375 typedef _STLP_PRIV _Bit_iterator iterator; typedef in class:__BVECTOR_QUALIFIED
393 this->_M_start = iterator(__q, 0);
396 void _M_insert_aux(iterator __position, bool __x) {
406 iterator __i = _STLP_STD::copy(begin(), __position, iterator(__q, 0));
411 this->_M_start = iterator(__q, 0);
419 this->_M_start = iterator();
420 this->_M_finish = iterator();
435 void _M_insert_range(iterator __pos,
445 void _M_insert_range(iterator __position
    [all...]
_unordered_map.h 29 //Specific iterator traits creation
50 //Specific iterator traits creation
67 typedef typename _Ht::iterator iterator; typedef in class:unordered_map
128 iterator begin() { return _M_ht.begin(); }
129 iterator end() { return _M_ht.end(); }
133 pair<iterator,bool> insert(const value_type& __obj)
135 iterator insert(const_iterator /*__hint*/, const value_type& __obj)
148 iterator find(const _KT& __key) { return _M_ht.find(__key); }
154 iterator __it = _M_ht.find(__key)
235 typedef typename _Ht::iterator iterator; typedef in class:unordered_multimap
    [all...]
_hashtable.h 121 typedef _Ht_iterator<_BaseIte, _NonConstTraits> iterator; typedef in struct:_Ht_iterator
125 //copy constructor for iterator and constructor from iterator for const_iterator
126 _Ht_iterator(const iterator& __it) : _M_ite(__it._M_ite) {}
256 typedef typename _ElemsCont::iterator _ElemsIte;
263 * - avoid _STLP_DEBUG performance trouble: with a vector of iterator on slist the resize
265 * the number of iterators in the buckets rather than constant in time as the iterator
287 typedef _STLP_PRIV _Ht_iterator<_ElemsIte, _NonConstTraits> iterator; typedef in class:hashtable
290 //iterator in debug mode too.
295 typedef iterator local_iterator
    [all...]
_unordered_set.h 29 //Specific iterator traits creation
43 //Specific iterator traits creation
61 typedef typename _Ht::iterator iterator; typedef in class:unordered_set
122 iterator begin() { return _M_ht.begin(); }
123 iterator end() { return _M_ht.end(); }
127 pair<iterator, bool> insert(const value_type& __obj)
129 iterator insert(const_iterator /*__hint*/, const value_type& __obj)
142 iterator find(const _KT& __key) { return _M_ht.find(__key); }
150 pair<iterator, iterator> equal_range(const _KT& __key
211 typedef typename _Ht::iterator iterator; typedef in class:unordered_multiset
    [all...]
  /external/webkit/JavaScriptCore/wtf/
Deque.h 49 typedef DequeIterator<T> iterator; typedef in class:WTF::Deque
64 iterator begin() { return iterator(this, m_start); }
65 iterator end() { return iterator(this, m_end); }
79 void remove(iterator&);
85 iterator findIf(Predicate&);
153 typedef DequeIterator<T> Iterator;
158 DequeIterator(const Iterator& other) : Base(other) { }
159 DequeIterator& operator=(const Iterator& other) { Base::assign(other); return *this;
    [all...]
SegmentedVector.h 36 // An iterator for SegmentedVector. It supports only the pre ++ operator
42 typedef SegmentedVectorIterator<T, SegmentSize> Iterator;
50 Iterator& operator++()
68 bool operator==(const Iterator& other) const
73 bool operator!=(const Iterator& other) const
105 typedef SegmentedVectorIterator<T, SegmentSize> Iterator;
182 Iterator begin()
184 return Iterator(*this, 0, m_size ? 0 : SegmentSize);
187 Iterator end()
189 return Iterator(*this, 0, SegmentSize)
    [all...]
  /external/icu4c/common/unicode/
ubrk.h 16 * A text-break iterator.
22 * Opaque type representing an ICU Break iterator object.
79 * Code snippits illustrating the use of the Break Iterator APIs
99 * The iterator created using this type locates title boundaries as described for
101 * please use Word Boundary iterator.
103 * @deprecated ICU 2.8 Use the word break iterator for titlecasing for Unicode 4 and later.
244 * @param bi iterator to be cloned
274 * @param bi The break iterator to close.
281 * Sets an existing iterator to point to a new piece of text
282 * @param bi The iterator to us
    [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util-generated.h.pump 117 return new Iterator(this, $for j, [[g$(j)_, g$(j)_.begin()]]);
120 return new Iterator(this, $for j, [[g$(j)_, g$(j)_.end()]]);
124 class Iterator : public ParamIteratorInterface<ParamType> {
126 Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[
129 const typename ParamGenerator<T$j>::iterator& current$(j)]])
137 virtual ~Iterator() {}
158 return new Iterator(*this);
163 // iterator is of the same type and we can downcast.
167 const Iterator* typed_other =
168 CheckedDowncastToActualType<const Iterator>(&other)
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebelement.cpp     [all...]
  /external/v8/src/
frames-inl.h 170 template<typename Iterator>
171 inline JavaScriptFrame* JavaScriptFrameIteratorTemp<Iterator>::frame() const {
182 template<typename Iterator>
183 JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp(
192 template<typename Iterator>
193 void JavaScriptFrameIteratorTemp<Iterator>::Advance() {
200 template<typename Iterator>
201 void JavaScriptFrameIteratorTemp<Iterator>::AdvanceToArgumentsFrame() {
208 template<typename Iterator>
209 void JavaScriptFrameIteratorTemp<Iterator>::Reset()
    [all...]
  /external/webkit/WebCore/platform/text/gtk/
TextBreakIteratorGtk.cpp 47 static TextBreakIterator* setUpIterator(bool& createdIterator, TextBreakIterator*& iterator,
54 iterator = new TextBreakIterator();
57 if (!iterator)
66 iterator->m_type = type;
67 iterator->m_length = length;
69 g_free(iterator->m_logAttrs);
70 iterator->m_logAttrs = g_new0(PangoLogAttr, length + 1);
71 iterator->m_index = -1;
72 pango_get_log_attrs(utf8.get(), utf8len, -1, 0, iterator->m_logAttrs, length + 1);
74 return iterator;
    [all...]
  /build/tools/atree/
atree.cpp 150 for (vector<string>::iterator it=g_listFiles.begin();
154 for (vector<string>::iterator it=g_inputBases.begin();
171 for (vector<string>::iterator it=g_listFiles.begin();
181 for (vector<FileRecord>::iterator it=files.begin();
188 for (vector<FileRecord>::iterator it=files.begin();
194 for (vector<FileRecord>::iterator it=more.begin();
200 for (vector<FileRecord>::iterator it=files.begin();
210 for (vector<FileRecord>::iterator it=files.begin();
224 for (vector<FileRecord>::iterator it=files.begin();
232 for (set<string>::iterator it=deleted.begin()
    [all...]
  /external/guava/src/com/google/common/collect/
AbstractMultiset.java 25 import java.util.Iterator;
73 @Override public Iterator<E> iterator() { method in class:AbstractMultiset
77 private class MultisetIterator implements Iterator<E> {
78 private final Iterator<Entry<E>> entryIterator;
87 this.entryIterator = entrySet().iterator();
188 Iterator<Entry<E>> entries = entrySet().iterator();
225 @Override public Iterator<E> iterator() { method in class:AbstractMultiset.ElementSet
    [all...]
AbstractMultimap.java 33 import java.util.Iterator;
232 if (!values.iterator().hasNext()) {
268 Iterator<? extends V> iterator = values.iterator(); local
269 if (!iterator.hasNext()) {
280 while (iterator.hasNext()) {
281 if (collection.add(iterator.next())) {
480 @Override public Iterator<V> iterator() { method in class:AbstractMultimap.WrappedCollection
852 @Override public Iterator<K> iterator() { method in class:AbstractMultimap.KeySet
974 Iterator<V> iterator = collection.iterator(); local
995 @Override public Iterator<Multiset.Entry<K>> iterator() { method in class:MultisetView.EntrySet
1022 @Override public Iterator<K> iterator() { method in class:MultisetView
1130 @Override public Iterator<V> iterator() { method in class:Values
1191 @Override public Iterator<Map.Entry<K, V>> iterator() { method in class:Entries
1362 @Override public Iterator<Map.Entry<K, Collection<V>>> iterator() { method in class:AsMap.AsMapEntries
    [all...]
  /external/webkit/WebCore/platform/text/
TextBreakIteratorICU.cpp 33 static TextBreakIterator* setUpIterator(bool& createdIterator, TextBreakIterator*& iterator,
41 iterator = static_cast<TextBreakIterator*>(ubrk_open(type, currentTextBreakLocaleID(), 0, 0, &openStatus));
43 ASSERT_WITH_MESSAGE(U_SUCCESS(openStatus), "ICU could not open a break iterator: %s (%d)", u_errorName(openStatus), openStatus);
45 if (!iterator)
49 ubrk_setText(iterator, string, length, &setTextStatus);
53 return iterator;
129 static TextBreakIterator* setUpIteratorWithRules(bool& createdIterator, TextBreakIterator*& iterator,
139 iterator = static_cast<TextBreakIterator*>(ubrk_openRules(rules.characters(), rules.length(), 0, 0, &parseStatus, &openStatus));
141 ASSERT_WITH_MESSAGE(U_SUCCESS(openStatus), "ICU could not open a break iterator: %s (%d)", u_errorName(openStatus), openStatus);
143 if (!iterator)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ApkInstallManager.java 32 import java.util.Iterator;
172 Iterator<ApkInstall> iterator = mInstallList.iterator(); local
173 while (iterator.hasNext()) {
174 ApkInstall install = iterator.next();
176 iterator.remove();
212 Iterator<ApkInstall> iterator = mInstallList.iterator();
    [all...]
  /dalvik/libcore/icu/src/main/native/
NativeCollation.cpp 36 * Close a C collation element iterator.
39 * @param address of C collation element iterator to close.
44 UCollationElements *iterator = (UCollationElements *)(int)address; local
45 ucol_closeElements(iterator);
115 * Create a CollationElementIterator object that will iterator over the elements
151 * @param address of the C collation element iterator containing the text.
160 UCollationElements *iterator = (UCollationElements *)(int)address; local
161 return ucol_getMaxExpansion(iterator, order);
204 * @param addresss of the C collation elements iterator to query.
209 UCollationElements *iterator = (UCollationElements *)(int)address local
321 UCollationElements *iterator = (UCollationElements *) address; local
420 UCollationElements *iterator = (UCollationElements *)(int)address; local
438 UCollationElements *iterator = (UCollationElements *)(int)address; local
497 UCollationElements *iterator = (UCollationElements *)(int)address; local
515 UCollationElements *iterator = (UCollationElements *)(int)address; local
    [all...]

Completed in 397 milliseconds

1 2 3 4 5 67 8 91011>>