Searched refs:Iterator (Results 26 - 50 of 1450) sorted by relevance

1234567891011>>

/external/chromium_org/cc/resources/
H A Dprioritized_tile_set.h25 class CC_EXPORT Iterator { class in class:cc::PrioritizedTileSet
27 Iterator(PrioritizedTileSet* set, bool use_priority_ordering);
29 ~Iterator();
33 Iterator& operator++();
50 friend class Iterator;
/external/smali/util/src/main/java/org/jf/util/
H A DAbstractForwardSequentialList.java37 import java.util.Iterator;
43 @Nonnull private Iterator<T> iterator(int index) {
48 Iterator<T> it = iterator();
55 @Override @Nonnull public abstract Iterator<T> iterator();
59 final Iterator<T> initialIterator;
68 @Nullable private Iterator<T> forwardIterator = initialIterator;
71 private Iterator<T> getForwardIterator() {
/external/chromium_org/cc/debug/
H A Dring_buffer.h53 // Iterator has const access to the RingBuffer it got retrieved from.
54 class Iterator { class in class:cc::RingBuffer
61 Iterator& operator++() {
68 Iterator& operator--() {
80 Iterator(const RingBuffer<T, kSize>& buffer, size_t index) function in class:cc::RingBuffer::Iterator
93 // Returns an Iterator pointing to the oldest value in the buffer.
95 // for (RingBuffer<T, kSize>::Iterator it = ring_buffer.Begin(); it; ++it) {}
96 Iterator Begin() const {
98 return Iterator(*this, kSize - current_index_);
99 return Iterator(*thi
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DIItem.java11 import java.util.Iterator;
28 Iterator /* IItem */ getChildren ();
34 Iterator /* IItem */ getChildren (ItemComparator /* IItem */ order);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DIteratorTester.java20 import java.util.Iterator;
23 * A utility for testing an Iterator implementation by comparing its behavior to
26 * {@link Iterator#next}, {@link Iterator#hasNext} and {@link Iterator#remove}
50 * impossible to test an Iterator without changing its state, so the tester
64 AbstractIteratorTester<E, Iterator<E>> {
79 protected final Iterable<Stimulus<E, Iterator<E>>> getStimulusValues() {
H A DMinimalIterable.java21 import java.util.Iterator;
70 private Iterator<E> iterator;
72 private MinimalIterable(Iterator<E> iterator) {
77 public Iterator<E> iterator() {
H A DDerivedTestIteratorGenerator.java19 import java.util.Iterator;
43 public Iterator<E> get() {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DFixedSizeSet.java36 import java.util.Iterator;
45 public Iterator<T> iterator() {
46 return new Iterator<T>() {
H A DParameterIterator.java41 import java.util.Iterator;
45 public class ParameterIterator implements Iterator<MethodParameter> {
46 private final Iterator<? extends CharSequence> parameterTypes;
47 private final Iterator<? extends Set<? extends Annotation>> parameterAnnotations;
48 private final Iterator<String> parameterNames;
52 @Nonnull Iterator<String> parameterNames) {
/external/apache-harmony/security/src/test/api/java.injected/java/security/cert/
H A DmyCertPath.java44 public Iterator getEncodings() {
45 return (Iterator) (new StringTokenizer("ss ss ss ss"));
/external/hamcrest/src/org/hamcrest/internal/
H A DArrayIterator.java4 import java.util.Iterator;
6 public class ArrayIterator implements Iterator<Object> {
/external/chromium_org/third_party/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/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/guava/guava-tests/test/com/google/common/collect/
H A DAbstractLinkedIteratorTest.java29 import java.util.Iterator;
40 protected Iterator<Integer> newTargetIterator() {
49 public Iterator<Integer> iterator() {
59 public Iterator<Integer> iterator() {
60 Iterator<Integer> powersOfTwo = new AbstractLinkedIterator<Integer>(1) {
74 Iterator<Object> empty = newEmpty();
89 Iterator<Object> broken = newBroken();
104 private static Iterator<Integer> newDoubler(int first, final int last) {
113 private static <T> Iterator<T> newEmpty() {
122 private static Iterator<Objec
[all...]
H A DIteratorsTest.java53 import java.util.Iterator;
77 Iterator<String> iterator = Iterators.emptyIterator();
92 Iterator<String> iterator = Iterators.emptyIterator();
97 Iterator<Integer> iterator = Collections.singleton(0).iterator();
102 Iterator<Integer> iterator = asList(1, 2, 3, 4, 5).iterator();
109 Iterator<String> set = asList("a", null, "b").iterator();
114 Iterator<String> set = asList("a", "b").iterator();
119 Iterator<String> set = asList("a", null, "b").iterator();
124 Iterator<String> set = asList("a", "b").iterator();
129 Iterator<Strin
[all...]
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dleveldb_wrapper.h17 class Iterator;
49 class Iterator { class in class:sync_file_system::drive_backend::LevelDBWrapper
51 explicit Iterator(LevelDBWrapper* db);
52 ~Iterator();
68 scoped_ptr<leveldb::Iterator> db_iterator_;
71 DISALLOW_COPY_AND_ASSIGN(Iterator);
83 scoped_ptr<Iterator> NewIterator();
/external/guava/guava/src/com/google/common/collect/
H A DAbstractSortedMultiset.java22 import java.util.Iterator;
70 Iterator<Entry<E>> entryIterator = entryIterator();
76 Iterator<Entry<E>> entryIterator = descendingEntryIterator();
82 Iterator<Entry<E>> entryIterator = entryIterator();
94 Iterator<Entry<E>> entryIterator = descendingEntryIterator();
110 abstract Iterator<Entry<E>> descendingEntryIterator();
112 Iterator<E> descendingIterator() {
132 Iterator<Entry<E>> entryIterator() {
137 public Iterator<E> iterator() {
H A DIterators.java38 import java.util.Iterator;
48 * of type {@link Iterator}. Except as noted, each method has a corresponding
87 private static final Iterator<Object> EMPTY_MODIFIABLE_ITERATOR =
88 new Iterator<Object>() {
103 * Returns the empty {@code Iterator} that throws
106 * {@link Iterator#remove()}.
110 static <T> Iterator<T> emptyModifiableIterator() {
111 return (Iterator<T>) EMPTY_MODIFIABLE_ITERATOR;
116 final Iterator<T> iterator) {
149 public static int size(Iterator<
[all...]
/external/deqp/framework/common/
H A DtcuFormatUtil.hpp173 template <typename Iterator>
177 Iterator begin;
178 Iterator end;
180 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {}
193 template <typename Iterator>
194 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt)
197 for (Iterator cur = fmt.begin; cur != fmt.end; ++cur)
219 template <typename T, typename Iterator = const T*>
223 HexIterator (Iterator ite
[all...]
/external/chromium_org/sandbox/win/src/
H A Dhandle_table.h38 class Iterator;
64 friend class Iterator;
93 class Iterator { class in class:sandbox::HandleTable
95 Iterator(const HandleTable& table, const SYSTEM_HANDLE_INFORMATION* start,
98 Iterator(const Iterator& it);
100 Iterator& operator++() {
106 bool operator==(const Iterator& rhs) const {
110 bool operator!=(const Iterator& rhs) const {
130 Iterator begi
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceClientWalker.h41 typedef HashCountedSet<ResourceClient*>::const_iterator Iterator; typedef
42 Iterator end = set.end();
44 for (Iterator current = set.begin(); current != end; ++current)
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterators.java36 import java.util.Iterator;
46 * of type {@link Iterator}. Except as noted, each method has a corresponding
85 private static final Iterator<Object> EMPTY_MODIFIABLE_ITERATOR =
86 new Iterator<Object>() {
101 * Returns the empty {@code Iterator} that throws
104 * {@link Iterator#remove()}.
108 static <T> Iterator<T> emptyModifiableIterator() {
109 return (Iterator<T>) EMPTY_MODIFIABLE_ITERATOR;
114 final Iterator<T> iterator) {
147 public static int size(Iterator<
[all...]
/external/nist-sip/java/javax/sip/
H A DSipStack.java4 import java.util.Iterator;
26 Iterator getListeningPoints();
28 Iterator getSipProviders();
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiResolver.h38 template <class Iterator> class MidpointState {
52 void startIgnoringSpaces(const Iterator& midpoint)
58 void stopIgnoringSpaces(const Iterator& midpoint)
68 Iterator midpoint(0, renderer, 0);
74 void ensureCharacterGetsLineBox(Iterator& textParagraphSeparator)
76 startIgnoringSpaces(Iterator(0, textParagraphSeparator.object(), textParagraphSeparator.offset() - 1));
77 stopIgnoringSpaces(Iterator(0, textParagraphSeparator.object(), textParagraphSeparator.offset()));
80 void checkMidpoints(Iterator& lBreak)
86 Iterator* midpointsIterator = m_midpoints.data();
87 Iterator
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DDebuggeeRegister.java28 import java.util.Iterator;
83 for (Iterator iter = registered.iterator(); iter.hasNext(); ) {

Completed in 1002 milliseconds

1234567891011>>