HomeSort by relevance Sort by last modified time
    Searched defs:Iterator (Results 26 - 50 of 341) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/kernels/data/
tensor_slice_dataset_op.cc 76 new Iterator({this, strings::StrCat(prefix, "::TensorSlice")}));
104 class Iterator : public DatasetIterator<Dataset> {
106 explicit Iterator(const Params& params)
zip_dataset_op.cc 66 new Iterator({this, strings::StrCat(prefix, "::Zip")}));
95 class Iterator : public DatasetIterator<Dataset> {
97 explicit Iterator(const Params& params)
batch_dataset_op.cc 66 return std::unique_ptr<IteratorBase>(new Iterator(
67 Iterator::Params{this, strings::StrCat(prefix, "::Batch")}));
95 class Iterator : public DatasetIterator<Dataset> {
97 explicit Iterator(const Params& params)
105 // input iterator.
filter_dataset_op.cc 74 new Iterator({this, strings::StrCat(prefix, "::Filter")}));
116 class Iterator : public DatasetIterator<Dataset> {
118 explicit Iterator(const Params& params)
unique_dataset_op.cc 62 new Iterator({this, strings::StrCat(prefix, "::Unique")}));
87 class Iterator : public DatasetIterator<Dataset> {
89 explicit Iterator(const typename Iterator::Params& params)
  /external/tensorflow/tensorflow/core/lib/io/
iterator.h 16 // An iterator yields a sequence of key/value pairs from a source.
21 // Multiple threads can invoke const methods on an Iterator without
23 // non-const method, all threads accessing the same Iterator must use
35 class Iterator {
37 Iterator();
38 virtual ~Iterator();
40 // An iterator is either positioned at a key/value pair, or
41 // not valid. This method returns true iff the iterator is valid.
44 // Position at the first key in the source. The iterator is Valid()
49 // The iterator is Valid() after this call iff the source contain
    [all...]
  /external/tensorflow/tensorflow/python/data/ops/
iterator_ops.py 31 # NOTE(mrry): It is legitimate to call `Iterator.get_next()` multiple
34 # users call `Iterator.get_next()` in each iteration of their training
35 # loop. `Iterator.get_next()` adds ops to the graph, and executing
43 "An unusually high number of `Iterator.get_next()` calls was detected. "
44 "This often indicates that `Iterator.get_next()` is being called inside "
47 "`next_element = iterator.get_next()` once outside the loop, and use "
52 @tf_export("data.Iterator")
53 class Iterator(object):
58 """Creates a new iterator from the given iterator resource
    [all...]
  /frameworks/av/drm/common/
DrmConstraints.cpp 88 DrmConstraints::Iterator DrmConstraints::iterator() { function in class:DrmConstraints
89 return Iterator(this);
92 DrmConstraints::Iterator::Iterator(const DrmConstraints::Iterator& iterator) :
93 mDrmConstraints(iterator.mDrmConstraints),
94 mIndex(iterator.mIndex) {
97 DrmConstraints::Iterator& DrmConstraints::Iterator::operator=
    [all...]
DrmInfoRequest.cpp 57 DrmInfoRequest::Iterator DrmInfoRequest::iterator() const { function in class:DrmInfoRequest
58 return Iterator(this);
85 // Iterator implementation
86 DrmInfoRequest::Iterator::Iterator(const DrmInfoRequest::Iterator& iterator) :
87 mDrmInfoRequest(iterator.mDrmInfoRequest), mIndex(iterator.mIndex)
    [all...]
DrmMetadata.cpp 92 DrmMetadata::Iterator DrmMetadata::iterator() { function in class:DrmMetadata
93 return Iterator(this);
96 DrmMetadata::Iterator::Iterator(const DrmMetadata::Iterator& iterator) :
97 mDrmMetadata(iterator.mDrmMetadata),
98 mIndex(iterator.mIndex) {
99 ALOGV("DrmMetadata::Iterator::Iterator")
    [all...]
DrmInfo.cpp 64 DrmInfo::Iterator DrmInfo::iterator() const { function in class:DrmInfo
65 return Iterator(this);
90 // Iterator implementation
91 DrmInfo::Iterator::Iterator(const DrmInfo::Iterator& iterator)
92 : mDrmInfo(iterator.mDrmInfo), mIndex(iterator.mIndex)
    [all...]
  /frameworks/base/tools/aapt2/io/
FileSystem.cpp 79 std::unique_ptr<IFileCollectionIterator> FileCollection::Iterator() {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
DebugCrossExSubsection.h 24 typedef ReferenceArray::Iterator Iterator;
37 Iterator begin() const { return References.begin(); }
38 Iterator end() const { return References.end(); }
  /external/deqp/framework/delibs/decpp/
deAppendList.hpp 95 class Iterator
98 Iterator (Block* curBlock_, size_t blockSize_, size_t slotNdx_)
104 bool operator!= (const Iterator<CompatibleType>& other) const
108 bool operator== (const Iterator<CompatibleType>& other) const
113 Iterator<CompatibleType>& operator++ (void)
126 Iterator<CompatibleType> operator++ (int) const
128 Iterator<CompatibleType> copy(*this);
142 operator Iterator<const CompatibleType> (void) const
144 return Iterator<const CompatibleType>(m_curBlock, m_blockSize, m_slotNdx);
153 typedef Iterator<const ElementType> const_iterator
154 typedef Iterator<ElementType> iterator; typedef in class:de::AppendList
    [all...]
  /external/libchrome/base/
callback_list.h 20 // iterator. It safely handles the case of a callback removing itself
80 typename std::list<CallbackType>::iterator iter)
97 typename std::list<CallbackType>::iterator iter_;
124 // An iterator class that can be used to access the list of callbacks.
125 class Iterator {
127 explicit Iterator(CallbackListBase<CallbackType>* list)
133 Iterator(const Iterator& iter)
139 ~Iterator() {
159 typename std::list<CallbackType>::iterator list_iter_
    [all...]
  /build/kati/
strutil.h 27 struct Iterator {
28 Iterator& operator++();
30 bool operator!=(const Iterator& r) const {
41 Iterator begin() const;
42 Iterator end() const;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Dependency.c 179 UINT8 *Iterator;
215 Iterator = DriverEntry->Depex;
222 if (((UINTN)Iterator - (UINTN)DriverEntry->Depex) >= DriverEntry->DepexSize) {
230 switch (*Iterator) {
247 CopyMem (&DriverGuid, Iterator + 1, sizeof (EFI_GUID));
262 *Iterator = EFI_DEP_REPLACE_TRUE;
270 Iterator += sizeof (EFI_GUID);
359 CopyMem (&DriverGuid, Iterator + 1, sizeof (EFI_GUID));
367 Iterator += sizeof (EFI_GUID);
380 // need to be careful using Iterator in the loop as it's intermediate value
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 201 : Predicate(std::move(P)), Iterator(I), End(E) {
204 const llvm::object::SectionRef &operator*() const { return *Iterator; }
206 ++Iterator;
211 return Iterator != Other.Iterator;
216 while (Iterator != End && !Predicate(*Iterator)) {
217 ++Iterator;
221 llvm::object::section_iterator Iterator;
    [all...]
  /external/swiftshader/src/D3D8/
Direct3DResource8.hpp 85 typedef PrivateDataMap::iterator Iterator;
  /external/swiftshader/src/D3D9/
Direct3DResource9.hpp 87 typedef PrivateDataMap::iterator Iterator;
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
sparse_column_iterable.cc 23 using Iterator = SparseColumnIterable::Iterator;
27 // Iterator over indices matrix rows.
29 : public std::iterator<std::random_access_iterator_tag, const int64> {
116 Iterator::Iterator(SparseColumnIterable* iter, int64 example_idx)
  /external/webrtc/webrtc/voice_engine/
channel_manager.h 76 // Upon construction of an Iterator it will grab a copy of the channel list of
78 // current one of the ChannelManager. As the Iterator holds its own references
81 class Iterator {
83 explicit Iterator(ChannelManager* channel_manager);
94 RTC_DISALLOW_COPY_AND_ASSIGN(Iterator);

Completed in 701 milliseconds

12 3 4 5 6 7 8 91011>>