/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_rep_ring_reader.h | 41 CordRepRing::index_type index() const { return index_; } in index() 45 CordRep* node() const { return ring_->entry_child(index_); } in node() 61 return ring_->entry_end_offset(index_); in consumed() 79 index_ = ring_->head(); in Reset() 80 return ring_->entry_data(index_); in Reset() 88 index_ = ring_->advance(index_); in Next() 89 return ring_->entry_data(index_); in Next() 100 size_t current = ring_->entry_end_offset(index_); in Seek() 101 CordRepRing::index_type hint = (offset >= current) ? index_ in Seek() 111 CordRepRing::index_type index_; global() member in absl::cord_internal::CordRepRingReader [all...] |
H A D | cord_rep_btree_navigator.h | 143 // `index_` and `node_` contain the navigation state as the 'path' to the 144 // current data edge which is at `node_[0]->Edge(index_[0])`. The contents 146 uint8_t index_[CordRepBtree::kMaxHeight]; member in absl::cord_internal::CordRepBtreeNavigator 159 return node_[0]->Edge(index_[0]); in Current() 179 index_[height] = static_cast<uint8_t>(index); in Init() 184 index_[height] = static_cast<uint8_t>(index); in Init() 196 index_[height] = static_cast<uint8_t>(index.index); in Seek() 201 index_[height] = static_cast<uint8_t>(index.index); in Seek() 217 return index_[0] == edge->back() ? NextUp() : edge->Edge(++index_[ in Next() [all...] |
H A D | cord_rep_btree_navigator.cc | 68 size_t index = index_[0]; in Skip() 82 index = index_[height]; in Skip() 91 index_[height] = index; in Skip() 102 index_[0] = index; in Skip() 109 size_t index = index_[0]; in Read() 127 index_[height] = index; in Read() 140 index = index_[height]; in Read() 155 index_[height] = index; in Read() 179 index_[0] = index; in Read()
|
/third_party/gn/src/base/containers/ |
H A D | circular_deque.h | 138 circular_deque_const_iterator() : parent_deque_(nullptr), index_(0) { in circular_deque_const_iterator() 147 parent_deque_->CheckValidIndex(index_); in operator *() 148 return parent_deque_->buffer_[index_]; in operator *() 152 parent_deque_->CheckValidIndex(index_); in operator ->() 153 return &parent_deque_->buffer_[index_]; in operator ->() 211 return lhs.index_ == rhs.index_; in operator ==() 240 : parent_deque_(parent), index_(index) { in circular_deque_const_iterator() 249 if (index_ >= parent_deque_->begin_) in OffsetFromBegin() 250 return index_ in OffsetFromBegin() 315 size_t index_; global() member in base::internal::circular_deque_const_iterator [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | scope-info-inl.h | 46 : range_(range), index_(index) { in Iterator() 52 DCHECK_LT(index_, range_->max_index()); in operator ++() 53 ++index_; in operator ++() 60 return a.range_ == b.range_ && a.index_ == b.index_; in operator ==() 68 DCHECK_LT(index_, range_->max_index()); in name() 71 index_.as_int()); in name() 73 return String::cast(table().KeyAt(cage_base, index_)); in name() 84 if (range_->inlined()) return index_.as_int(); in index() 85 return table().IndexAt(index_); in index() 90 InternalIndex index_; global() member in v8::internal::ScopeInfo::LocalNamesRange::Iterator [all...] |
H A D | lookup-inl.h | 76 index_(index) { in LookupIterator() 80 if (index_ > JSObject::kMaxElementIndex && in LookupIterator() 87 name_ = isolate->factory()->SizeToString(index_); in LookupIterator() 121 index_ = static_cast<size_t>(index); in PropertyKey() 123 index_ = LookupIterator::kInvalidIndex; in PropertyKey() 129 index_ = static_cast<size_t>(index); in PropertyKey() 134 if (name->AsIntegerIndex(&index_)) { in PropertyKey() 137 index_ = LookupIterator::kInvalidIndex; in PropertyKey() 144 if (valid_key->ToIntegerIndex(&index_)) return; in PropertyKey() 151 if (!name_->AsIntegerIndex(&index_)) { in PropertyKey() [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | preparse-data-impl.h | 66 index_ = position; in SetPosition() 71 DCHECK_LE(index_, data_.data_length()); in RemainingBytes() 72 return data_.data_length() - index_; in RemainingBytes() 77 return index_ <= data_.data_length() && bytes <= RemainingBytes(); in HasRemainingBytes() 84 DCHECK_EQ(data_.get(index_++), kUint32Size); in ReadUint32() 85 int32_t result = data_.get(index_) + (data_.get(index_ + 1) << 8) + in ReadUint32() 86 (data_.get(index_ + 2) << 16) + in ReadUint32() 87 (data_.get(index_ + 3) << 24); in ReadUint32() 88 index_ in ReadUint32() 138 int index_ = 0; global() member in v8::internal::BaseConsumedPreparseData::ByteData [all...] |
/third_party/node/deps/v8/src/date/ |
H A D | dateparser.h | 60 explicit InputReader(base::Vector<Char> s) : index_(0), buffer_(s) { in InputReader() 64 int position() { return index_; } in position() 68 ch_ = (index_ < buffer_.length()) ? buffer_[index_] : 0; in Next() 69 index_++; in Next() 126 int index_; member in v8::internal::DateParser::InputReader 296 TimeComposer() : index_(0), hour_offset_(kNone) {} 297 bool IsEmpty() const { return index_ == 0; } 299 return (index_ == 1 && IsMinute(n)) || (index_ [all...] |
H A D | dateparser.cc | 14 if (index_ < 1) return false; in Write() 16 while (index_ < kSize) { in Write() 17 comp_[index_++] = 1; in Write() 25 if (is_iso_date_ || (index_ == 3 && !IsDay(comp_[0]))) { in Write() 34 if (index_ == 3) year = comp_[2]; in Write() 38 if (index_ == 1) { in Write() 69 while (index_ < kSize) { in Write() 70 comp_[index_++] = 0; in Write()
|
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/containers/ |
H A D | mru_cache.h | 97 typename KeyIndex::iterator index_iter = index_.find(key); in Put() 98 if (index_iter != index_.end()) in Put() 112 index_.emplace(key, ordering_.begin()); in Put() 121 typename KeyIndex::iterator index_iter = index_.find(key); in Get() 122 if (index_iter == index_.end()) in Get() 135 typename KeyIndex::const_iterator index_iter = index_.find(key); in Peek() 136 if (index_iter == index_.end()) in Peek() 143 typename KeyIndex::const_iterator index_iter = index_.find(key); in Peek() 144 if (index_iter == index_.end()) in Peek() 153 index_ in Swap() 219 KeyIndex index_; global() member in angle::base::MRUCacheBase [all...] |
/third_party/mesa3d/include/android_stub/backtrace/ |
H A D | BacktraceMap.h | 76 iterator(BacktraceMap* map, size_t index) : map_(map), index_(index) {} in iterator() 79 index_++; in operator ++() 83 index_ += increment; in operator ++() 87 index_--; in operator --() 91 index_ -= decrement; in operator --() 95 bool operator==(const iterator& rhs) { return this->index_ == rhs.index_; } in operator ==() 96 bool operator!=(const iterator& rhs) { return this->index_ != rhs.index_; } in operator !=() 99 if (index_ > in operator *() 111 size_t index_ = 0; global() member in BacktraceMap::iterator [all...] |
/third_party/node/src/ |
H A D | aliased_buffer.h | 72 : aliased_buffer_(aliased_buffer), index_(index) {} in Reference() 76 index_(that.index_) { in Reference() 80 aliased_buffer_->SetValue(index_, val); in operator =() 89 return aliased_buffer_->GetValue(index_); in operator NativeT() 93 const NativeT current = aliased_buffer_->GetValue(index_); in operator +=() 94 aliased_buffer_->SetValue(index_, current + val); in operator +=() 103 const NativeT current = aliased_buffer_->GetValue(index_); in operator -=() 104 aliased_buffer_->SetValue(index_, current - val); in operator -=() 110 size_t index_; member in node::AliasedBufferBase::Reference 174 const AliasedBufferIndex* index_ = nullptr; global() member in node::AliasedBufferBase [all...] |
H A D | aliased_buffer-inl.h | 16 : isolate_(isolate), count_(count), byte_offset_(0), index_(index) { in AliasedBufferBase() 45 index_(index) { in AliasedBufferBase() 73 DCHECK_NULL(index_); in AliasedBufferBase() 80 DCHECK_NULL(index_); in Serialize() 87 DCHECK_NOT_NULL(index_); in Deserialize() 89 context->GetDataFromSnapshotOnce<V8T>(*index_).ToLocalChecked(); in Deserialize() 97 index_ = nullptr; in Deserialize() 103 DCHECK_NULL(index_); variable 119 DCHECK_NULL(index_); in GetJSArray() 125 DCHECK_NULL(index_); in Release() [all...] |
/third_party/gn/src/base/json/ |
H A D | json_parser.cc | 59 index_(0), in JSONParser() 73 index_ = 0; in Parse() 82 // that the index_ will not overflow when parsing. in Parse() 167 if (static_cast<size_t>(index_) + count > input_.length()) in PeekChars() 171 return std::string_view(input_.data() + index_, count); in PeekChars() 184 index_ += count; in ConsumeChars() 196 CHECK_LE(static_cast<size_t>(index_), input_.length()); in pos() 197 return input_.data() + index_; in pos() 250 index_last_line_ = index_; in EatWhitespaceAndComments() 252 if (!(c == '\n' && index_ > in EatWhitespaceAndComments() [all...] |
/third_party/node/deps/v8/src/utils/ |
H A D | identity-map.h | 165 index_ = map_->NextIndex(index_); in operator ++() 169 Object key() const { return Object(map_->KeyAtIndex(index_)); } in key() 171 return reinterpret_cast<V*>(map_->EntryAtIndex(index_)); in entry() 176 bool operator!=(const Iterator& other) { return index_ != other.index_; } in operator !=() 177 bool operator==(const Iterator& other) { return index_ == other.index_; } in operator ==() 180 Iterator(IdentityMap* map, int index) : map_(map), index_(index) {} in Iterator() 183 int index_; member in v8::internal::IdentityMap::Iterator [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/reduce/ |
H A D | reduction_pass.cpp | 47 if (index_ >= opportunities.size()) { in TryApplyReduction() 52 index_ = 0; in TryApplyReduction() 57 for (uint32_t i = index_; in TryApplyReduction() 58 i < std::min(index_ + granularity_, (uint32_t)opportunities.size()); in TryApplyReduction() 81 index_ += granularity_; in NotifyInteresting()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
H A D | reduction_pass.cpp | 47 if (index_ >= opportunities.size()) { in TryApplyReduction() 52 index_ = 0; in TryApplyReduction() 57 for (uint32_t i = index_; in TryApplyReduction() 58 i < std::min(index_ + granularity_, (uint32_t)opportunities.size()); in TryApplyReduction() 81 index_ += granularity_; in NotifyInteresting()
|
/third_party/spirv-tools/source/reduce/ |
H A D | reduction_pass.cpp | 47 if (index_ >= opportunities.size()) { in TryApplyReduction() 52 index_ = 0; in TryApplyReduction() 57 for (uint32_t i = index_; in TryApplyReduction() 58 i < std::min(index_ + granularity_, (uint32_t)opportunities.size()); in TryApplyReduction() 81 index_ += granularity_; in NotifyInteresting()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | source-position-table.h | 91 int index_; member 135 bool done() const { return index_ == kDone; } in done() 138 return {index_, current_, iteration_filter_, function_entry_filter_}; in GetState() 142 index_ = saved_state.index_; in RestoreState() 157 int index_ = 0; member in v8::internal::SourcePositionTableIterator
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-register.h | 23 constexpr explicit Register(int index = kInvalidIndex) : index_(index) {} in Register() 25 int index() const { return index_; } in index() 27 bool is_valid() const { return index_ != kInvalidIndex; } in is_valid() 62 return kRegisterFileStartOffset - index_; in ToOperand() 118 int index_; member in v8::internal::interpreter::final
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
H A D | thread_cnd_test.cpp | 30 index_ = threadIndex; in WaitThread() 38 while (*index_ != 1) { in WaitrBroadCast() 49 (*index_)++; in WaitrSignal() 55 (*index_)++; in ChangeInit() 62 int* index_; member in WaitThread
|
/third_party/vixl/src/ |
H A D | invalset-vixl.h | 284 swap(a.index_, b.index_); in swap() 322 size_t index_; member in vixl::InvalSetIterator 764 index_(0), in InvalSetIterator() 799 return &(inval_set_->preallocated_[index_]); in Current() 814 VIXL_ASSERT(done == (index_ == inval_set_->size())); in Done() 817 return index_ == inval_set_->size(); in Done() 828 index_ = inval_set_->size(); in Finish() 838 inval_set_->EraseInternal(inval_set_->preallocated_ + index_); in DeleteCurrentAndAdvance() 871 index_(othe in InvalSetIterator() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
H A D | elf_mem_image.cc | 304 : index_(index), image_(image) { in SymbolIterator() 316 return this->image_ == rhs.image_ && this->index_ == rhs.index_; in operator ==() 344 index_ += increment; in Update() 345 if (index_ >= image->GetNumSymbols()) { in Update() 346 index_ = image->GetNumSymbols(); in Update() 349 const ElfW(Sym) *symbol = image->GetDynsym(index_); in Update() 350 const ElfW(Versym) *version_symbol = image->GetVersym(index_); in Update()
|
/third_party/node/deps/v8/src/ast/ |
H A D | variables.h | 31 index_(-1), in Variable() 210 int index() const { return index_; } in index() 215 return index_ == -1; in IsReceiver() 230 index_ = index; in AllocateTo() 261 int index_; member in v8::internal::final
|
/third_party/node/deps/v8/src/wasm/ |
H A D | module-decoder.h | 62 NameAssoc(int index, WireBytesRef name) : index_(index), name_(name) {} in NameAssoc() 64 int index() const { return index_; } in index() 74 int index_; member in v8::internal::wasm::NameAssoc 106 : NameMap(std::move(names)), index_(index) {} in IndirectNameMapEntry() 108 int index() const { return index_; } in index() 118 int index_; member in v8::internal::wasm::IndirectNameMapEntry
|