Home
last modified time | relevance | path

Searched refs:is_iterable (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Didentity-map.cc24 DCHECK(!is_iterable()); in Clear()
37 CHECK(!is_iterable()); in EnableIteration()
42 CHECK(is_iterable()); in DisableIteration()
94 if (!is_iterable() && (size_ * kResizeFactor < capacity_ / kResizeFactor)) { in DeleteIndex()
158 CHECK(!is_iterable()); // Don't allow insertion while iterable. in GetEntry()
183 CHECK(!is_iterable()); in FindEntry()
195 CHECK(!is_iterable()); // Don't allow deletion by key while iterable. in DeleteEntry()
206 CHECK(is_iterable()); // Must be iterable to access by index; in EntryAtIndex()
213 CHECK(is_iterable()); // Must be iterable to access by index; in NextIndex()
224 CHECK(!is_iterable()); // Can't rehash while iterating. in Rehash()
[all …]
Didentity-map.h24 bool is_iterable() const { return is_iterable_; } in is_iterable() function
151 CHECK(!map_->is_iterable()); in IteratableScope()
155 CHECK(map_->is_iterable()); in ~IteratableScope()