/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-param-util.h | 37 #include <iterator> 73 // Used only for the purposes of iterator comparison 76 // Advances iterator to point to the next element 78 // for not calling Advance() on an iterator equal to 81 // Clones the iterator object. Used for implementing copy semantics 84 // Dereferences the current iterator and provides (read-only) access 86 // Current() on an iterator equal to BaseGenerator()->End(). 89 // Determines whether the given iterator and other point to the same 97 // and implements the const forward iterator concept. 161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-param-util.h | 37 #include <iterator> 72 // Used only for the purposes of iterator comparison 75 // Advances iterator to point to the next element 77 // for not calling Advance() on an iterator equal to 80 // Clones the iterator object. Used for implementing copy semantics 83 // Dereferences the current iterator and provides (read-only) access 85 // Current() on an iterator equal to BaseGenerator()->End(). 88 // Determines whether the given iterator and other point to the same 96 // and implements the const forward iterator concept. 160 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/ |
Yaml.java | 25 import java.util.Iterator; 181 return dumpAll(list.iterator()); 201 * Iterator with Objects 204 public String dumpAll(Iterator<? extends Object> data) { 221 dumpAll(list.iterator(), output, null); 228 * Iterator with Objects 232 public void dumpAll(Iterator<? extends Object> data, Writer output) { 236 private void dumpAll(Iterator<? extends Object> data, Writer output, Tag rootTag) { 299 dumpAll(list.iterator(), buffer, rootTag); 455 * objects. The documents are parsed only when the iterator is invoked 482 private Iterator<Object> iterator; field in class:Yaml.YamlIterable 488 public Iterator<Object> iterator() { method in class:Yaml.YamlIterable 565 private Iterator<Node> iterator; field in class:Yaml.NodeIterable 571 public Iterator<Node> iterator() { method in class:Yaml.NodeIterable 645 private Iterator<Event> iterator; field in class:Yaml.EventIterable 651 public Iterator<Event> iterator() { method in class:Yaml.EventIterable [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
gtest-param-util.h | 37 #include <iterator> 73 // Used only for the purposes of iterator comparison 76 // Advances iterator to point to the next element 78 // for not calling Advance() on an iterator equal to 81 // Clones the iterator object. Used for implementing copy semantics 84 // Dereferences the current iterator and provides (read-only) access 86 // Current() on an iterator equal to BaseGenerator()->End(). 89 // Determines whether the given iterator and other point to the same 97 // and implements the const forward iterator concept. 161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator [all...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-param-util.h | 37 #include <iterator> 73 // Used only for the purposes of iterator comparison 76 // Advances iterator to point to the next element 78 // for not calling Advance() on an iterator equal to 81 // Clones the iterator object. Used for implementing copy semantics 84 // Dereferences the current iterator and provides (read-only) access 86 // Current() on an iterator equal to BaseGenerator()->End(). 89 // Determines whether the given iterator and other point to the same 97 // and implements the const forward iterator concept. 161 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Iterables.java | 33 import java.util.Iterator; 45 * {@link Iterator}-based method in the {@link Iterators} class. 93 public Iterator<T> iterator() { method in class:Iterables.UnmodifiableIterable 94 return Iterators.unmodifiableIterator(iterable.iterator()); 110 : Iterators.size(iterable.iterator()); 122 return Iterators.contains(iterable.iterator(), element); 140 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove); 158 : Iterators.retainAll(removeFrom.iterator(), elementsToRetain); 180 return Iterators.removeIf(removeFrom.iterator(), predicate) 239 Iterator<T> iterator = removeFrom.iterator(); local [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/ |
iterator_facade.hpp | 10 #include <boost/iterator.hpp> 11 #include <boost/iterator/interoperable.hpp> 12 #include <boost/iterator/iterator_traits.hpp> 14 #include <boost/iterator/detail/facade_iterator_category.hpp> 15 #include <boost/iterator/detail/enable_if.hpp> 37 #include <boost/iterator/detail/config_def.hpp> // this goes last 123 // std::iterator. It is possible to implement a standard 128 iterator<iterator_category, value_type, Difference, pointer, Reference> 139 template <class Iterator> 142 typedef typename iterator_value<Iterator>::type value_type [all...] |
/libcore/ojluni/src/main/java/java/util/ |
AbstractMap.java | 37 * not support the <tt>add</tt> or <tt>remove</tt> methods, and its iterator 42 * <tt>UnsupportedOperationException</tt>), and the iterator returned by 43 * <tt>entrySet().iterator()</tt> must additionally implement its 109 Iterator<Entry<K,V>> i = entrySet().iterator(); 140 Iterator<Map.Entry<K,V>> i = entrySet().iterator(); 171 Iterator<Entry<K,V>> i = entrySet().iterator(); 212 * from the collection (and the backing map) with the iterator' [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Iterables.java | 31 import java.util.Iterator; 43 * {@link Iterator}-based method in the {@link Iterators} class. 91 public Iterator<T> iterator() { method in class:Iterables.UnmodifiableIterable 92 return Iterators.unmodifiableIterator(iterable.iterator()); 108 : Iterators.size(iterable.iterator()); 120 return Iterators.contains(iterable.iterator(), element); 138 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove); 156 : Iterators.retainAll(removeFrom.iterator(), elementsToRetain); 178 return Iterators.removeIf(removeFrom.iterator(), predicate) 237 Iterator<T> iterator = removeFrom.iterator(); local [all...] |
TreeTraverser.java | 21 import java.util.Iterator; 65 public UnmodifiableIterator<T> iterator() { 77 private final LinkedList<Iterator<T>> stack; 91 Iterator<T> itr = stack.getLast(); // throws NSEE if empty 96 Iterator<T> childItr = children(result).iterator(); 115 public UnmodifiableIterator<T> iterator() { 128 final Iterator<T> childIterator; 130 PostOrderNode(T root, Iterator<T> childIterator) { 160 return new PostOrderNode<T>(t, children(t).iterator()); [all...] |
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/ |
TestFilterTest.java | 24 import java.util.Iterator; 62 Iterator<TestIdentifier> iter = filteredList.iterator(); 74 assertEquals(TEST3, filteredList.iterator().next()); 84 Iterator<TestIdentifier> iter = filteredList.iterator(); 96 Iterator<TestIdentifier> iter = filteredList.iterator(); 107 assertEquals(TEST3, filteredList.iterator().next()); 118 Iterator<TestIdentifier> iter = filteredList.iterator() [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
AbstractRealVector.java | 20 import java.util.Iterator; 97 Iterator<Entry> it = sparseIterator(); 112 Iterator<Entry> it = sparseIterator(); 124 Iterator<Entry> it = sparseIterator(); 140 Iterator<Entry> it = sparseIterator(); 178 Iterator<Entry> it = sparseIterator(); 200 Iterator<Entry> it = iterator(); 212 Iterator<Entry> it = sparseIterator(); 224 Iterator<Entry> it = sparseIterator() 303 Iterator<Entry> iterator = iterator(); local 329 Iterator<Entry> iterator = iterator(); local 797 public Iterator<Entry> iterator() { method in class:AbstractRealVector [all...] |
/external/deqp/framework/delibs/decpp/ |
deRandom.hpp | 29 #include <iterator> // std::distance() 67 template <class Iterator> 68 void shuffle (Iterator first, Iterator last); 165 template <class Iterator> 166 void Random::shuffle (Iterator first, Iterator last)
|
/external/nist-sip/java/gov/nist/core/ |
DuplicateNameValueList.java | 28 import java.util.Iterator; 75 Iterator<NameValue> iterator = nameValueMap.values().iterator(); local 76 if (iterator.hasNext()) { 78 Object obj = iterator.next(); 85 if (iterator.hasNext()) 134 Iterator<String> li = this.nameValueMap.keySet().iterator(); 191 Iterator<NameValue> it = this.nameValueMap.values().iterator() 203 public Iterator<NameValue> iterator() { method in class:DuplicateNameValueList [all...] |
/cts/tools/cts-native-scanner/tests/src/com/android/cts/nativescanner/ |
TestScannerTest.java | 26 import java.util.Iterator; 40 Iterator it = names.iterator(); 55 Iterator it = names.iterator();
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/ |
FixedTableModel.java | 21 import java.util.Iterator;
33 public Iterator<RectF> getIterator(RectF tableRect, int totalElements) {
53 private class FixedTableModelIterator implements Iterator<RectF> {
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
MyCertificateFactorySpi.java | 34 import java.util.Iterator; 100 Iterator it = engineGetCertPathEncodings(); 130 public Iterator engineGetCertPathEncodings() { 134 return list.iterator();
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerInformationStore.java | 6 import java.util.Iterator; 42 Iterator it = signerInfos.iterator(); 74 return list.size() == 0 ? null : (SignerInformation) list.iterator().next(); 137 public Iterator<SignerInformation> iterator() method in class:SignerInformationStore 139 return getSigners().iterator();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
CertStoreCollectionSpi.java | 14 import java.util.Iterator; 39 Iterator iter = params.getCollection().iterator(); 75 Iterator iter = params.getCollection().iterator();
|
PKIXCRLUtil.java | 10 import java.util.Iterator; 40 for (Iterator it = initialSet.iterator(); it.hasNext();) 82 Iterator iter = crlStores.iterator();
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
IndentingAppendable.java | 20 import java.util.Iterator; 43 Iterator<CharSequence> lines = lines(csq, start, end); 72 private static Iterator<CharSequence> lines(
|
/external/guava/guava/src/com/google/common/base/ |
Optional.java | 25 import java.util.Iterator; 221 public Iterator<T> iterator() { 223 private final Iterator<? extends Optional<? extends T>> iterator = 224 checkNotNull(optionals.iterator()); 228 while (iterator.hasNext()) { 229 Optional<? extends T> optional = iterator.next();
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
UnmodifiableData.java | 21 import java.util.Iterator; 67 UnmodifiableIterator(Iterator<? extends Data> iterator) { 68 super(iterator); 80 protected Iterator<DelegatedData> newChildIterator() { 81 return new UnmodifiableIterator(getDelegate().getChildren().iterator());
|
/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
construct_iter_iter.pass.cpp | 22 template <class C, class Iterator> 24 test(Iterator first, Iterator last)
|
construct_iter_iter_alloc.pass.cpp | 23 template <class C, class Iterator, class A> 25 test(Iterator first, Iterator last, const A& a)
|