Searched refs:Iterator (Results 1 - 25 of 137) sorted by relevance

123456

/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DIteratorRange.h31 template<typename Iterator>
34 IteratorRange(Iterator begin, Iterator end)
40 Iterator begin() const { return m_begin; }
41 Iterator end() const { return m_end; }
44 Iterator m_begin;
45 Iterator m_end;
48 template<typename Iterator>
49 IteratorRange<Iterator> makeIteratorRange(Iterator
[all...]
H A DIteratorAdaptors.h33 template<typename Predicate, typename Iterator>
36 FilterIterator(Predicate pred, Iterator begin, Iterator end)
55 const typename std::remove_const<decltype(*std::declval<Iterator>())>::type operator*() const
67 Iterator m_iter;
68 Iterator m_end;
71 template<typename Predicate, typename Iterator>
72 inline FilterIterator<Predicate, Iterator> makeFilterIterator(Predicate&& pred, Iterator&& begin, Iterator
[all...]
H A DSegmentedVector.h43 typedef SegmentedVectorIterator<T, SegmentSize, InlineCapacity> Iterator; typedef in class:WTF::SegmentedVectorIterator
51 Iterator& operator++()
69 bool operator==(const Iterator& other) const
74 bool operator!=(const Iterator& other) const
111 typedef SegmentedVectorIterator<T, SegmentSize, InlineCapacity> Iterator; typedef in class:WTF::SegmentedVector
186 Iterator begin()
188 return Iterator(*this, 0, m_size ? 0 : SegmentSize);
191 Iterator end()
193 return Iterator(*this, 0, SegmentSize);
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DForwardCursor.java11 import java.util.Iterator;
68 Iterator<V> iterator();
80 Iterator<V> iterator(LockMode lockMode);
H A DEntityCursor.java11 import java.util.Iterator;
107 * Iterator} that returns the same values that the cursor returns. For
113 * {@code Iterator<Employee>} i = cursor.iterator();
137 * cursor by calling {@link #next()} when {@link Iterator#hasNext} or {@link
138 * Iterator#next} is called. Because of this interaction, to keep things
140 * {@code Iterator} with the use of the {@code EntityCursor} traversal methods
548 Iterator<V> iterator();
560 Iterator<V> iterator(LockMode lockMode);
H A DBasicIterator.java11 import java.util.Iterator;
19 * Implements Iterator for an arbitrary EntityCursor.
23 class BasicIterator<V> implements Iterator<V> {
/macosx-10.10.1/Security-57031.1.35/SecurityTests/regressions/inc/Test/Harness/
H A DIterator.pm1 package Test::Harness::Iterator;
9 Test::Harness::Iterator - Internal Test::Harness Iterator
13 use Test::Harness::Iterator;
14 my $it = Test::Harness::Iterator->new(\*TEST);
15 my $it = Test::Harness::Iterator->new(\@array);
40 bless $self, 'Test::Harness::Iterator::FH';
44 bless $self, 'Test::Harness::Iterator::ARRAY';
55 package Test::Harness::Iterator::FH;
64 package Test::Harness::Iterator
[all...]
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/bin_search_tree_/
H A Dnode_iterators.hpp61 Iterator, \
67 class Iterator,
167 Iterator, \
173 class Iterator,
189 typedef Iterator value_type;
192 typedef Iterator reference;
195 typedef Iterator const_reference;
211 inline Iterator
214 return (Iterator(PB_DS_TREE_CONST_NODE_ITERATOR_CLASS_C_DEC::m_p_nd));
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DIterator.pm3 # Template::Plugin::Iterator
7 # Plugin to create a Template::Iterator from a list of items and optional
21 package Template::Plugin::Iterator;
26 use Template::Iterator;
37 Template::Iterator->new(@_);
46 Template::Plugin::Iterator - Plugin to create iterators (Template::Iterator)
60 The iterator plugin provides a way to create a L<Template::Iterator> object
78 L<Template::Plugin>, L<Template::Iterator>
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DDenseSet.h62 class Iterator { class in class:llvm::DenseSet
72 Iterator(const typename MapTy::iterator &i) : I(i) {} function in class:llvm::DenseSet::Iterator
77 Iterator& operator++() { ++I; return *this; }
78 bool operator==(const Iterator& X) const { return I == X.I; }
79 bool operator!=(const Iterator& X) const { return I != X.I; }
102 typedef Iterator iterator;
105 iterator begin() { return Iterator(TheMap.begin()); }
106 iterator end() { return Iterator(TheMap.end()); }
111 iterator find(const ValueT &V) { return Iterator(TheMap.find(V)); }
112 void erase(Iterator
[all...]
H A DPriorityQueue.h35 template<class Iterator>
36 PriorityQueue(Iterator begin, Iterator end,
/macosx-10.10.1/ICU-531.30/icuSources/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...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dheadermap.h64 typedef Map::const_iterator Iterator; typedef in class:Security::HeaderMap
65 Iterator begin() { return mMap.begin(); }
66 Iterator end() { return mMap.end(); }
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dheadermap.h64 typedef Map::const_iterator Iterator; typedef in class:Security::HeaderMap
65 Iterator begin() { return mMap.begin(); }
66 Iterator end() { return mMap.end(); }
/macosx-10.10.1/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/pat_trie_/
H A Dnode_iterators.hpp64 Iterator, \
75 Iterator, \
85 class Iterator,
262 class Iterator,
275 typedef Iterator iterator;
293 typedef Iterator value_type;
316 return Iterator(base_type::m_p_nd);
/macosx-10.10.1/llvmCore-3425.0.34/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...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredCollections.java12 import java.util.Iterator;
249 * @return a new {@code Iterator} having the same position as the given
255 public static Iterator iterator(Iterator iter) {
/macosx-10.10.1/swig-12/Lib/ruby/
H A Drubyiterators.swg9 * Users can derive form the Iterator to implemet their
194 struct Iterator : public ConstIterator {
196 typedef Iterator self_type;
199 Iterator(VALUE seq) : ConstIterator(seq)
213 desc = SWIG_TypeQuery("swig::Iterator *");
219 virtual Iterator *dup() const
241 bool operator != (const Iterator& x) const
246 Iterator& operator += (ptrdiff_t n)
251 Iterator& operator -= (ptrdiff_t n)
256 Iterator* operato
[all...]
H A Dstd_set.i35 * Set Iterator class for an iterator with no end() boundaries.
64 Iterator *dup() const
72 * Set Iterator class for a iterator where begin() and end() boundaries
91 virtual Iterator* advance(ptrdiff_t n)
117 Iterator *dup() const
131 inline Iterator*
145 inline Iterator*
166 swig::Iterator::descriptor(),SWIG_POINTER_OWN);
174 swig::Iterator::descriptor(),SWIG_POINTER_OWN);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Deisl.h168 EISL_GetNextManifestSection (ISL_ITERATOR_PTR Iterator);
171 EISL_RecycleManifestSectionEnumerator (ISL_ITERATOR_PTR Iterator);
190 EISL_GetNextAttribute (ISL_ITERATOR_PTR Iterator,
195 EISL_RecycleAttributeEnumerator (ISL_ITERATOR_PTR Iterator);
206 EISL_GetNextSignatureAttribute (ISL_ITERATOR_PTR Iterator,
211 EISL_RecycleSignatureAttributeEnumerator (ISL_ITERATOR_PTR Iterator);
287 EISL_GetNextManifestSectionAttribute (ISL_ITERATOR_PTR Iterator,
292 EISL_RecycleManifestSectionAttributeEnumerator (ISL_ITERATOR_PTR Iterator);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_client/
H A Ddliterators.cpp76 TableBase::Iterator::Iterator(DLAccess *ac, CSSM_HANDLE query, function in class:Security::CssmClient::TableBase::Iterator
83 void TableBase::Iterator::advance(Record *fill)
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_client/lib/
H A Ddliterators.cpp76 TableBase::Iterator::Iterator(DLAccess *ac, CSSM_HANDLE query, function in class:Security::CssmClient::TableBase::Iterator
83 void TableBase::Iterator::advance(Record *fill)
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DIterator.pm3 # Template::Iterator
22 package Template::Iterator;
46 # Template::Iterator object. A reference to the target data (array
259 Template::Iterator - Data iterator used by the FOREACH directive
263 my $iter = Template::Iterator->new(\@data, \%options);
267 The C<Template::Iterator> module defines a generic data iterator for use
280 my $iter = Template::Iterator->new([ 'foo', 'bar', 'baz' ]);
286 my $iter = Template::Iterator->new({
293 my $iter = Template::Iterator->new([
301 my $iter = Template::Iterator
[all...]
/macosx-10.10.1/Security-57031.1.35/securityd/src/
H A Dnotifications.cpp103 typedef ListenerMap::iterator Iterator; typedef
105 pair<Iterator, Iterator> range = listeners.equal_range(port);
112 for (Iterator it = range.first; it != range.second; it++) {

Completed in 432 milliseconds

123456