Searched refs:it_ (Results 1 - 14 of 14) sorted by relevance

/external/v8/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest12-expected.cc21 MyIter(const MyIter& other) : it_(other.it_) {}
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {}
24 ++it_;
27 const scoped_refptr<const Foo> operator*() { return it_->second; }
28 bool operator!=(const MyIter& other) { return it_ != other.it_; }
29 bool operator==(const MyIter& other) { return it_ == other.it_; }
32 MyMap::const_iterator it_; member in class:MyIter
[all...]
H A Dtest12-original.cc21 MyIter(const MyIter& other) : it_(other.it_) {}
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {}
24 ++it_;
27 const scoped_refptr<const Foo> operator*() { return it_->second; }
28 bool operator!=(const MyIter& other) { return it_ != other.it_; }
29 bool operator==(const MyIter& other) { return it_ == other.it_; }
32 MyMap::const_iterator it_; member in class:MyIter
[all...]
/external/libcxx/test/std/strings/basic.string/
H A Dinput_iterator.h18 It it_; member in class:input_iterator
26 input_iterator() : it_() {}
27 explicit input_iterator(It it) : it_(it) {}
29 reference operator*() const {return *it_;}
30 pointer operator->() const {return it_;}
32 input_iterator& operator++() {++it_; return *this;}
36 {return x.it_ == y.it_;}
/external/libcxx/test/support/
H A Dtest_iterators.h29 It it_; member in class:output_iterator
39 It base() const {return it_;}
42 explicit output_iterator(It it) : it_(it) {}
44 output_iterator(const output_iterator<U>& u) :it_(u.it_) {}
46 reference operator*() const {return *it_;}
48 output_iterator& operator++() {++it_; return *this;}
61 It it_; member in class:input_iterator
71 TEST_CONSTEXPR_CXX14 It base() const {return it_;}
73 TEST_CONSTEXPR_CXX14 input_iterator() : it_() {}
113 It it_; member in class:forward_iterator
165 It it_; member in class:bidirectional_iterator
216 It it_; member in class:random_access_iterator
[all...]
/external/libtextclassifier/util/utf8/
H A Dunicodetext.cc211 return std::string(first.it_, last.it_ - first.it_);
222 UnicodeText::const_iterator::const_iterator() : it_(0) {}
226 if (&other != this) it_ = other.it_;
240 return lhs.it_ < rhs.it_;
250 unsigned char byte1 = static_cast<unsigned char>(it_[0]);
253 unsigned char byte2 = static_cast<unsigned char>(it_[
[all...]
H A Dunicodetext.h107 return lhs.it_ == rhs.it_;
122 if (it_[0] < 0x80) {
124 } else if (it_[0] < 0xE0) {
126 } else if (it_[0] < 0xF0) {
132 const char* utf8_data() const { return it_; }
136 explicit const_iterator(const char* it) : it_(it) {}
138 const char* it_; member in class:libtextclassifier2::UnicodeText::const_iterator
/external/v8/src/heap/
H A Dmark-compact-inl.h111 while (!it_.Done()) {
130 if (it_.Done()) {
137 it_.Advance();
138 cell_base_ = it_.CurrentCellBase();
139 current_cell_ = *it_.CurrentCell();
161 if (it_.Advance(end_cell_index)) {
162 cell_base_ = it_.CurrentCellBase();
163 current_cell_ = *it_.CurrentCell();
191 if (!it_.Done()) {
192 it_
[all...]
H A Dmark-compact.h386 it_(chunk_),
387 cell_base_(it_.CurrentCellBase()),
388 current_cell_(*it_.CurrentCell()) {
397 MarkBitCellIterator it_; member in class:v8::internal::BASE_EMBEDDED
/external/libcxx/test/libcxx/iterators/
H A Dtrivial_iterators.pass.cpp44 It it_; member in class:my_input_iterator
54 It base() const {return it_;}
56 my_input_iterator() : it_() {}
57 explicit my_input_iterator(It it) : it_(it) {}
59 my_input_iterator(const my_input_iterator<U>& u) :it_(u.it_) {}
61 reference operator*() const {return *it_;}
62 pointer operator->() const {return it_;}
64 my_input_iterator& operator++() {++it_; return *this;}
69 {return x.it_
[all...]
/external/v8/src/
H A Dbit-vector.h198 : it_(target->bits_ == NULL ? new (zone) BitVector(1, zone)
200 bool Done() const { return it_.Done(); }
201 void Advance() { it_.Advance(); }
202 int Current() const { return it_.Current(); }
205 BitVector::Iterator it_; member in class:v8::internal::BASE_EMBEDDED::BASE_EMBEDDED
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h2085 RepeatedPtrIterator() : it_(NULL) {}
2086 explicit RepeatedPtrIterator(void* const* it) : it_(it) {}
2092 : it_(other.it_) {
2100 reference operator*() const { return *reinterpret_cast<Element*>(*it_); }
2104 iterator& operator++() { ++it_; return *this; }
2105 iterator operator++(int) { return iterator(it_++); }
2106 iterator& operator--() { --it_; return *this; }
2107 iterator operator--(int) { return iterator(it_--); }
2110 bool operator==(const iterator& x) const { return it_
2152 void* const* it_; member in class:google::protobuf::internal::RepeatedPtrIterator
2236 VoidPtr* it_; member in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
[all...]
H A Dmap.h1389 : iterator_base(iterator_base::kNew), it_(it) {}
1392 : iterator_base(other), it_(other.it_), dit_(other.dit_) {}
1395 return this->OldStyle() ? *dit_->second : *it_->value();
1403 ++it_;
1407 return this->OldStyle() ? const_iterator(dit_++) : const_iterator(it_++);
1413 return a.OldStyle() ? (a.dit_ == b.dit_) : (a.it_ == b.it_);
1420 InnerIt it_; member in class:google::protobuf::Map::const_iterator
1434 : iterator_base(iterator_base::kNew), it_(i
1471 InnerIt it_; member in class:google::protobuf::Map::iterator
[all...]
/external/libchrome/base/
H A Dvalues.h358 bool IsAtEnd() const { return it_ == (*target_.dict_ptr_)->end(); }
359 void Advance() { ++it_; }
361 const std::string& key() const { return it_->first; }
362 const Value& value() const { return *it_->second; }
366 DictStorage::const_iterator it_; member in class:base::DictionaryValue::Iterator
H A Dvalues.cc1052 : target_(target), it_((*target.dict_ptr_)->begin()) {}

Completed in 2162 milliseconds