Home
last modified time | relevance | path

Searched refs:is_iterable (Results 1 – 6 of 6) 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()
154 CHECK(!is_iterable()); // Don't allow insertion while iterable. in GetEntry()
179 CHECK(!is_iterable()); in FindEntry()
190 CHECK(!is_iterable()); // Don't allow deletion by key while iterable. in DeleteEntry()
201 CHECK(is_iterable()); // Must be iterable to access by index; in KeyAtIndex()
209 CHECK(is_iterable()); // Must be iterable to access by index; in EntryAtIndex()
216 CHECK(is_iterable()); // Must be iterable to access by index; in NextIndex()
227 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
161 CHECK(!map_->is_iterable()); in IteratableScope()
165 CHECK(map_->is_iterable()); in ~IteratableScope()
/external/tensorflow/tensorflow/contrib/graph_editor/
Dutil.py99 def is_iterable(obj): function
125 elif is_iterable(tree):
146 if is_iterable(tree):
204 if not is_iterable(tops):
208 elif not is_iterable(check_types):
246 if not is_iterable(ops):
295 if not is_iterable(ts):
Dselect.py412 if not util.is_iterable(seed_ops):
482 if not util.is_iterable(seed_ops):
/external/tensorflow/tensorflow/contrib/graph_editor/tests/
Dutil_test.py44 self.assertTrue(ge.util.is_iterable([0, 1, 2]))
45 self.assertFalse(ge.util.is_iterable(3))
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/sources/
Drx-iterate.hpp39 struct is_iterable struct