Searched defs:Iterator (Results 76 - 100 of 128) sorted by relevance

123456

/external/deqp/framework/randomshaders/
H A DrsgVariableManager.hpp118 template <typename Item, typename Iterator, class Filter>
122 FilteredIterator (Iterator iter, Iterator end, Filter filter)
131 Iterator nextEntry = m_iter;
170 static Iterator findNext (Filter filter, Iterator iter, Iterator end)
178 Iterator m_iter;
179 Iterator m_end;
290 typedef ValueEntryIterator<AnyEntry> Iterator; typedef in class:rsg::AnyEntry
323 typedef ValueEntryIterator<EntryStorageFilter<Storage> > Iterator; typedef in class:rsg::EntryStorageFilter
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h239 * Iterator for all of the (byte sequence, value) pairs in a BytesTrie.
242 class U_COMMON_API Iterator : public UMemory { class in class:BytesTrie
255 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
268 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
274 ~Iterator();
281 Iterator &reset();
509 // Iterator variables.
H A Ducharstrie.h253 * Iterator for all of the (string, value) pairs in a UCharsTrie.
256 class U_COMMON_API Iterator : public UMemory { class in class:UCharsTrie
269 Iterator(const UChar *trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
282 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
288 ~Iterator();
295 Iterator &reset();
566 // Iterator variables.
/external/javassist/src/main/javassist/bytecode/
H A DDescriptor.java793 * An Iterator over a descriptor.
795 public static class Iterator { class in class:Descriptor
805 public Iterator(String s) { method in class:Descriptor.Iterator
/external/llvm/include/llvm/ADT/
H A DDenseSet.h63 class Iterator { class in class:llvm::DenseSet
73 Iterator(const typename MapTy::iterator &i) : I(i) {} function in class:llvm::DenseSet::Iterator
78 Iterator& operator++() { ++I; return *this; }
79 bool operator==(const Iterator& X) const { return I == X.I; }
80 bool operator!=(const Iterator& X) const { return I != X.I; }
103 typedef Iterator iterator;
106 iterator begin() { return Iterator(TheMap.begin()); }
107 iterator end() { return Iterator(TheMap.end()); }
112 iterator find(const ValueT &V) { return Iterator(TheMap.find(V)); }
113 void erase(Iterator
[all...]
/external/skia/include/core/
H A DSkRegion.h310 class SK_API Iterator { class in class:SkRegion
312 Iterator() : fRgn(NULL), fDone(true) {} function in class:SkRegion::Iterator
313 Iterator(const SkRegion&);
343 Iterator fIter;
447 friend class Iterator;
/external/skia/src/sfnt/
H A DSkOTTable_name.h550 class Iterator { class in struct:SkOTTableName
552 Iterator(const SkOTTableName& name) : fName(name), fIndex(0), fType(-1) { } function in class:SkOTTableName::Iterator
553 Iterator(const SkOTTableName& name, SkOTTableName::Record::NameID::Predefined::Value type) function in class:SkOTTableName::Iterator
/external/chromium_org/base/
H A Dvalues.cc48 for (DictionaryValue::Iterator it(*dict); !it.IsAtEnd(); it.Advance()) {
774 for (DictionaryValue::Iterator it(*dictionary); !it.IsAtEnd(); it.Advance()) {
794 DictionaryValue::Iterator::Iterator(const DictionaryValue& target) function in class:base::DictionaryValue::Iterator
798 DictionaryValue::Iterator::~Iterator() {}
818 Iterator lhs_it(*this);
819 Iterator rhs_it(*other_dict);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata_storage.cc187 ResourceMetadataStorage::Iterator::Iterator(scoped_ptr<leveldb::Iterator> it) function in class:drive::internal::ResourceMetadataStorage::Iterator
200 ResourceMetadataStorage::Iterator::~Iterator() {
204 bool ResourceMetadataStorage::Iterator::IsAtEnd() const {
209 std::string ResourceMetadataStorage::Iterator::GetID() const {
213 const ResourceEntry& ResourceMetadataStorage::Iterator::GetValue() const {
219 void ResourceMetadataStorage::Iterator::Advance() {
232 bool ResourceMetadataStorage::Iterator
[all...]
/external/chromium_org/components/policy/core/common/
H A Dschema.cc387 for (base::DictionaryValue::Iterator it(*properties);
399 for (base::DictionaryValue::Iterator it(*pattern_properties);
539 for (base::DictionaryValue::Iterator it(*properties);
557 for (base::DictionaryValue::Iterator it(*pattern_properties);
713 Schema::Iterator::Iterator(const scoped_refptr<const InternalStorage>& storage, function in class:policy::Schema::Iterator
719 Schema::Iterator::Iterator(const Iterator& iterator) function in class:policy::Schema::Iterator
724 Schema::Iterator
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBufferedTreeNodeStream.cs453 public virtual IEnumerator<object> Iterator() { method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
/external/chromium_org/cc/base/
H A Dtiling_data.cc302 TilingData::Iterator::Iterator() : BaseIterator(NULL) { done(); } function in class:cc::TilingData::Iterator
304 TilingData::Iterator::Iterator(const TilingData* tiling_data, function in class:cc::TilingData::Iterator
339 TilingData::Iterator& TilingData::Iterator::operator++() {
/external/chromium_org/ppapi/tests/
H A Dtest_post_message.cc303 typedef std::vector<std::string>::const_iterator Iterator; typedef
304 for (Iterator iter = properties_to_check.begin();
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc171 for (Iterator it(region); !it.IsAtEnd(); it.Advance()) {
503 DesktopRegion::Iterator::Iterator(const DesktopRegion& region) function in class:webrtc::DesktopRegion::Iterator
514 bool DesktopRegion::Iterator::IsAtEnd() const {
518 void DesktopRegion::Iterator::Advance() {
551 void DesktopRegion::Iterator::UpdateCurrentRect() {
/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_dispatcher.cc796 typedef std::map<int32, WebIDBCursorImpl*>::iterator Iterator; typedef
797 for (Iterator i = cursors_.begin(); i != cursors_.end(); ++i) {
/external/chromium_org/net/disk_cache/blockfile/
H A Drankings.cc205 Rankings::Iterator::Iterator() { function in class:disk_cache::Rankings::Iterator
206 memset(this, 0, sizeof(Iterator));
209 void Rankings::Iterator::Reset() {
214 memset(this, 0, sizeof(Iterator));
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
H A Dname_table.cc417 name_iter.Attach(table->Iterator());
529 name_entry_iter.Attach(Iterator(&filter));
537 CALLER_ATTACH NameTable::NameEntryIterator* NameTable::Iterator() { function in class:sfntly::NameTable
543 NameTable::NameEntryIterator* NameTable::Iterator(NameEntryFilter* filter) { function in class:sfntly::NameTable
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_glyf.h30 class Iterator { class in struct:SkOTTableGlyph
32 Iterator(const SkOTTableGlyph& glyf, function in class:SkOTTableGlyph::Iterator
/external/chromium_org/v8/include/
H A Dv8-util.h40 typedef typename Impl::iterator Iterator; typedef in class:v8::StdMapTraits
45 static Iterator Begin(Impl* impl) { return impl->begin(); }
46 static Iterator End(Impl* impl) { return impl->end(); }
47 static K Key(Iterator it) { return it->first; }
48 static PersistentContainerValue Value(Iterator it) { return it->second; }
51 std::pair<Iterator, bool> res = impl->insert(std::make_pair(key, value));
60 Iterator it = impl->find(key);
65 Iterator it = impl->find(key);
199 typedef typename Traits::Iterator It;
/external/chromium_org/v8/src/
H A Dd8.h76 class Iterator { class in class:v8::CounterMap
78 explicit Iterator(CounterMap* map) function in class:v8::CounterMap::Iterator
H A Dtypes.cc483 for (Iterator<i::Map> it = that->Classes(); !it.Done(); it.Advance()) {
496 for (Iterator<i::Map> it = this->Classes(); !it.Done(); it.Advance()) {
563 for (Iterator<i::Object> it = this->Constants(); !it.Done(); it.Advance()) {
869 TypeImpl<Config>::Iterator<T>::get_type() {
905 bool TypeImpl<Config>::Iterator<T>::matches(TypeHandle type) {
910 i::Handle<T> TypeImpl<Config>::Iterator<T>::Current() {
916 void TypeImpl<Config>::Iterator<T>::Advance() {
1114 template class TypeImpl<ZoneTypeConfig>::Iterator<i::Map>; member in class:v8::internal::TypeImpl
1115 template class TypeImpl<ZoneTypeConfig>::Iterator<i::Object>; member in class:v8::internal::TypeImpl
1118 template class TypeImpl<HeapTypeConfig>::Iterator< member in class:v8::internal::TypeImpl
1119 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>; member in class:v8::internal::TypeImpl
[all...]
/external/clang/test/FixIt/
H A Dfixit.cpp143 class Iterator { class in class:F1
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/Parser/
H A DMicrosoftExtensions.cpp162 class Iterator { class in class:C1
168 typename C1<T>:: /*template*/ Iterator<0> Mypos; // expected-warning {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
173 typename C1<T>:: /*template*/ Iterator<0> Mypos; // expected-warning {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
/external/clang/test/SemaCXX/
H A Dconversion-function.cpp335 template <typename T> struct Iterator;
339 struct Iterator<int> { struct in namespace:PR8065
345 typedef typename Iterator<T>::container_type X;
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.hpp55 typedef PoolArrayIterator<T, Alignment> Iterator; typedef in class:de::PoolArray
80 Iterator begin (void) { return Iterator(this, 0); }
81 Iterator end (void) { return Iterator(this, (deIntptr)m_numElements); }

Completed in 4278 milliseconds

123456