/third_party/skia/third_party/externals/tint/src/ |
D | block_allocator.h | 55 bool operator==(const Iterator& other) const { return it_ == other.it_; } 59 bool operator!=(const Iterator& other) const { return it_ != other.it_; } 63 ++it_; 67 T* operator*() const { return it_->get(); } 71 explicit Iterator(InternalIterator it) : it_(it) {} in Iterator() 72 InternalIterator it_; variable 82 return it_ == other.it_; 88 return it_ != other.it_; 93 ++it_; 97 T* operator*() const { return it_->get(); } [all …]
|
/third_party/libphonenumber/cpp/src/phonenumbers/utf/ |
D | unicodetext.cc | 53 return CodepointDistance(first.it_, last.it_); in distance() 208 repr_.append(first.it_, static_cast<int>(last.it_ - first.it_)); in UnicodeText() 214 return string(first.it_, last.it_ - first.it_); in UTF8Substring() 311 repr_.append(first.it_, static_cast<int>(last.it_ - first.it_)); in append() 417 UnicodeText::const_iterator::const_iterator() : it_(0) {} in const_iterator() 420 : it_(other.it_) { in const_iterator() 426 it_ = other.it_; in operator =() 440 return lhs.it_ < rhs.it_; in operator <() 450 uint8 byte1 = static_cast<uint8>(it_[0]); in operator *() 454 uint8 byte2 = static_cast<uint8>(it_[1]); in operator *() [all …]
|
D | unicodetext.h | 215 return lhs.it_ == rhs.it_; } 234 const char* utf8_data() const { return it_; } in utf8_data() 242 explicit const_iterator(const char* it) : it_(it) {} in const_iterator() 244 const char* it_; variable
|
/third_party/protobuf/src/google/protobuf/ |
D | repeated_field.h | 2432 RepeatedPtrIterator() : it_(NULL) {} 2433 explicit RepeatedPtrIterator(void* const* it) : it_(it) {} 2439 : it_(other.it_) { 2447 reference operator*() const { return *reinterpret_cast<Element*>(*it_); } 2452 ++it_; 2455 iterator operator++(int) { return iterator(it_++); } 2457 --it_; 2460 iterator operator--(int) { return iterator(it_--); } 2463 bool operator==(const iterator& x) const { return it_ == x.it_; } 2464 bool operator!=(const iterator& x) const { return it_ != x.it_; } [all …]
|
D | map.h | 1041 explicit const_iterator(const InnerIt& it) : it_(it) {} 1043 const_reference operator*() const { return *it_; } 1047 ++it_; 1050 const_iterator operator++(int) { return const_iterator(it_++); } 1053 return a.it_ == b.it_; 1060 InnerIt it_; 1074 explicit iterator(const InnerIt& it) : it_(it) {} 1076 reference operator*() const { return *it_; } 1080 ++it_; 1083 iterator operator++(int) { return iterator(it_++); } [all …]
|
/third_party/icu/icu4c/source/common/unicode/ |
D | locid.h | 1048 RangeIterator(Iter begin, Iter end) : it_(begin), end_(end) {} in RangeIterator() 1054 UBool hasNext() const override { return it_ != end_; } in hasNext() 1060 const Locale &next() override { return *it_++; } in next() 1063 Iter it_; 1086 it_(begin), end_(end), converter_(converter) {} in ConvertingIterator() 1092 UBool hasNext() const override { return it_ != end_; } in hasNext() 1098 const Locale &next() override { return converter_(*it_++); } in next() 1101 Iter it_;
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | locid.h | 1048 RangeIterator(Iter begin, Iter end) : it_(begin), end_(end) {} in RangeIterator() 1054 UBool hasNext() const override { return it_ != end_; } in hasNext() 1060 const Locale &next() override { return *it_++; } in next() 1063 Iter it_; 1086 it_(begin), end_(end), converter_(converter) {} in ConvertingIterator() 1092 UBool hasNext() const override { return it_ != end_; } in hasNext() 1098 const Locale &next() override { return converter_(*it_++); } in next() 1101 Iter it_;
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | locid.h | 1048 RangeIterator(Iter begin, Iter end) : it_(begin), end_(end) {} in RangeIterator() 1054 UBool hasNext() const override { return it_ != end_; } in hasNext() 1060 const Locale &next() override { return *it_++; } in next() 1063 Iter it_; 1086 it_(begin), end_(end), converter_(converter) {} in ConvertingIterator() 1092 UBool hasNext() const override { return it_ != end_; } in hasNext() 1098 const Locale &next() override { return converter_(*it_++); } in next() 1101 Iter it_;
|
/third_party/gn/src/base/ |
D | values.h | 551 bool IsAtEnd() const { return it_ == target_.dict_.end(); } in IsAtEnd() 552 void Advance() { ++it_; } in Advance() 554 const std::string& key() const { return it_->first; } in key() 555 const Value& value() const { return *it_->second; } in value() 559 DictStorage::const_iterator it_; variable
|
D | values.cc | 1061 : target_(target), it_(target.dict_.begin()) {} in Iterator()
|
/third_party/libexif/contrib/c++/ |
D | exif_module.cxx | 33 Pointer *it_, *end_; member 36 : it_(it), end_(end) in WrappedObjectIterator() 41 if(it_ == end_) in next() 46 return Wrapper(*it_++); in next()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | inlined_vector.h | 142 explicit IteratorValueAdapter(const Iterator& it) : it_(it) {} in IteratorValueAdapter() 145 AllocatorTraits::construct(*alloc_ptr, construct_at, *it_); in ConstructNext() 146 ++it_; in ConstructNext() 150 *assign_at = *it_; in AssignNext() 151 ++it_; in AssignNext() 155 Iterator it_;
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-iter.hh | 433 hb_filter_iter_t (const Iter& it_, Pred p_, Proj f_) : it (it_), p (p_), f (f_) in hb_filter_iter_t()
|
/third_party/harfbuzz/src/ |
D | hb-iter.hh | 442 hb_filter_iter_t (const Iter& it_, Pred p_, Proj f_) : it (it_), p (p_), f (f_) in hb_filter_iter_t()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-iter.hh | 442 hb_filter_iter_t (const Iter& it_, Pred p_, Proj f_) : it (it_), p (p_), f (f_) in hb_filter_iter_t()
|