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

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 537 public virtual IEnumerator<object> Iterator()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 1157 * Iterator backed by a specific array.
1159 public static class Iterator<T>
1160 implements java.util.Iterator<T>
1172 * @param dataArray array backing the iterator.
1174 public Iterator(T[] dataArray)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bitvector.h 84 // for (BasicBitVector<>::Iterator it(bv); it.hasNext();) {
88 class Iterator {
90 Iterator() { }
91 explicit Iterator(const BasicBitVector &bv) : bv_(bv) {}
270 // for (TwoLevelBitVector<>::Iterator it(bv); it.hasNext();) {
274 class Iterator {
276 Iterator() { }
277 explicit Iterator(const TwoLevelBitVector &bv) : bv_(bv), i0_(0), i1_(0) {
295 it1_ = typename BV::Iterator(bv_.l1_[i0_]);
304 it2_ = typename BV::Iterator(bv_.l2_[i0_][i1_])
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkPrograms.hpp 82 class Iterator
88 explicit Iterator (const IteratorImpl& i) : m_impl(i) {}
90 Iterator& operator++ (void) { ++m_impl; return *this; }
96 bool operator== (const Iterator& other) const { return m_impl == other.m_impl; }
97 bool operator!= (const Iterator& other) const { return m_impl != other.m_impl; }
104 Iterator begin (void) const { return Iterator(m_programs.begin()); }
105 Iterator end (void) const { return Iterator(m_programs.end()); }
  /external/deqp/framework/randomshaders/
rsgVariableManager.hpp 36 #include <iterator>
118 template <typename Item, typename Iterator, class Filter>
119 class FilteredIterator : public std::iterator<std::input_iterator_tag, Item>
122 FilteredIterator (Iterator iter, Iterator end, Filter filter)
131 Iterator nextEntry = m_iter;
170 static Iterator findNext (Filter filter, Iterator iter, Iterator end)
178 Iterator m_iter
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Edits.java 218 public static final class Iterator {
234 private Iterator(char[] a, int len, boolean oc, boolean crs) {
304 // Fine-grained iterator:
314 // Fine-grained iterator: Continue a sequence of compressed changes.
396 // Fine-grained iterator:
407 // Fine-grained iterator: Continue a sequence of compressed changes.
498 * <p>The iterator state before this search logically does not matter.
501 * <p>The iterator state after this search is undefined
518 * <p>The iterator state before this search logically does not matter.
521 * <p>The iterator state after this search is undefine
    [all...]
  /external/icu/icu4c/source/common/
edits.cpp 255 Iterator abIter = ab.getFineIterator();
256 Iterator bcIter = bc.getFineIterator();
258 // Copy iterator state into local variables, so that we can modify and subdivide spans.
269 // If the current edit is done, and the iterator has not yet reached the end,
291 // else see if the other iterator is done, too.
397 Edits::Iterator::Iterator(const uint16_t *a, int32_t len, UBool oc, UBool crs) :
403 int32_t Edits::Iterator::readLength(int32_t head) {
422 void Edits::Iterator::updateNextIndexes() {
430 void Edits::Iterator::updatePreviousIndexes()
    [all...]
  /external/icu/icu4c/source/common/unicode/
bytestrie.h 241 * Iterator for all of the (byte sequence, value) pairs in a BytesTrie.
244 class U_COMMON_API Iterator : public UMemory {
249 * @param maxStringLength If 0, the iterator returns full strings/byte sequences.
250 * Otherwise, the iterator returns strings with this maximum length.
257 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
262 * @param maxStringLength If 0, the iterator returns full strings/byte sequences.
263 * Otherwise, the iterator returns strings with this maximum length.
270 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
276 ~Iterator();
279 * Resets this iterator to its initial state
    [all...]
edits.h 143 struct U_COMMON_API Iterator U_FINAL : public UMemory {
145 * Default constructor, empty iterator.
148 Iterator() :
157 Iterator(const Iterator &other) = default;
162 Iterator &operator=(const Iterator &other) = default;
180 * The iterator state before this search logically does not matter.
183 * The iterator state after this search is undefined
203 * The iterator state before this search logically does not matter
    [all...]
ucharstrie.h 255 * Iterator for all of the (string, value) pairs in a UCharsTrie.
258 class U_COMMON_API Iterator : public UMemory {
263 * @param maxStringLength If 0, the iterator returns full strings.
264 * Otherwise, the iterator returns strings with this maximum length.
271 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
276 * @param maxStringLength If 0, the iterator returns full strings.
277 * Otherwise, the iterator returns strings with this maximum length.
284 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
290 ~Iterator();
293 * Resets this iterator to its initial state
    [all...]
  /external/libchrome/base/metrics/
persistent_histogram_allocator.h 81 // Iterator within the allocator for finding sample records.
82 PersistentMemoryAllocator::Iterator record_iterator_;
179 // Iterator used for fetching persistent histograms from an allocator.
181 // See PersistentMemoryAllocator::Iterator for more information.
182 class BASE_EXPORT Iterator {
184 // Constructs an iterator on a given |allocator|, starting at the beginning.
185 // The allocator must live beyond the lifetime of the iterator.
186 explicit Iterator(PersistentHistogramAllocator* allocator);
201 // The iterator used for stepping through objects in persistent memory.
203 PersistentMemoryAllocator::Iterator memory_iter_
    [all...]
persistent_memory_allocator.h 122 // Iterator for going through all iterable memory records in an allocator.
124 // That means that multiple threads can share an iterator and the same
127 // The order of the items returned by an iterator matches the order in which
136 class BASE_EXPORT Iterator {
138 // Constructs an iterator on a given |allocator|, starting at the beginning.
139 // The allocator must live beyond the lifetime of the iterator. This class
142 explicit Iterator(const PersistentMemoryAllocator* allocator);
149 Iterator(const PersistentMemoryAllocator* allocator,
152 // Resets the iterator back to the beginning.
155 // Resets the iterator, resuming from the |starting_after| reference
    [all...]
persistent_sample_map.cc 26 // An iterator for going through a PersistentSampleMap. The logic here is
142 std::unique_ptr<SampleCountIterator> PersistentSampleMap::Iterator() const {
152 PersistentMemoryAllocator::Iterator& iterator,
154 const SampleRecord* record = iterator.GetNextOfObject<SampleRecord>();
159 return iterator.GetAsReference(record);
204 // means that it's in the "logged" iterator. It should have an active
  /external/libchrome/base/
values.h 350 // This class provides an iterator over both keys and values in the
352 class BASE_EXPORT Iterator {
354 explicit Iterator(const DictionaryValue& target);
355 Iterator(const Iterator& other);
356 ~Iterator();
380 using iterator = ListStorage::iterator;
444 // Returns an iterator pointing to the location of the element that
446 iterator Erase(iterator iter, std::unique_ptr<Value>* out_value)
    [all...]
  /external/llvm/include/llvm/ADT/
DenseSet.h 80 class Iterator {
81 typename MapTy::iterator I;
85 typedef typename MapTy::iterator::difference_type difference_type;
91 Iterator(const typename MapTy::iterator &i) : I(i) {}
96 Iterator& operator++() { ++I; return *this; }
97 Iterator operator++(int) { auto T = *this; ++I; return T; }
98 bool operator==(const Iterator& X) const { return I == X.I; }
99 bool operator!=(const Iterator& X) const { return I != X.I; }
124 typedef Iterator iterator typedef in class:llvm::DenseSet
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_variabletext.h 32 class Iterator {
34 explicit Iterator(CPDF_VariableText* pVT);
35 ~Iterator();
73 CPDF_VariableText::Iterator* GetIterator();
213 std::unique_ptr<CPDF_VariableText::Iterator> m_pVTIterator;
  /external/protobuf/src/google/protobuf/
reflection.h 67 typedef typename internal::RefTypeTraits<T>::iterator IteratorType;
81 typedef IteratorType iterator; typedef in class:google::protobuf::RepeatedFieldRef
83 iterator begin() const {
84 return iterator(data_, accessor_, true);
86 iterator end() const {
87 return iterator(data_, accessor_, false);
145 typedef typename Container::const_iterator Iterator;
146 for (Iterator it = container.begin(); it != container.end(); ++it) {
175 typedef typename internal::RefTypeTraits<T>::iterator IteratorType;
203 typedef IteratorType iterator; typedef in class:google::protobuf::RepeatedFieldRef
526 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits
541 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits
557 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits
585 typedef RepeatedFieldRefIterator<T> iterator; typedef in struct:google::protobuf::internal::RefTypeTraits
    [all...]
  /external/skia/include/core/
SkRegion.h 319 class SK_API Iterator {
321 Iterator() : fRgn(nullptr), fDone(true) {}
322 Iterator(const SkRegion&);
325 // reset the iterator, using the new region
352 Iterator fIter;
458 friend class Iterator;
  /external/skqp/include/core/
SkRegion.h 319 class SK_API Iterator {
321 Iterator() : fRgn(nullptr), fDone(true) {}
322 Iterator(const SkRegion&);
325 // reset the iterator, using the new region
352 Iterator fIter;
458 friend class Iterator;
  /external/swiftshader/src/OpenGL/libEGL/
Config.h 100 typedef Set::iterator Iterator;
  /external/tensorflow/tensorflow/core/kernels/data/
group_by_window_dataset_op.cc 124 new Iterator({this, strings::StrCat(prefix, "::GroupByWindow")}));
198 class Iterator : public DatasetIterator<Dataset> {
200 explicit Iterator(const Params& params)
481 // Create an iterator for the dataset that was returned by `f`.
parallel_interleave_dataset_op.cc 116 return std::unique_ptr<IteratorBase>(new Iterator(
164 // will move to `interleave_` when an iterator in `interleave_` is
171 // `input_impl_` is the input iterator that generates arguments for the
172 // flat-map function (`captured_func_`). It is set to an iterator at
173 // Iterator construction, and is fixed until we consume all input elements.
184 class Iterator : public DatasetIterator<Dataset> {
186 explicit Iterator(const Params& params)
191 ~Iterator() override {
239 // iterator.
241 // We have advanced to a new iterator; reset block counts
400 std::unique_ptr<IteratorBase> iterator; local
    [all...]
shuffle_dataset_op.cc 41 // Abstract base dataset that implements a shuffling iterator.
64 class Iterator : public DatasetIterator<ShuffleDatasetBase> {
66 explicit Iterator(const Params& params, int64 seed, int64 seed2)
109 // iteration immediately. (Otherwise, this iterator
166 // Save input iterator if it hasn't been exhausted else write
212 // Restore the input iterator if it wasn't already exhausted.
279 // Reset the generators based on the current iterator seeds.
373 return std::unique_ptr<IteratorBase>(new ShuffleDatasetBase::Iterator(
404 return std::unique_ptr<IteratorBase>(new ShuffleDatasetBase::Iterator(
487 return std::unique_ptr<IteratorBase>(new ShuffleDatasetBase::Iterator(
    [all...]
  /external/v8/src/base/
hashmap.h 463 class Iterator {
465 Iterator& operator++() {
471 bool operator!=(const Iterator& other) { return entry_ != other.entry_; }
474 Iterator(const Base* map, typename Base::Entry* entry)
488 Iterator begin() const { return Iterator(this, this->Start()); }
489 Iterator end() const { return Iterator(this, nullptr); }
490 Iterator find(Key* key, bool insert = false,
493 return Iterator(this, this->LookupOrInsert(key, key->Hash(), allocator))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
DenseSet.h 97 class Iterator {
98 typename MapTy::iterator I;
103 typedef typename MapTy::iterator::difference_type difference_type;
109 Iterator() = default;
110 Iterator(const typename MapTy::iterator &i) : I(i) {}
117 Iterator& operator++() { ++I; return *this; }
118 Iterator operator++(int) { auto T = *this; ++I; return T; }
126 friend class Iterator;
135 ConstIterator(const Iterator &B) : I(B.I) {
150 typedef Iterator iterator; typedef in class:llvm::detail::DenseSetImpl
    [all...]

Completed in 773 milliseconds

1 2 3 4 5 6 78 91011>>