Home
last modified time | relevance | path

Searched refs:IteratorBase (Results 1 – 25 of 93) sorted by relevance

1234

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h122 class IteratorBase {
124 explicit IteratorBase(ItemTy *current) : current_(current) {} in IteratorBase() function
125 IteratorBase &operator++() {
129 bool operator!=(IteratorBase other) const {
139 typedef IteratorBase<Item> Iterator;
140 typedef IteratorBase<const Item> ConstIterator;
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h132 class IteratorBase {
134 explicit IteratorBase(ItemTy *current) : current_(current) {} in IteratorBase() function
135 IteratorBase &operator++() {
139 bool operator!=(IteratorBase other) const {
149 typedef IteratorBase<Item> Iterator;
150 typedef IteratorBase<const Item> ConstIterator;
/external/scudo/standalone/
Dlist.h20 template <class T> class IteratorBase {
22 explicit IteratorBase(T *CurrentT) : Current(CurrentT) {} in IteratorBase() function
23 IteratorBase &operator++() {
27 bool operator!=(IteratorBase Other) const { return Current != Other.Current; }
48 typedef IteratorBase<T> Iterator;
49 typedef IteratorBase<const T> ConstIterator;
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dlist.h20 template <class T> class IteratorBase {
22 explicit IteratorBase(T *CurrentT) : Current(CurrentT) {} in IteratorBase() function
23 IteratorBase &operator++() {
27 bool operator!=(IteratorBase Other) const { return Current != Other.Current; }
48 typedef IteratorBase<T> Iterator;
49 typedef IteratorBase<const T> ConstIterator;
/external/llvm-project/llvm/include/llvm/ADT/
DAllocatorList.h87 template <class ValueT, class IteratorBase>
89 : public iterator_adaptor_base<IteratorImpl<ValueT, IteratorBase>,
90 IteratorBase,
97 iterator_adaptor_base<IteratorImpl<ValueT, IteratorBase>, IteratorBase,
109 explicit IteratorImpl(const IteratorBase &I) : base_type(I) {} in IteratorImpl()
114 OtherIteratorBase, IteratorBase>::value> * = nullptr)
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAllocatorList.h87 template <class ValueT, class IteratorBase>
89 : public iterator_adaptor_base<IteratorImpl<ValueT, IteratorBase>,
90 IteratorBase,
97 iterator_adaptor_base<IteratorImpl<ValueT, IteratorBase>, IteratorBase,
109 explicit IteratorImpl(const IteratorBase &I) : base_type(I) {} in IteratorImpl()
114 OtherIteratorBase, IteratorBase>::value>::type * = nullptr)
/external/tensorflow/tensorflow/core/framework/
Ddataset.h599 class IteratorBase {
601 virtual ~IteratorBase() { in ~IteratorBase()
664 Status InitializeBase(IteratorContext* ctx, const IteratorBase* parent);
692 const std::unique_ptr<IteratorBase>& input) { in SaveInput()
703 const std::unique_ptr<IteratorBase>& input) { in RestoreInput()
712 const std::unique_ptr<IteratorBase>& input) { in RestoreInput()
752 const IteratorBase* parent_ = nullptr; // Not owned.
833 Status MakeIterator(IteratorContext* ctx, const IteratorBase* parent,
835 std::unique_ptr<IteratorBase>* iterator) const;
837 Status MakeIterator(IteratorContext&& ctx, const IteratorBase* parent, in MakeIterator()
[all …]
/external/tensorflow/tensorflow/core/kernels/data/
Dcaptured_function.h46 IteratorContext* ctx, const IteratorBase* parent,
49 std::unique_ptr<IteratorBase>* out_iterator);
55 IteratorContext* ctx, const IteratorBase* parent,
58 std::unique_ptr<IteratorBase>* out_iterator,
Drepeat_dataset_op.cc50 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
211 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
292 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
Dflat_map_dataset_op.cc62 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
263 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
264 std::unique_ptr<IteratorBase> current_element_iterator_ TF_GUARDED_BY(mu_);
/external/tensorflow/tensorflow/core/data/
Dstandalone.h78 Iterator(IteratorBase* iterator, IteratorContext* ctx);
80 std::unique_ptr<IteratorBase> iterator_;
Dstandalone.cc42 Iterator::Iterator(IteratorBase* iterator, IteratorContext* ctx) in Iterator()
125 std::unique_ptr<IteratorBase> iterator; in MakeIterator()
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dstats_dataset_ops.cc62 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
153 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
185 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
272 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
Dthreadpool_dataset_op.cc157 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
248 std::unique_ptr<IteratorBase> input_impl_;
287 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
374 std::unique_ptr<IteratorBase> input_impl_;
412 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
500 std::unique_ptr<IteratorBase> input_impl_;
Dchoose_fastest_branch_dataset_op.cc42 IteratorBase* iterator) in WrapperDataset()
71 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
129 IteratorBase* const real_iterator_; // not owned.
223 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
552 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
560 std::unique_ptr<IteratorBase> current_iterator_;
Dsampling_dataset_op.cc54 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
56 return std::unique_ptr<IteratorBase>( in MakeIteratorInternal()
198 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
Dnon_serializable_dataset_op.cc55 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
128 std::unique_ptr<IteratorBase> input_impl_;
Dignore_errors_dataset_op.cc50 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
161 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
Dsleep_dataset_op.cc54 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
162 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
Ddirected_interleave_dataset_op.cc67 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
252 std::unique_ptr<IteratorBase> selector_input_impl_ TF_GUARDED_BY(mu_);
253 std::vector<std::unique_ptr<IteratorBase>> data_input_impls_
Dassert_cardinality_dataset_op.cc54 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
158 std::unique_ptr<IteratorBase> input_impl_;
Dassert_next_dataset_op.cc50 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
143 std::unique_ptr<IteratorBase> input_impl_;
Dtake_while_dataset_op.cc65 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
200 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
Dunique_dataset_op.cc39 std::unique_ptr<IteratorBase> MakeIteratorInternal( in MakeIteratorInternal()
205 std::unique_ptr<IteratorBase> input_impl_ TF_GUARDED_BY(mu_);
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.data.-iterator.pbtxt3 is_instance: "<class \'tensorflow.python.data.ops.iterator_ops.IteratorBase\'>"

1234