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

1 2 3 4 5 6 7 8 91011>>

  /system/bt/vendor_libs/test_vendor_lib/include/
hci_packet.h 2 #include <iterator>
10 // Iterator is a custom iterator class for HciPackets.
11 class Iterator
12 : public std::iterator<std::random_access_iterator_tag, uint8_t> {
14 Iterator(std::shared_ptr<class HciPacket> packet, size_t i);
15 Iterator(const Iterator& itr);
17 ~Iterator() {}
23 Iterator operator+(size_t offset)
    [all...]
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
examples_iterable.cc 21 using Iterator = ExamplesIterable::Iterator;
61 Iterator::Iterator(ExamplesIterable* iter, int64 example_idx)
  /libcore/ojluni/src/main/java/java/util/
Iterator.java 31 * An iterator over a collection. {@code Iterator} takes the place of
46 * @param <E> the type of elements returned by this iterator
54 public interface Iterator<E> {
74 * by this iterator (optional operation). This method can be called
75 * only once per call to {@link #next}. The behavior of an iterator
85 * operation is not supported by this iterator
  /external/icu/icu4c/source/common/
ucharstrieiterator.cpp 24 UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength,
37 // Unlike UCharsTrie itself, its Iterator performs memory allocations anyway
46 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength,
77 UCharsTrie::Iterator::~Iterator() {
81 UCharsTrie::Iterator &
82 UCharsTrie::Iterator::reset() {
98 UCharsTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty();
    [all...]
bytestrieiterator.cpp 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength,
37 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway
47 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength,
78 BytesTrie::Iterator::~Iterator() {
83 BytesTrie::Iterator &
84 BytesTrie::Iterator::reset() {
99 BytesTrie::Iterator::hasNext() const { return pos_!=NULL || !stack_->isEmpty();
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
java_iterator.h 22 // Interface of Java iterator.
23 // This is a forward read-only iterator that represents java.util.Iterator<E>
28 class Iterator : public virtual RefCount {
30 virtual ~Iterator() {}
34 Iterator() {}
35 NO_COPY_AND_ASSIGN(Iterator);
40 class PODIterator : public Iterator<ReturnType, ContainerBase>,
67 class RefIterator : public Iterator<ReturnType, ContainerBase>,
  /external/tensorflow/tensorflow/core/lib/io/
iterator.cc 16 #include "tensorflow/core/lib/io/iterator.h"
21 Iterator::Iterator() {
26 Iterator::~Iterator() {
38 void Iterator::RegisterCleanup(CleanupFunction func, void* arg1, void* arg2) {
54 class EmptyIterator : public Iterator {
76 Iterator* NewEmptyIterator() { return new EmptyIterator(Status::OK()); }
78 Iterator* NewErrorIterator(const Status& status) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Dependency/
Dependency.c 103 DEPENDENCY_EXPRESSION_OPERAND *Iterator;
107 Iterator = DependencyExpression;
113 switch (*(Iterator++)) {
134 StackPtr->Operator = (VOID *) Iterator;
135 Iterator = Iterator + sizeof (EFI_GUID);
142 if (*(Iterator - 1) == EFI_DEP_AND) {
169 // Iterator has increased by 1 after we retrieve the operand, so here we
170 // should get the value pointed by (Iterator - 1), in order to obtain the
173 if (*(Iterator - 1) == EFI_DEP_AND) {
    [all...]
  /external/tensorflow/tensorflow/contrib/data/kernels/
ignore_errors_dataset_op.cc 50 new Iterator({this, strings::StrCat(prefix, "::IgnoreErrors")}));
72 class Iterator : public DatasetIterator<Dataset> {
74 explicit Iterator(const Params& params)
  /external/tensorflow/tensorflow/core/kernels/data/
window_dataset.cc 32 new Iterator({this, strings::StrCat(prefix, "::Window")}));
44 class Iterator : public DatasetIterator<WindowDataset> {
46 explicit Iterator(const Params& params)
concatenate_dataset_op.cc 67 new Iterator({this, strings::StrCat(prefix, "::Concatenate")}));
94 class Iterator : public DatasetIterator<Dataset> {
96 explicit Iterator(const Params& params)
random_dataset_op.cc 60 new Iterator({this, strings::StrCat(prefix, "::Random")}));
91 class Iterator : public DatasetIterator<Dataset> {
93 explicit Iterator(const Params& params)
range_dataset_op.cc 54 new Iterator({this, strings::StrCat(prefix, "::Range")}));
87 class Iterator : public DatasetIterator<Dataset> {
89 explicit Iterator(const Params& params)
sql_dataset_ops.cc 92 new Iterator({this, strings::StrCat(prefix, "::Sql")}));
106 class Iterator : public DatasetIterator<Dataset> {
108 explicit Iterator(const Params& params)
110 ~Iterator() override {
stats_dataset_ops.cc 62 new Iterator({this, strings::StrCat(prefix, "::LatencyStats")}));
86 class Iterator : public DatasetIterator<Dataset> {
88 explicit Iterator(const Params& params)
155 return std::unique_ptr<IteratorBase>(new Iterator(
182 class Iterator : public DatasetIterator<Dataset> {
184 explicit Iterator(const Params& params)
tensor_dataset_op.cc 59 new Iterator({this, strings::StrCat(prefix, "::FromTensor")}));
87 class Iterator : public DatasetIterator<Dataset> {
89 explicit Iterator(const Params& params)
  /external/tensorflow/tensorflow/core/util/
cuda_device_functions.h 43 struct Iterator {
44 __device__ Iterator(T index, T delta) : index_(index), delta_(delta) {}
46 __device__ Iterator& operator++() {
50 __device__ bool operator!=(const Iterator& other) const {
53 // Anything past an end iterator (delta_ == 0) is equal.
73 __device__ Iterator begin() const { return Iterator{begin_, delta_}; }
74 __device__ Iterator end() const { return Iterator{end_, 0}; }
  /external/v8/src/base/
adapters.h 20 typedef decltype(static_cast<T*>(nullptr)->rbegin()) Iterator;
25 Iterator begin() const { return t_.rbegin(); }
26 Iterator end() const { return t_.rend(); }
  /system/bt/packet/base/
iterator.h 19 #include <iterator>
27 // Iterator is a custom iterator class for Packets.
28 class Iterator
29 : public std::iterator<std::random_access_iterator_tag, uint8_t> {
31 Iterator(std::shared_ptr<const Packet> packet, size_t i);
32 Iterator(const Iterator& itr);
36 Iterator operator+(size_t offset);
37 Iterator& operator+=(size_t offset)
    [all...]
  /frameworks/av/include/drm/
DrmInfo.h 52 * Iterator for key
76 * Iterator
78 class Iterator {
82 explicit Iterator(const DrmInfo* drmInfo)
86 Iterator(const Iterator& iterator);
87 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmMetadata.h 33 * Iterator for key
55 * Iterator for constraints
57 class Iterator {
60 explicit Iterator(DrmMetadata* drmMetadata) : mDrmMetadata(drmMetadata), mIndex(0) {}
63 Iterator(const Iterator& iterator);
64 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmConstraints.h 68 * Iterator for key
91 * Iterator for constraints
93 class Iterator {
96 explicit Iterator(DrmConstraints* drmConstraints)
100 Iterator(const Iterator& iterator);
101 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmInfoRequest.h 66 * Iterator for key
90 * Iterator
92 class Iterator {
96 explicit Iterator(const DrmInfoRequest* drmInfoRequest)
100 Iterator(const Iterator& iterator);
101 Iterator& operator=(const Iterator& iterator);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Dispatcher/
Dependency.c 174 UINT8 *Iterator;
176 Iterator = DriverEntry->Depex;
177 if (*Iterator == EFI_DEP_SOR) {
183 if (*Iterator == EFI_DEP_BEFORE) {
185 } else if (*Iterator == EFI_DEP_AFTER) {
190 CopyMem (&DriverEntry->BeforeAfterGuid, Iterator + 1, sizeof (EFI_GUID));
217 UINT8 *Iterator;
257 Iterator = DriverEntry->Depex;
264 if (((UINTN)Iterator - (UINTN)DriverEntry->Depex) >= DriverEntry->DepexSize) {
272 switch (*Iterator) {
    [all...]
  /external/tensorflow/tensorflow/contrib/eager/python/
datasets.py 48 class Iterator(object):
49 """An iterator producing tf.Tensor objects from a tf.data.Dataset."""
52 """Creates a new iterator over the given dataset.
57 for x in Iterator(dataset):
61 Tensors produced will be placed on the device on which this iterator object
86 self._resource = gen_dataset_ops.iterator(
108 remote_iterator = iterator_ops.Iterator.from_string_handle(
149 # boost by invoking the iterator synchronously.
169 """Returns the class of each component of an element of this iterator.
181 """Returns the shape of each component of an element of this iterator
    [all...]

Completed in 1253 milliseconds

1 2 3 4 5 6 7 8 91011>>