Searched refs:iterator_ (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/content/public/browser/
H A Dbrowser_child_process_host_iterator.cc17 iterator_ = BrowserChildProcessHostImpl::GetIterator()->begin();
24 iterator_ = BrowserChildProcessHostImpl::GetIterator()->begin();
25 if (!Done() && (*iterator_)->GetData().process_type != process_type_)
32 ++iterator_;
36 if (!all_ && (*iterator_)->GetData().process_type != process_type_)
46 return iterator_ == BrowserChildProcessHostImpl::GetIterator()->end();
51 return (*iterator_)->GetData();
56 return (*iterator_)->Send(message);
61 return (*iterator_)->delegate();
H A Dbrowser_child_process_host_iterator.h41 std::list<BrowserChildProcessHostImpl*>::iterator iterator_; member in class:content::BrowserChildProcessHostIterator
/external/chromium_org/cc/resources/
H A Dprioritized_tile_set.cc92 iterator_(tile_set->tiles_[current_bin_].begin()) {
93 if (iterator_ == tile_set_->tiles_[current_bin_].end())
102 DCHECK(iterator_ != tile_set_->tiles_[current_bin_].end());
104 ++iterator_;
105 if (iterator_ == tile_set_->tiles_[current_bin_].end())
111 DCHECK(iterator_ != tile_set_->tiles_[current_bin_].end());
112 return iterator_->get();
116 DCHECK(iterator_ == tile_set_->tiles_[current_bin_].end());
120 iterator_ = tile_set_->tiles_[current_bin_].begin();
121 if (iterator_ !
[all...]
H A Dprioritized_tile_set.h36 return iterator_ != tile_set_->tiles_[current_bin_].end();
44 std::vector<scoped_refptr<Tile> >::iterator iterator_; member in class:cc::PrioritizedTileSet::PriorityIterator
/external/chromium_org/net/base/
H A Dpriority_queue.h55 Pointer(const Pointer& p) : priority_(p.priority_), iterator_(p.iterator_) {
64 iterator_ = p.iterator_;
76 const T& value() const { return iterator_->second; }
78 const T& value() const { return *iterator_; }
83 return (priority_ == other.priority_) && (iterator_ == other.iterator_);
101 : priority_(priority), iterator_(iterator) {
103 id_ = iterator_
108 ListIterator iterator_; member in class:net::PriorityQueue::Pointer
[all...]
/external/v8/src/
H A Dframes-inl.h114 : iterator_(iterator), isolate_(iterator_->isolate()) {
119 return iterator_->handler();
261 : iterator_(isolate) {
269 : iterator_(isolate, top) {
280 StackFrame* frame = iterator_.frame();
289 : iterator_(isolate) {
297 iterator_.Advance();
298 } while (!iterator_.done() && !iterator_
[all...]
H A Dframes.h183 this->iterator_ = NULL;
277 const StackFrameIterator* iterator_;
730 iterator_(fp, sp, low_bound, high_bound) {
739 iterator_(isolate, fp, sp, low_bound, high_bound) {
745 bool done() const { return iterator_.done(); }
759 Iterator iterator_;
789 return iterator_.frame();
792 bool done() const { return iteration_done_ ? true : iterator_.done(); }
856 StackFrameIterator iterator_;
880 StackFrameIterator iterator_;
[all...]
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck_worditerator.cc299 iterator_(NULL) {
320 iterator_ = ubrk_openRules(rule.c_str(), rule.length(), NULL, 0,
333 return !!iterator_;
337 DCHECK(!!iterator_);
341 ubrk_setText(iterator_, text, length, &status);
348 position_ = ubrk_first(iterator_);
374 int next = ubrk_next(iterator_);
376 if (ubrk_getRuleStatus(iterator_) != UBRK_WORD_NONE) {
385 next = ubrk_next(iterator_);
396 if (iterator_) {
[all...]
H A Dspellcheck_worditerator.h170 UBreakIterator* iterator_; member in class:SpellcheckWordIterator
/external/chromium_org/net/http/
H A Dtransport_security_state.h149 bool HasNext() const { return iterator_ != end_; }
150 void Advance() { ++iterator_; }
151 const std::string& hostname() const { return iterator_->first; }
152 const DomainState& domain_state() const { return iterator_->second; }
155 std::map<std::string, DomainState>::const_iterator iterator_; member in class:net::TransportSecurityState::Iterator
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.cc140 bool LevelDBTransaction::TreeIterator::IsValid() const { return !!*iterator_; }
143 iterator_.StartIterGreatest(tree_);
145 key_ = (*iterator_)->key;
149 iterator_.StartIter(tree_, target, TreeType::EQUAL);
151 iterator_.StartIter(tree_, target, TreeType::GREATER);
154 key_ = (*iterator_)->key;
159 ++iterator_;
161 DCHECK_GE(transaction_->comparator_->Compare((*iterator_)->key, key_), 0);
162 key_ = (*iterator_)->key;
168 --iterator_;
[all...]
H A Dleveldb_database.cc408 scoped_ptr<leveldb::Iterator> iterator_;
413 : iterator_(it.Pass()) {}
416 const leveldb::Status s = iterator_->status();
421 bool IteratorImpl::IsValid() const { return iterator_->Valid(); }
424 iterator_->SeekToLast();
429 iterator_->Seek(MakeSlice(target));
435 iterator_->Next();
441 iterator_->Prev();
447 return MakeStringPiece(iterator_->key());
452 return MakeStringPiece(iterator_
[all...]
/external/chromium_org/v8/src/
H A Dframes-inl.h120 : iterator_(iterator), isolate_(iterator_->isolate()) {
125 return iterator_->handler();
314 : iterator_(isolate) {
321 : iterator_(isolate, top) {
331 StackFrame* frame = iterator_.frame();
H A Dframes.h225 this->iterator_ = NULL;
338 const StackFrameIteratorBase* iterator_;
856 bool done() const { return iterator_.done(); }
865 StackFrameIterator iterator_;
914 explicit StackFrameLocator(Isolate* isolate) : iterator_(isolate) {}
921 StackFrameIterator iterator_;
/external/chromium_org/media/webm/
H A Dwebm_cluster_parser.cc20 iterator_(text_track_map.begin()),
26 iterator_(rhs.iterator_),
36 if (iterator_ == iterator_end_) {
43 *track_num = iterator_->first;
44 *buffers = &iterator_->second.buffers();
46 ++iterator_;
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h289 : base_(base), iterator_(iterator) {}
296 ++iterator_;
302 // We need to use cached value referenced by iterator_ because *iterator_
304 // having "return &*iterator_;" doesn't work.
306 // can advance iterator_ beyond the end of the range, and we cannot
311 value_.reset(new T(*iterator_));
320 return iterator_ ==
321 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
330 iterator_(othe
333 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h289 : base_(base), iterator_(iterator) {}
296 ++iterator_;
302 // We need to use cached value referenced by iterator_ because *iterator_
304 // having "return &*iterator_;" doesn't work.
306 // can advance iterator_ beyond the end of the range, and we cannot
311 value_.reset(new T(*iterator_));
320 return iterator_ ==
321 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
330 iterator_(othe
333 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h289 : base_(base), iterator_(iterator) {}
296 ++iterator_;
302 // We need to use cached value referenced by iterator_ because *iterator_
304 // having "return &*iterator_;" doesn't work.
306 // can advance iterator_ beyond the end of the range, and we cannot
311 value_.reset(new T(*iterator_));
320 return iterator_ ==
321 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
330 iterator_(othe
333 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h289 : base_(base), iterator_(iterator) {}
296 ++iterator_;
302 // We need to use cached value referenced by iterator_ because *iterator_
304 // having "return &*iterator_;" doesn't work.
306 // can advance iterator_ beyond the end of the range, and we cannot
311 value_.reset(new T(*iterator_));
320 return iterator_ ==
321 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
330 iterator_(othe
333 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h289 : base_(base), iterator_(iterator) {}
296 ++iterator_;
302 // We need to use cached value referenced by iterator_ because *iterator_
304 // having "return &*iterator_;" doesn't work.
306 // can advance iterator_ beyond the end of the range, and we cannot
311 value_.reset(new T(*iterator_));
320 return iterator_ ==
321 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
330 iterator_(othe
333 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h289 : base_(base), iterator_(iterator) {}
296 ++iterator_;
302 // We need to use cached value referenced by iterator_ because *iterator_
304 // having "return &*iterator_;" doesn't work.
306 // can advance iterator_ beyond the end of the range, and we cannot
311 value_.reset(new T(*iterator_));
320 return iterator_ ==
321 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
330 iterator_(othe
333 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/open-vcdiff/gtest/include/gtest/internal/
H A Dgtest-param-util.h309 : base_(base), iterator_(iterator) {}
316 ++iterator_;
322 // We need to use cached value referenced by iterator_ because *iterator_
324 // having "return &*iterator_;" doesn't work.
326 // can advance iterator_ beyond the end of the range, and we cannot
331 value_.reset(new T(*iterator_));
340 return iterator_ ==
341 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
350 iterator_(othe
353 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h307 : base_(base), iterator_(iterator) {}
314 ++iterator_;
320 // We need to use cached value referenced by iterator_ because *iterator_
322 // having "return &*iterator_;" doesn't work.
324 // can advance iterator_ beyond the end of the range, and we cannot
329 value_.reset(new T(*iterator_));
338 return iterator_ ==
339 CheckedDowncastToActualType<const Iterator>(&other)->iterator_;
348 iterator_(othe
351 typename ContainerType::const_iterator iterator_; member in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dchatroommoduleimpl.cc145 XmppChatroomModuleImpl::JidMemberMap::iterator iterator_; member in class:buzz::XmppChatroomMemberEnumeratorImpl
692 iterator_ = map->begin();
703 return iterator_->second;
713 } else if (iterator_ == map_->begin()) {
717 iterator_--;
728 iterator_ = map_->begin();
733 iterator_++;
750 return (iterator_ == map_->end());
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_backing_store.cc1890 if (other->iterator_) {
1891 iterator_ = transaction_->CreateIterator();
1893 if (other->iterator_->IsValid()) {
1894 iterator_->Seek(other->iterator_->Key());
1895 DCHECK(iterator_->IsValid());
1906 iterator_ = transaction_->CreateIterator();
1908 iterator_->Seek(cursor_options_.low_key);
1910 iterator_->Seek(cursor_options_.high_key);
1941 iterator_
[all...]

Completed in 674 milliseconds

12