Home
last modified time | relevance | path

Searched refs:array_iter_ (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/containers/
Dsmall_map.h213 inline iterator(): array_iter_(NULL) {}
216 if (array_iter_ != NULL) {
217 ++array_iter_;
229 if (array_iter_ != NULL) {
230 --array_iter_;
242 if (array_iter_ != NULL) {
243 return array_iter_;
250 if (array_iter_ != NULL) {
251 return *array_iter_;
258 if (array_iter_ != NULL) {
[all …]
/external/tensorflow/tensorflow/core/graph/
Dedgeset.h101 void const* const* array_iter_ = nullptr; variable
158 ci.array_iter_ = &ptrs_[0]; in begin()
170 ci.array_iter_ = &ptrs_[size()]; in end()
177 if (array_iter_ != nullptr) {
178 ++array_iter_;
198 if (array_iter_ != nullptr) {
199 return reinterpret_cast<const value_type*>(array_iter_);
210 if (array_iter_ != nullptr) {
211 return static_cast<value_type>(*array_iter_);
219 DCHECK((array_iter_ == nullptr) == (other.array_iter_ == nullptr))
[all …]
Dedgeset.cc28 ci.array_iter_ = &ptrs_[i]; in insert()
35 ci.array_iter_ = &ptrs_[i]; in insert()