Searched defs:Iterator (Results 1 - 25 of 66) sorted by relevance

123

/external/sfntly/cpp/src/sfntly/port/
H A Djava_iterator.h23 // This is a forward read-only iterator that represents java.util.Iterator<E>
28 class Iterator : public virtual RefCount { class in namespace:sfntly
30 virtual ~Iterator() {}
34 Iterator() {} function in class:sfntly::Iterator
35 NO_COPY_AND_ASSIGN(Iterator);
40 class PODIterator : public Iterator<ReturnType, ContainerBase>,
67 class RefIterator : public Iterator<ReturnType, ContainerBase>,
/external/icu/icu4c/source/common/
H A Dbytestrieiterator.cpp23 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, function in class:BytesTrie::Iterator
35 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway
45 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, function in class:BytesTrie::Iterator
76 BytesTrie::Iterator::~Iterator() {
81 BytesTrie::Iterator &
82 BytesTrie::Iterator::reset() {
97 BytesTrie::Iterator
[all...]
H A Ducharstrieiterator.cpp22 UCharsTrie::Iterator::Iterator(const UChar *trieUChars, int32_t maxStringLength, function in class:UCharsTrie::Iterator
35 // Unlike UCharsTrie itself, its Iterator performs memory allocations anyway
44 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength, function in class:UCharsTrie::Iterator
75 UCharsTrie::Iterator::~Iterator() {
79 UCharsTrie::Iterator &
80 UCharsTrie::Iterator::reset() {
96 UCharsTrie::Iterator
[all...]
/external/v8/src/compiler/
H A Dgeneric-algorithm-inl.h23 typedef typename N::Inputs::iterator Iterator; typedef in class:v8::internal::compiler::NodeInputIterationTraits
25 static Iterator begin(Node* node) { return node->inputs().begin(); }
26 static Iterator end(Node* node) { return node->inputs().end(); }
28 static Node* to(Iterator iterator) { return *iterator; }
29 static Node* from(Iterator iterator) { return iterator.edge().from(); }
36 typedef typename N::Uses::iterator Iterator; typedef in class:v8::internal::compiler::NodeUseIterationTraits
38 static Iterator begin(Node* node) { return node->uses().begin(); }
39 static Iterator end(Node* node) { return node->uses().end(); }
41 static Node* to(Iterator iterator) { return *iterator; }
42 static Node* from(Iterator iterato
[all...]
/external/clang/include/clang/AST/
H A DAttrIterator.h49 typedef typename Container::const_iterator Iterator; typedef in class:clang::specific_attr_iterator
58 mutable Iterator Current;
65 void AdvanceToNext(Iterator I) const {
78 explicit specific_attr_iterator(Iterator i) : Current(i) { }
/external/clang/test/SemaCXX/
H A Dwarn-range-loop-analysis.cpp5 struct Iterator { struct
7 Iterator operator++();
8 bool operator!=(const Iterator);
13 typedef Iterator<T> I;
/external/v8/src/
H A Ddata-flow.h20 // Iterator for the elements of this BitVector.
21 class Iterator BASE_EMBEDDED {
23 explicit Iterator(BitVector* target) function in class:v8::internal::BitVector::BASE_EMBEDDED
31 ~Iterator() { }
195 class Iterator BASE_EMBEDDED {
197 Iterator(const GrowableBitVector* target, Zone* zone) function in class:v8::internal::BASE_EMBEDDED::BASE_EMBEDDED
205 BitVector::Iterator it_;
223 for (Iterator it(&other, zone); !it.Done(); it.Advance()) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMultidimensionalCounter.java70 public class Iterator implements java.util.Iterator<Integer> { class in class:MultidimensionalCounter
84 Iterator() { method in class:MultidimensionalCounter.Iterator
194 public Iterator iterator() {
195 return new Iterator();
H A DOpenIntToDoubleHashMap.java240 public Iterator iterator() {
241 return new Iterator();
483 /** Iterator class for the map. */
484 public class Iterator { class in class:OpenIntToDoubleHashMap
498 private Iterator() { method in class:OpenIntToDoubleHashMap.Iterator
H A DOpenIntToFieldHashMap.java252 public Iterator iterator() {
253 return new Iterator();
495 /** Iterator class for the map. */
496 public class Iterator { class in class:OpenIntToFieldHashMap
510 private Iterator() { method in class:OpenIntToFieldHashMap.Iterator
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java4 import java.util.Iterator;
974 * Iterator backed by a specific array.
976 public static class Iterator<T> class in class:Arrays
977 implements java.util.Iterator<T>
991 public Iterator(T[] dataArray) method in class:Arrays.Iterator
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h29 friend class Iterator;
134 typedef IteratorBase<IntrusiveList<Item>, Item> Iterator; typedef in struct:__sanitizer::IntrusiveList
H A Dsanitizer_bitvector.h84 // for (BasicBitVector<>::Iterator it(bv); it.hasNext();) {
88 class Iterator { class in class:__sanitizer::BasicBitVector
90 Iterator() { } function in class:__sanitizer::BasicBitVector::Iterator
91 explicit Iterator(const BasicBitVector &bv) : bv_(bv) {} function in class:__sanitizer::BasicBitVector::Iterator
270 // for (TwoLevelBitVector<>::Iterator it(bv); it.hasNext();) {
274 class Iterator { class in class:__sanitizer::TwoLevelBitVector
276 Iterator() { } function in class:__sanitizer::TwoLevelBitVector::Iterator
277 explicit Iterator(const TwoLevelBitVector &bv) : bv_(bv), i0_(0), i1_(0) { function in class:__sanitizer::TwoLevelBitVector::Iterator
295 it1_ = typename BV::Iterator(bv_.l1_[i0_]);
304 it2_ = typename BV::Iterator(bv
[all...]
H A Dsanitizer_symbolizer.h160 typedef IntrusiveList<SymbolizerTool>::Iterator Iterator; typedef in class:__sanitizer::final
/external/google-breakpad/src/common/
H A Dsimple_string_dictionary.h76 // An Iterator can be used to iterate over all the active entries in a
78 class Iterator { class in class:google_breakpad::NonAllocatingMap
80 explicit Iterator(const NonAllocatingMap& map) function in class:google_breakpad::NonAllocatingMap::Iterator
101 DISALLOW_COPY_AND_ASSIGN(Iterator);
/external/skia/src/gpu/
H A DGrVertices.h132 class Iterator { class in class:GrVertices
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h191 return new Iterator(this, begin_, 0, step_);
194 return new Iterator(this, end_, end_index_, step_);
198 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::RangeGenerator
200 Iterator(const ParamGeneratorInterface<T>* base, T value, int index, function in class:testing::internal::RangeGenerator::Iterator
203 virtual ~Iterator() {}
213 return new Iterator(*this);
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
228 Iterator(const Iterator& other) function in class:testing::internal::RangeGenerator::Iterator
234 void operator=(const Iterator
285 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::ValuesInIteratorRangeGenerator
287 Iterator(const ParamGeneratorInterface<T>* base, function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
325 Iterator(const Iterator& other) function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h191 return new Iterator(this, begin_, 0, step_);
194 return new Iterator(this, end_, end_index_, step_);
198 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::RangeGenerator
200 Iterator(const ParamGeneratorInterface<T>* base, T value, int index, function in class:testing::internal::RangeGenerator::Iterator
203 virtual ~Iterator() {}
213 return new Iterator(*this);
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
228 Iterator(const Iterator& other) function in class:testing::internal::RangeGenerator::Iterator
234 void operator=(const Iterator
285 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::ValuesInIteratorRangeGenerator
287 Iterator(const ParamGeneratorInterface<T>* base, function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
325 Iterator(const Iterator& other) function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h191 return new Iterator(this, begin_, 0, step_);
194 return new Iterator(this, end_, end_index_, step_);
198 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::RangeGenerator
200 Iterator(const ParamGeneratorInterface<T>* base, T value, int index, function in class:testing::internal::RangeGenerator::Iterator
203 virtual ~Iterator() {}
213 return new Iterator(*this);
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
228 Iterator(const Iterator& other) function in class:testing::internal::RangeGenerator::Iterator
234 void operator=(const Iterator
285 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::ValuesInIteratorRangeGenerator
287 Iterator(const ParamGeneratorInterface<T>* base, function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
325 Iterator(const Iterator& other) function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.h87 class Iterator class in namespace:nv50_ir
90 virtual ~Iterator() { };
97 typedef std::auto_ptr<Iterator> IteratorRef;
99 class ManipIterator : public Iterator
144 for (DLList::Iterator (it) = (list)->iterator(); !(it).end(); (it).next())
188 class Iterator : public ManipIterator class in class:nv50_ir::DLList
191 Iterator(Item *head, bool r) : rev(r), pos(r ? head->prev : head->next), function in class:nv50_ir::DLList::Iterator
213 inline void erase(Iterator& pos)
218 Iterator iterator()
220 return Iterator(
[all...]
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h191 return new Iterator(this, begin_, 0, step_);
194 return new Iterator(this, end_, end_index_, step_);
198 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::RangeGenerator
200 Iterator(const ParamGeneratorInterface<T>* base, T value, int index, function in class:testing::internal::RangeGenerator::Iterator
203 virtual ~Iterator() {}
213 return new Iterator(*this);
223 CheckedDowncastToActualType<const Iterator>(&other)->index_;
228 Iterator(const Iterator& other) function in class:testing::internal::RangeGenerator::Iterator
234 void operator=(const Iterator
285 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::ValuesInIteratorRangeGenerator
287 Iterator(const ParamGeneratorInterface<T>* base, function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
325 Iterator(const Iterator& other) function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h190 return new Iterator(this, begin_, 0, step_);
193 return new Iterator(this, end_, end_index_, step_);
197 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::RangeGenerator
199 Iterator(const ParamGeneratorInterface<T>* base, T value, int index, function in class:testing::internal::RangeGenerator::Iterator
202 virtual ~Iterator() {}
212 return new Iterator(*this);
222 CheckedDowncastToActualType<const Iterator>(&other)->index_;
227 Iterator(const Iterator& other) function in class:testing::internal::RangeGenerator::Iterator
233 void operator=(const Iterator
284 class Iterator : public ParamIteratorInterface<T> { class in class:testing::internal::ValuesInIteratorRangeGenerator
286 Iterator(const ParamGeneratorInterface<T>* base, function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
324 Iterator(const Iterator& other) function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBufferedTreeNodeStream.cs537 public virtual IEnumerator<object> Iterator() method in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
/external/deqp/framework/randomshaders/
H A DrsgVariableManager.hpp118 template <typename Item, typename Iterator, class Filter>
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;
179 Iterator m_end;
290 typedef ValueEntryIterator<AnyEntry> Iterator; typedef in class:rsg::AnyEntry
323 typedef ValueEntryIterator<EntryStorageFilter<Storage> > Iterator; typedef in class:rsg::EntryStorageFilter
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h239 * Iterator for all of the (byte sequence, value) pairs in a BytesTrie.
242 class U_COMMON_API Iterator : public UMemory { class in class:BytesTrie
255 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
268 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
274 ~Iterator();
281 Iterator &reset();
509 // Iterator variables.

Completed in 877 milliseconds

123