/system/core/include/utils/ |
LruCache.h | 87 typename LruCacheSet::iterator findByKey(const TKey& key) { 89 typename LruCacheSet::iterator result = mSet->find(&entryForSearch); 105 class Iterator { 107 Iterator(const LruCache<TKey, TValue>& cache): 135 typename LruCacheSet::iterator mIterator;
|
/external/libchrome/base/ |
values.cc | 45 for (DictionaryValue::Iterator it(dict); !it.IsAtEnd(); it.Advance()) { 390 ValueMap::iterator dict_iterator = dictionary_.begin(); 455 std::pair<ValueMap::iterator, bool> ins_res = 774 ValueMap::iterator entry_iterator = dictionary_.find(key); 816 for (DictionaryValue::Iterator it(*dictionary); !it.IsAtEnd(); it.Advance()) { 836 DictionaryValue::Iterator::Iterator(const DictionaryValue& target) 840 DictionaryValue::Iterator::~Iterator() {} 864 Iterator lhs_it(*this) [all...] |
/external/libweave/third_party/chromium/base/ |
values.cc | 45 for (DictionaryValue::Iterator it(dict); !it.IsAtEnd(); it.Advance()) { 375 ValueMap::iterator dict_iterator = dictionary_.begin(); 435 std::pair<ValueMap::iterator, bool> ins_res = 731 ValueMap::iterator entry_iterator = dictionary_.find(key); 773 for (DictionaryValue::Iterator it(*dictionary); !it.IsAtEnd(); it.Advance()) { 793 DictionaryValue::Iterator::Iterator(const DictionaryValue& target) 797 DictionaryValue::Iterator::~Iterator() {} 821 Iterator lhs_it(*this) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
OpenIntToDoubleHashMap.java | 34 * {@link #iterator()} are fail-fast: they throw a 234 * Get an iterator over map elements. 238 * @return iterator over the map elements 240 public Iterator iterator() { method in class:OpenIntToDoubleHashMap 241 return new Iterator(); 483 /** Iterator class for the map. */ 484 public class Iterator { 498 private Iterator() { 556 * Advance iterator one step further [all...] |
OpenIntToFieldHashMap.java | 36 * {@link #iterator()} are fail-fast: they throw a 246 * Get an iterator over map elements. 250 * @return iterator over the map elements 252 public Iterator iterator() { method in class:OpenIntToFieldHashMap 253 return new Iterator(); 495 /** Iterator class for the map. */ 496 public class Iterator { 510 private Iterator() { 568 * Advance iterator one step further [all...] |
/external/deqp/framework/delibs/decpp/ |
dePoolArray.hpp | 30 #include <iterator> 55 typedef PoolArrayIterator<T, Alignment> Iterator; 80 Iterator begin (void) { return Iterator(this, 0); } 81 Iterator end (void) { return Iterator(this, (deIntptr)m_numElements); } 124 PoolArrayConstIterator (const PoolArrayIterator<T, Alignment>& iterator);
|
/external/javassist/src/main/javassist/bytecode/ |
Descriptor.java | 793 * An Iterator over a descriptor. 795 public static class Iterator { 801 * Constructs an iterator. 805 public Iterator(String s) {
|
/external/sfntly/cpp/src/sfntly/table/core/ |
name_table.cc | 327 NameEntryBuilderMap::iterator position = name_entry_map_.find(probe); 353 for (NameEntryBuilderMap::iterator b = name_entry_map_.begin(), 382 for (NameEntryBuilderMap::iterator b = name_entry_map_.begin(), 417 name_iter.Attach(table->Iterator()); 529 name_entry_iter.Attach(Iterator(&filter)); 537 CALLER_ATTACH NameTable::NameEntryIterator* NameTable::Iterator() { 543 NameTable::NameEntryIterator* NameTable::Iterator(NameEntryFilter* filter) {
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/ |
iterator_facade.hpp | 10 #include <boost/iterator.hpp> 11 #include <boost/iterator/interoperable.hpp> 12 #include <boost/iterator/iterator_traits.hpp> 14 #include <boost/iterator/detail/facade_iterator_category.hpp> 15 #include <boost/iterator/detail/enable_if.hpp> 37 #include <boost/iterator/detail/config_def.hpp> // this goes last 123 // std::iterator. It is possible to implement a standard 128 iterator<iterator_category, value_type, Difference, pointer, Reference> 139 template <class Iterator> 142 typedef typename iterator_value<Iterator>::type value_type [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
_abcoll.py | 14 __all__ = ["Hashable", "Iterable", "Iterator", 73 class Iterator(Iterable): 77 'Return the next item from the iterator. When exhausted, raise StopIteration' 85 if cls is Iterator: 376 'D.iterkeys() -> an iterator over the keys of D' 380 'D.itervalues() -> an iterator over the values of D' 385 'D.iteritems() -> an iterator over the (key, value) items of D'
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
_abcoll.py | 14 __all__ = ["Hashable", "Iterable", "Iterator", 73 class Iterator(Iterable): 77 'Return the next item from the iterator. When exhausted, raise StopIteration' 85 if cls is Iterator: 376 'D.iterkeys() -> an iterator over the keys of D' 380 'D.itervalues() -> an iterator over the values of D' 385 'D.iteritems() -> an iterator over the (key, value) items of D'
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_abcoll.py | 14 __all__ = ["Hashable", "Iterable", "Iterator", 73 class Iterator(Iterable): 77 'Return the next item from the iterator. When exhausted, raise StopIteration' 85 if cls is Iterator: 376 'D.iterkeys() -> an iterator over the keys of D' 380 'D.itervalues() -> an iterator over the values of D' 385 'D.iteritems() -> an iterator over the (key, value) items of D'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_abcoll.py | 14 __all__ = ["Hashable", "Iterable", "Iterator", 73 class Iterator(Iterable): 77 'Return the next item from the iterator. When exhausted, raise StopIteration' 85 if cls is Iterator: 376 'D.iterkeys() -> an iterator over the keys of D' 380 'D.itervalues() -> an iterator over the values of D' 385 'D.iteritems() -> an iterator over the (key, value) items of D'
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vendored/ |
six.py | 507 Iterator = object 515 class Iterator(object): 558 _add_doc(iterkeys, "Return an iterator over the keys of a dictionary.") 559 _add_doc(itervalues, "Return an iterator over the values of a dictionary.") 561 "Return an iterator over the (key, value) pairs of a dictionary.") 563 "Return an iterator over the (key, [values]) pairs of a dictionary.")
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/ |
six.py | 524 Iterator = object 532 class Iterator(object): 587 _add_doc(iterkeys, "Return an iterator over the keys of a dictionary.") 588 _add_doc(itervalues, "Return an iterator over the values of a dictionary.") 590 "Return an iterator over the (key, value) pairs of a dictionary.") 592 "Return an iterator over the (key, [values]) pairs of a dictionary.")
|
/external/chromium-trace/catapult/third_party/six/ |
six.py | 544 Iterator = object 555 class Iterator(object): 610 _add_doc(iterkeys, "Return an iterator over the keys of a dictionary.") 611 _add_doc(itervalues, "Return an iterator over the values of a dictionary.") 613 "Return an iterator over the (key, value) pairs of a dictionary.") 615 "Return an iterator over the (key, [values]) pairs of a dictionary.")
|
/external/clang/test/FixIt/ |
fixit.cpp | 143 class Iterator { 149 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}} 154 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
|
/external/clang/test/SemaCXX/ |
conversion-function.cpp | 333 template <typename T> struct Iterator; 337 struct Iterator<int> { 343 typedef typename Iterator<T>::container_type X;
|
/external/deqp/external/vulkancts/modules/vulkan/ubo/ |
vktUniformBlockCase.hpp | 143 typedef std::vector<StructMember>::iterator Iterator; 152 inline Iterator begin (void) { return m_members.begin(); } 154 inline Iterator end (void) { return m_members.end(); } 182 typedef std::vector<Uniform>::iterator Iterator; 199 inline Iterator begin (void) { return m_uniforms.begin(); } 201 inline Iterator end (void) { return m_uniforms.end(); }
|
/external/deqp/modules/glshared/ |
glsUniformBlockCase.hpp | 144 typedef std::vector<StructMember>::iterator Iterator; 152 inline Iterator begin (void) { return m_members.begin(); } 154 inline Iterator end (void) { return m_members.end(); } 182 typedef std::vector<Uniform>::iterator Iterator; 198 inline Iterator begin (void) { return m_uniforms.begin(); } 200 inline Iterator end (void) { return m_uniforms.end(); }
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
CharsTrie.java | 368 * @return A new CharsTrie.Iterator. 370 public Iterator iterator() { method in class:CharsTrie 371 return new Iterator(chars_, pos_, remainingMatchLength_, 0); 376 * @param maxStringLength If 0, the iterator returns full strings. 377 * Otherwise, the iterator returns strings with this maximum length. 378 * @return A new CharsTrie.Iterator. 380 public Iterator iterator(int maxStringLength) { method in class:CharsTrie 381 return new Iterator(chars_, pos_, remainingMatchLength_, maxStringLength) 392 public static Iterator iterator(CharSequence trieChars, int offset, int maxStringLength) { method in class:CharsTrie [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
CharsTrie.java | 383 * @return A new CharsTrie.Iterator. 386 public Iterator iterator() { method in class:CharsTrie 387 return new Iterator(chars_, pos_, remainingMatchLength_, 0); 392 * @param maxStringLength If 0, the iterator returns full strings. 393 * Otherwise, the iterator returns strings with this maximum length. 394 * @return A new CharsTrie.Iterator. 397 public Iterator iterator(int maxStringLength) { method in class:CharsTrie 398 return new Iterator(chars_, pos_, remainingMatchLength_, maxStringLength) 410 public static Iterator iterator(CharSequence trieChars, int offset, int maxStringLength) { method in class:CharsTrie [all...] |
/external/skia/src/sfnt/ |
SkOTTable_glyf.h | 30 class Iterator { 32 Iterator(const SkOTTableGlyph& glyf,
|
/external/v8/include/ |
v8-util.h | 43 typedef typename Impl::iterator Iterator; 48 static Iterator Begin(Impl* impl) { return impl->begin(); } 49 static Iterator End(Impl* impl) { return impl->end(); } 50 static K Key(Iterator it) { return it->first; } 51 static PersistentContainerValue Value(Iterator it) { return it->second; } 54 std::pair<Iterator, bool> res = impl->insert(std::make_pair(key, value)); 63 Iterator it = impl->find(key); 68 Iterator it = impl->find(key); 220 typedef typename Traits::Iterator It [all...] |
/external/v8/src/ |
types.cc | 597 for (Iterator<i::Map> it = that->Classes(); !it.Done(); it.Advance()) { 696 for (Iterator<i::Object> it = this->Constants(); !it.Done(); it.Advance()) { [all...] |