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

1 2 3 4 5 6 7 891011>>

  /prebuilts/clang/host/linux-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...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.9/
printers.py 41 Iterator = object
49 class Iterator:
57 <http://pythonhosted.org/six/#six.Iterator>
134 class _iterator(Iterator):
168 "Print std::list::iterator"
182 class _iterator(Iterator):
214 "Print __gnu_cxx::slist::iterator"
227 class _iterator(Iterator):
301 "Print std::vector::iterator"
312 class _iterator(Iterator)
    [all...]
  /prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.9/
printers.py 41 Iterator = object
49 class Iterator:
57 <http://pythonhosted.org/six/#six.Iterator>
134 class _iterator(Iterator):
168 "Print std::list::iterator"
182 class _iterator(Iterator):
214 "Print __gnu_cxx::slist::iterator"
227 class _iterator(Iterator):
301 "Print std::vector::iterator"
312 class _iterator(Iterator)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/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...]
  /system/core/libutils/include/utils/
LruCache.h 106 typename LruCacheSet::iterator findByKey(const TKey& key) {
108 typename LruCacheSet::iterator result = mSet->find(&entryForSearch);
124 class Iterator {
126 Iterator(const LruCache<TKey, TValue>& cache):
156 typename LruCacheSet::iterator mIterator;
  /external/googletest/googletest/include/gtest/internal/
gtest-param-util.h 39 #include <iterator>
97 // Used only for the purposes of iterator comparison
100 // Advances iterator to point to the next element
102 // for not calling Advance() on an iterator equal to
105 // Clones the iterator object. Used for implementing copy semantics
108 // Dereferences the current iterator and provides (read-only) access
110 // Current() on an iterator equal to BaseGenerator()->End().
113 // Determines whether the given iterator and other point to the same
121 // and implements the const forward iterator concept.
185 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-param-util.h 39 #include <iterator>
97 // Used only for the purposes of iterator comparison
100 // Advances iterator to point to the next element
102 // for not calling Advance() on an iterator equal to
105 // Clones the iterator object. Used for implementing copy semantics
108 // Dereferences the current iterator and provides (read-only) access
110 // Current() on an iterator equal to BaseGenerator()->End().
113 // Determines whether the given iterator and other point to the same
121 // and implements the const forward iterator concept.
185 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_variabletext.cpp 86 CPDF_VariableText::Iterator::Iterator(CPDF_VariableText* pVT)
89 CPDF_VariableText::Iterator::~Iterator() {}
91 void CPDF_VariableText::Iterator::SetAt(int32_t nWordIndex) {
95 void CPDF_VariableText::Iterator::SetAt(const CPVT_WordPlace& place) {
100 bool CPDF_VariableText::Iterator::NextWord() {
108 bool CPDF_VariableText::Iterator::PrevWord() {
116 bool CPDF_VariableText::Iterator::NextLine() {
134 bool CPDF_VariableText::Iterator::GetWord(CPVT_Word& word) const
    [all...]
  /external/pdfium/xfa/fde/
cfde_texteditengine.cpp 896 // Make sure the end iterator is pointing to our text pieces.
988 auto iter = pdfium::MakeUnique<CFDE_TextEditEngine::Iterator>(this);
1119 CFDE_TextEditEngine::Iterator iter(this);
1127 CFDE_TextEditEngine::Iterator::Iterator(const CFDE_TextEditEngine* engine)
1130 CFDE_TextEditEngine::Iterator::~Iterator() {}
1132 void CFDE_TextEditEngine::Iterator::Next(bool bPrev) {
1146 wchar_t CFDE_TextEditEngine::Iterator::GetChar() const {
1150 void CFDE_TextEditEngine::Iterator::SetAt(size_t nIndex)
    [all...]
cfde_texteditengine.h 41 class Iterator {
43 explicit Iterator(const CFDE_TextEditEngine* engine);
44 ~Iterator();
  /external/v8/testing/gtest/include/gtest/internal/
gtest-param-util.h 39 #include <iterator>
97 // Used only for the purposes of iterator comparison
100 // Advances iterator to point to the next element
102 // for not calling Advance() on an iterator equal to
105 // Clones the iterator object. Used for implementing copy semantics
108 // Dereferences the current iterator and provides (read-only) access
110 // Current() on an iterator equal to BaseGenerator()->End().
113 // Determines whether the given iterator and other point to the same
121 // and implements the const forward iterator concept.
185 typedef ParamIterator<T> iterator; typedef in class:testing::internal::ParamGenerator
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
73 class Iterator(Iterable):
77 'Return the next item from the iterator. When exhausted, raise StopIteration'
85 if cls is Iterator:
395 'D.iterkeys() -> an iterator over the keys of D'
399 'D.itervalues() -> an iterator over the values of D'
404 'D.iteritems() -> an iterator over the (key, value) items of D'
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
73 class Iterator(Iterable):
84 if cls is Iterator:
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Dispatcher.c 733 UINT8 *Iterator;
735 Iterator = DriverEntry->Depex;
738 if (*Iterator == EFI_DEP_BEFORE) {
740 } else if (*Iterator == EFI_DEP_AFTER) {
745 CopyMem (&DriverEntry->BeforeAfterGuid, Iterator + 1, sizeof (EFI_GUID));
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
OpenIntToDoubleHashMap.java 34 * {@link #iterator()} are fail-fast: they throw a
234 * Get an iterator over map elements.
238 * @return iterator over the map elements
240 public Iterator iterator() { method in class:OpenIntToDoubleHashMap
241 return new Iterator();
483 /** Iterator class for the map. */
484 public class Iterator {
498 private Iterator() {
556 * Advance iterator one step further
    [all...]
OpenIntToFieldHashMap.java 36 * {@link #iterator()} are fail-fast: they throw a
246 * Get an iterator over map elements.
250 * @return iterator over the map elements
252 public Iterator iterator() { method in class:OpenIntToFieldHashMap
253 return new Iterator();
495 /** Iterator class for the map. */
496 public class Iterator {
510 private Iterator() {
568 * Advance iterator one step further
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcUniformBlockCase.hpp 175 typedef std::vector<StructMember>::iterator Iterator;
190 inline Iterator begin(void)
198 inline Iterator end(void)
241 typedef std::vector<Uniform>::iterator Iterator;
284 inline Iterator begin(void)
292 inline Iterator end(void)
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Edits.java 225 public static final class Iterator {
241 private Iterator(char[] a, int len, boolean oc, boolean crs) {
312 // Fine-grained iterator:
322 // Fine-grained iterator: Continue a sequence of compressed changes.
404 // Fine-grained iterator:
415 // Fine-grained iterator: Continue a sequence of compressed changes.
506 * <p>The iterator state before this search logically does not matter.
509 * <p>The iterator state after this search is undefined
527 * <p>The iterator state before this search logically does not matter.
530 * <p>The iterator state after this search is undefine
    [all...]
  /external/javassist/src/main/javassist/bytecode/
Descriptor.java 793 * An Iterator over a descriptor.
795 public static class Iterator {
801 * Constructs an iterator.
805 public Iterator(String s) {
  /external/python/cpython2/Lib/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
73 class Iterator(Iterable):
77 'Return the next item from the iterator. When exhausted, raise StopIteration'
85 if cls is Iterator:
395 'D.iterkeys() -> an iterator over the keys of D'
399 'D.itervalues() -> an iterator over the values of D'
404 'D.iteritems() -> an iterator over the (key, value) items of D'
  /external/sfntly/cpp/src/sfntly/table/core/
name_table.cc 327 NameEntryBuilderMap::iterator position = name_entry_map_.find(probe);
353 for (NameEntryBuilderMap::iterator b = name_entry_map_.begin(),
382 for (NameEntryBuilderMap::iterator b = name_entry_map_.begin(),
417 name_iter.Attach(table->Iterator());
531 name_entry_iter.Attach(Iterator(&filter));
539 CALLER_ATTACH NameTable::NameEntryIterator* NameTable::Iterator() {
545 NameTable::NameEntryIterator* NameTable::Iterator(NameEntryFilter* filter) {
  /external/tensorflow/tensorflow/core/framework/
types.h 133 class Iterator {
138 Iterator(const DataTypeSet& set, uint32 pos) : set_(set), pos_(pos) {
142 Iterator& operator++() {
154 bool operator==(const Iterator& other) const { return pos_ == other.pos_; }
155 bool operator!=(const Iterator& other) const { return !(*this == other); }
156 size_t operator-(const Iterator& other) const {
189 Iterator begin() const {
193 return Iterator(*this, ctz_uint32(mask_));
196 return Iterator(*this, 0);
199 Iterator end() const
    [all...]
  /external/tensorflow/tensorflow/core/kernels/data/
tensor_queue_dataset_op.cc 86 return std::unique_ptr<IteratorBase>(new Iterator(
151 class Iterator
154 explicit Iterator(const Params& params)
162 ~Iterator() override { queue_->Unref(); }
245 // members of Iterator from within TensorQueue.
306 // iterator request has a non-empty or unused queue_.
348 Status Save(Iterator* iter, IteratorStateWriter* writer) {
369 Status Restore(Iterator* iter, IteratorContext* ctx,
588 PrependFromQueueAndPaddedBatchDataset::Iterator::TensorQueueInserter;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
73 class Iterator(Iterable):
77 'Return the next item from the iterator. When exhausted, raise StopIteration'
85 if cls is Iterator:
376 'D.iterkeys() -> an iterator over the keys of D'
380 'D.itervalues() -> an iterator over the values of D'
385 'D.iteritems() -> an iterator over the (key, value) items of D'
  /prebuilts/gdb/linux-x86/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
73 class Iterator(Iterable):
77 'Return the next item from the iterator. When exhausted, raise StopIteration'
85 if cls is Iterator:
376 'D.iterkeys() -> an iterator over the keys of D'
380 'D.itervalues() -> an iterator over the values of D'
385 'D.iteritems() -> an iterator over the (key, value) items of D'

Completed in 1138 milliseconds

1 2 3 4 5 6 7 891011>>