Searched defs:Iterator (Results 1 - 25 of 128) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DIterator.h16 class Iterator : public GarbageCollectedFinalized<Iterator>, public ScriptWrappable { class in namespace:blink
19 Iterator() { } function in class:blink::Iterator
20 virtual ~Iterator() { }
24 Iterator* iterator(ScriptState*, ExceptionState&) { return this; }
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h23 // This is a forward read-only iterator that represents java.util.Iterator<E>
28 class Iterator : public virtual RefCount { class in namespace:sfntly
30 virtual ~Iterator() {}
34 Iterator() {} function in class:sfntly::Iterator
35 NO_COPY_AND_ASSIGN(Iterator);
40 class PODIterator : public Iterator<ReturnType, ContainerBase>,
67 class RefIterator : public Iterator<ReturnType, ContainerBase>,
/external/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h23 // This is a forward read-only iterator that represents java.util.Iterator<E>
28 class Iterator : public virtual RefCount { class in namespace:sfntly
30 virtual ~Iterator() {}
34 Iterator() {} function in class:sfntly::Iterator
35 NO_COPY_AND_ASSIGN(Iterator);
40 class PODIterator : public Iterator<ReturnType, ContainerBase>,
67 class RefIterator : public Iterator<ReturnType, ContainerBase>,
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Diterator.h10 // Multiple threads can invoke const methods on an Iterator without
12 // non-const method, all threads accessing the same Iterator must use
23 class Iterator { class in namespace:leveldb
25 Iterator();
26 virtual ~Iterator();
88 Iterator(const Iterator&);
89 void operator=(const Iterator&);
93 extern Iterator* NewEmptyIterator();
96 extern Iterator* NewErrorIterato
[all...]
/external/chromium_org/net/disk_cache/
H A Ddisk_cache.h68 class Iterator { class in class:disk_cache::Backend
70 virtual ~Iterator() {}
149 virtual scoped_ptr<Iterator> CreateIterator() = 0;
/external/chromium_org/third_party/icu/source/common/
H A Dbytestrieiterator.cpp23 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, function in class:BytesTrie::Iterator
35 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway
45 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, function in class:BytesTrie::Iterator
76 BytesTrie::Iterator::~Iterator() {
81 BytesTrie::Iterator &
82 BytesTrie::Iterator::reset() {
97 BytesTrie::Iterator
[all...]
H A Ducharstrieiterator.cpp22 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength, function in class:UCharsTrie::Iterator
35 // Unlike UCharsTrie itself, its Iterator performs memory allocations anyway
44 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength, function in class:UCharsTrie::Iterator
75 UCharsTrie::Iterator::~Iterator() {
79 UCharsTrie::Iterator &
80 UCharsTrie::Iterator::reset() {
96 UCharsTrie::Iterator
[all...]
/external/icu/icu4c/source/common/
H A Dbytestrieiterator.cpp23 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, function in class:BytesTrie::Iterator
35 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway
45 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, function in class:BytesTrie::Iterator
76 BytesTrie::Iterator::~Iterator() {
81 BytesTrie::Iterator &
82 BytesTrie::Iterator::reset() {
97 BytesTrie::Iterator
[all...]
H A Ducharstrieiterator.cpp22 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength, function in class:UCharsTrie::Iterator
35 // Unlike UCharsTrie itself, its Iterator performs memory allocations anyway
44 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength, function in class:UCharsTrie::Iterator
75 UCharsTrie::Iterator::~Iterator() {
79 UCharsTrie::Iterator &
80 UCharsTrie::Iterator::reset() {
96 UCharsTrie::Iterator
[all...]
/external/chromium_org/cc/base/
H A Dregion.cc113 for (Iterator it(*this); it.has_rect(); it.next()) {
123 for (Iterator it(*this); it.has_rect(); it.next()) {
134 for (Iterator it(*this); it.has_rect(); it.next()) {
143 Region::Iterator::Iterator() { function in class:cc::Region::Iterator
146 Region::Iterator::Iterator(const Region& region) function in class:cc::Region::Iterator
150 Region::Iterator::~Iterator() {
H A Dregion.h68 class CC_EXPORT Iterator { class in class:cc::Region
70 Iterator();
71 explicit Iterator(const Region& region);
72 ~Iterator();
87 SkRegion::Iterator it_;
/external/chromium_org/third_party/leveldatabase/src/table/
H A Diterator.cc9 Iterator::Iterator() { function in class:leveldb::Iterator
14 Iterator::~Iterator() {
26 void Iterator::RegisterCleanup(CleanupFunction func, void* arg1, void* arg2) {
42 class EmptyIterator : public Iterator {
59 Iterator* NewEmptyIterator() {
63 Iterator* NewErrorIterator(const Status& status) {
/external/chromium_org/cc/quads/
H A Dlist_container.h68 // Iterator classes that can be used to access data.
70 class CC_EXPORT Iterator : public PositionInListContainerCharAllocator { class in class:cc::ListContainer
74 Iterator(ListContainerCharAllocator* container,
77 ~Iterator();
80 Iterator operator++(int unused_post_increment);
81 Iterator operator++();
91 ConstIterator(const Iterator& other); // NOLINT
133 void EraseAndInvalidateAllPointers(Iterator position);
141 Iterator begin();
142 Iterator en
[all...]
/external/chromium_org/cc/resources/
H A Dprioritized_tile_set.h25 class CC_EXPORT Iterator { class in class:cc::PrioritizedTileSet
27 Iterator(PrioritizedTileSet* set, bool use_priority_ordering);
29 ~Iterator();
33 Iterator& operator++();
50 friend class Iterator;
H A Dprioritized_tile_set.cc106 PrioritizedTileSet::Iterator::Iterator( function in class:cc::PrioritizedTileSet::Iterator
118 PrioritizedTileSet::Iterator::~Iterator() {}
120 void PrioritizedTileSet::Iterator::DisablePriorityOrdering() {
124 PrioritizedTileSet::Iterator&
125 PrioritizedTileSet::Iterator::operator++() {
135 Tile* PrioritizedTileSet::Iterator::operator*() {
140 void PrioritizedTileSet::Iterator::AdvanceList() {
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata.h34 typedef ResourceMetadataStorage::Iterator Iterator; typedef in class:drive::internal::ResourceMetadata
97 scoped_ptr<Iterator> GetIterator();
H A Dresource_metadata_storage.h24 class Iterator;
43 class Iterator { class in class:drive::internal::ResourceMetadataStorage
45 explicit Iterator(scoped_ptr<leveldb::Iterator> it);
46 ~Iterator();
66 scoped_ptr<leveldb::Iterator> it_;
68 DISALLOW_COPY_AND_ASSIGN(Iterator);
119 scoped_ptr<Iterator> GetIterator();
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceClientWalker.h41 typedef HashCountedSet<ResourceClient*>::const_iterator Iterator; typedef
42 Iterator end = set.end();
44 for (Iterator current = set.begin(); current != end; ++current)
/external/chromium_org/v8/src/compiler/
H A Dgeneric-algorithm-inl.h23 typedef typename N::Inputs::iterator Iterator; typedef in class:v8::internal::compiler::NodeInputIterationTraits
25 static Iterator begin(Node* node) { return node->inputs().begin(); }
26 static Iterator end(Node* node) { return node->inputs().end(); }
28 static Node* to(Iterator iterator) { return *iterator; }
29 static Node* from(Iterator iterator) { return iterator.edge().from(); }
36 typedef typename N::Uses::iterator Iterator; typedef in class:v8::internal::compiler::NodeUseIterationTraits
38 static Iterator begin(Node* node) { return node->uses().begin(); }
39 static Iterator end(Node* node) { return node->uses().end(); }
41 static Node* to(Iterator iterator) { return *iterator; }
42 static Node* from(Iterator iterato
[all...]
/external/chromium_org/base/
H A Dcallback_list.h131 class Iterator { class in class:base::internal::CallbackListBase
133 explicit Iterator(CallbackListBase<CallbackType>* list) function in class:base::internal::CallbackListBase::Iterator
139 Iterator(const Iterator& iter) function in class:base::internal::CallbackListBase::Iterator
145 ~Iterator() {
175 // Returns an instance of a CallbackListBase::Iterator which can be used
177 Iterator GetIterator() {
178 return Iterator(this);
220 internal::CallbackListBase<CallbackType>::Iterator it =
241 typename internal::CallbackListBase<CallbackType>::Iterator i
[all...]
H A Dobserver_list.h80 class Iterator { class in class:ObserverListBase
82 Iterator(ObserverListBase<ObserverType>& list);
83 ~Iterator();
121 friend class ObserverListBase::Iterator;
127 ObserverListBase<ObserverType>::Iterator::Iterator( function in class:ObserverListBase::Iterator
138 ObserverListBase<ObserverType>::Iterator::~Iterator() {
144 ObserverType* ObserverListBase<ObserverType>::Iterator::GetNext() {
232 ObserverListBase<ObserverType>::Iterator \
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dleveldb_wrapper.cc21 LevelDBWrapper::Iterator::Iterator(LevelDBWrapper* db) function in class:sync_file_system::drive_backend::LevelDBWrapper::Iterator
26 LevelDBWrapper::Iterator::~Iterator() {}
28 bool LevelDBWrapper::Iterator::Valid() {
33 void LevelDBWrapper::Iterator::SeekToFirst() {
39 void LevelDBWrapper::Iterator::SeekToLast() {
44 void LevelDBWrapper::Iterator::Seek(const std::string& target) {
50 void LevelDBWrapper::Iterator::Next() {
70 void LevelDBWrapper::Iterator
[all...]
/external/chromium_org/net/base/
H A Dexpiring_cache.h91 class Iterator { class in class:net::ExpiringCache
93 explicit Iterator(const ExpiringCache& cache) function in class:net::ExpiringCache::Iterator
97 ~Iterator() {}
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel_manager.h74 // Upon construction of an Iterator it will grab a copy of the channel list of
76 // current one of the ChannelManager. As the Iterator holds its own references
79 class Iterator { class in class:webrtc::voe::ChannelManager
81 explicit Iterator(ChannelManager* channel_manager);
92 DISALLOW_COPY_AND_ASSIGN(Iterator);
/external/chromium_org/base/metrics/
H A Dsample_map.cc43 scoped_ptr<SampleCountIterator> SampleMap::Iterator() const { function in class:base::SampleMap

Completed in 699 milliseconds

123456