/third_party/skia/third_party/externals/tint/src/ |
H A D | block_allocator.h | 55 bool operator==(const Iterator& other) const { return it_ == other.it_; } in operator ==() 59 bool operator!=(const Iterator& other) const { return it_ != other.it_; } in operator !=() 63 ++it_; in operator ++() 67 T* operator*() const { return it_->get(); } in operator *() 71 explicit Iterator(InternalIterator it) : it_(it) {} in Iterator() 72 InternalIterator it_; member in tint::BlockAllocator::Iterator 82 return it_ == other.it_; in operator ==() 102 InternalIterator it_; global() member in tint::BlockAllocator::ConstIterator [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/utf/ |
H A 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_ in append() 516 ss << "{iter " << hex << it_ << "}"; DebugString() local [all...] |
H A D | unicodetext.h | 215 return lhs.it_ == rhs.it_; } in operator ==() 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_; member in i18n::phonenumbers::UnicodeText::const_iterator
|
/third_party/node/deps/v8/src/heap/ |
H A D | mark-compact-inl.h | 135 it_(chunk, bitmap) { in iterator() 136 it_.Advance(Bitmap::IndexToCell( in iterator() 138 if (!it_.Done()) { in iterator() 139 cell_base_ = it_.CurrentCellBase(); in iterator() 140 current_cell_ = *it_.CurrentCell(); in iterator() 163 while (!it_.Done()) { in AdvanceToNextValidObject() 181 if (!it_.Advance()) { in AdvanceToNextValidObject() 186 cell_base_ = it_.CurrentCellBase(); in AdvanceToNextValidObject() 187 current_cell_ = *it_.CurrentCell(); in AdvanceToNextValidObject() 215 if (it_ in AdvanceToNextValidObject() [all...] |
H A D | mark-compact.h | 131 MarkBitCellIterator it_; member in v8::internal::LiveObjectRange::iterator
|
/third_party/node/deps/v8/src/compiler/ |
H A D | bytecode-liveness-map.h | 27 return *it_ - 1; in operator *() 30 void operator++() { return ++it_; } in operator ++() 32 bool operator!=(const Iterator& other) const { return it_ != other.it_; } in operator !=() 40 : it_(liveness.bit_vector_.begin()) { in Iterator() 43 if (it_ != liveness.bit_vector_.end() && *it_ == 0) { in Iterator() 44 ++it_; in Iterator() 48 : it_(liveness.bit_vector_.end()) {} in Iterator() 50 BitVector::Iterator it_; member in v8::internal::compiler::BytecodeLivenessState::Iterator [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | repeated_field.h | 2432 RepeatedPtrIterator() : it_(NULL) {} in RepeatedPtrIterator() 2433 explicit RepeatedPtrIterator(void* const* it) : it_(it) {} in RepeatedPtrIterator() 2439 : it_(other.it_) { in RepeatedPtrIterator() 2447 reference operator*() const { return *reinterpret_cast<Element*>(*it_); } in operator *() 2452 ++it_; in operator ++() 2455 iterator operator++(int) { return iterator(it_++); } in operator ++() 2457 --it_; in operator --() 2460 iterator operator--(int) { return iterator(it_--); } in operator --() 2463 bool operator==(const iterator& x) const { return it_ 2505 void* const* it_; global() member in google::protobuf::internal::RepeatedPtrIterator 2587 VoidPtr* it_; global() member in google::protobuf::internal::RepeatedPtrOverPtrsIterator [all...] |
H A D | map.h | 1041 explicit const_iterator(const InnerIt& it) : it_(it) {} in const_iterator() 1043 const_reference operator*() const { return *it_; } in operator *() 1047 ++it_; in operator ++() 1050 const_iterator operator++(int) { return const_iterator(it_++); } in operator ++() 1053 return a.it_ == b.it_; in operator ==() 1060 InnerIt it_; member in google::protobuf::Map::const_iterator 1074 explicit iterator(const InnerIt& it) : it_(it) {} in iterator() 1076 reference operator*() const { return *it_; } in operator *() 1080 ++it_; in operator ++() 1100 InnerIt it_; global() member in google::protobuf::Map::iterator [all...] |
/third_party/icu/icu4c/source/common/unicode/ |
H A D | locid.h | 1048 RangeIterator(Iter begin, Iter end) : it_(begin), end_(end) {} in RangeIterator() 1054 UBool hasNext() const override { return it_ != end_; } 1060 const Locale &next() override { return *it_++; } 1063 Iter it_; member in Locale::RangeIterator 1086 it_(begin), end_(end), converter_(converter) {} in ConvertingIterator() 1092 UBool hasNext() const override { return it_ != end_; } 1098 const Locale &next() override { return converter_(*it_++); } 1101 Iter it_; member in Locale::ConvertingIterator
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | locid.h | 1051 RangeIterator(Iter begin, Iter end) : it_(begin), end_(end) {} in RangeIterator() 1057 UBool hasNext() const override { return it_ != end_; } 1063 const Locale &next() override { return *it_++; } 1066 Iter it_; member in Locale::RangeIterator 1089 it_(begin), end_(end), converter_(converter) {} in ConvertingIterator() 1095 UBool hasNext() const override { return it_ != end_; } 1101 const Locale &next() override { return converter_(*it_++); } 1104 Iter it_; member in Locale::ConvertingIterator
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | locid.h | 1048 RangeIterator(Iter begin, Iter end) : it_(begin), end_(end) {} in RangeIterator() 1054 UBool hasNext() const override { return it_ != end_; } 1060 const Locale &next() override { return *it_++; } 1063 Iter it_; member in Locale::RangeIterator 1086 it_(begin), end_(end), converter_(converter) {} in ConvertingIterator() 1092 UBool hasNext() const override { return it_ != end_; } 1098 const Locale &next() override { return converter_(*it_++); } 1101 Iter it_; member in Locale::ConvertingIterator
|
/third_party/node/deps/v8/src/handles/ |
H A D | global-handles.h | 338 : it_(it) {} in Iterator() 340 ++it_; in operator ++() 343 Handle<T> operator*() { return Handle<T>(&*it_); } in operator *() 344 bool operator!=(Iterator& that) { return it_ != that.it_; } in operator !=() 347 std::vector<Address, StrongRootBlockAllocator>::iterator it_; member in v8::internal::GlobalHandleVector::Iterator
|
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-param-util.h | 974 : base_(base), it_(it), end_(end) { in Iterator() 975 if (it_ != end_) value_ = std::make_shared<To>(static_cast<To>(*it_)); in Iterator() 983 ++it_; 984 if (it_ != end_) value_ = std::make_shared<To>(static_cast<To>(*it_)); 997 CheckedDowncastToActualType<const Iterator>(&other)->it_; 998 return it_ == other_it; 1005 ParamIterator<From> it_; member in testing::internal::ParamGeneratorConverter::Iterator
|
/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-param-util.h | 971 : base_(base), it_(it), end_(end) { in Iterator() 972 if (it_ != end_) value_ = std::make_shared<To>(static_cast<To>(*it_)); in Iterator() 980 ++it_; 981 if (it_ != end_) value_ = std::make_shared<To>(static_cast<To>(*it_)); 994 CheckedDowncastToActualType<const Iterator>(&other)->it_; 995 return it_ == other_it; 1002 ParamIterator<From> it_; member in testing::internal::ParamGeneratorConverter::Iterator
|
/third_party/gn/src/base/ |
H A 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_; member in base::DictionaryValue::Iterator
|
H A D | values.cc | 1061 : target_(target), it_(target.dict_.begin()) {}
|
/third_party/libexif/contrib/c++/ |
H A 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/ |
H A 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_; member in absl::inlined_vector_internal::IteratorValueAdapter
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A 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()
|