/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cordz_sample_token.cc | 25 CordzSampleToken::Iterator& CordzSampleToken::Iterator::operator++() { in operator ++() 32 CordzSampleToken::Iterator CordzSampleToken::Iterator::operator++(int) { in operator ++() 33 Iterator it(*this); in operator ++() 38 bool operator==(const CordzSampleToken::Iterator& lhs, in operator ==() 39 const CordzSampleToken::Iterator& rhs) { in operator ==() 44 bool operator!=(const CordzSampleToken::Iterator& lhs, in operator !=() 45 const CordzSampleToken::Iterator& rhs) { in operator !=() 49 CordzSampleToken::Iterator 59 CordzSampleToken::Iterator::Iterator(const CordzSampleToken* token) Iterator() function in absl::cord_internal::CordzSampleToken::Iterator [all...] |
H A D | cordz_sample_token.h | 60 class Iterator { class in absl::cord_internal::CordzSampleToken 68 Iterator() = default; 70 Iterator& operator++(); 71 Iterator operator++(int); 72 friend bool operator==(const Iterator& lhs, const Iterator& rhs); 73 friend bool operator!=(const Iterator& lhs, const Iterator& rhs); 79 explicit Iterator(const CordzSampleToken* token); 89 Iterator begi [all...] |
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | BitSetIterator.h | 41 class Iterator final { 43 Iterator(const std::bitset<N>& bits); 44 Iterator& operator++(); 46 bool operator==(const Iterator& other) const; 47 bool operator!=(const Iterator& other) const; 64 Iterator begin() const { in begin() 65 return Iterator(mBits); in begin() 67 Iterator end() const { in end() 68 return Iterator(std::bitset<N>(0)); in end() 90 BitSetIterator<N, T>::Iterator function in BitSetIterator::Iterator [all...] |
H A D | SerialStorage.h | 36 class Iterator { class in SerialStorage 38 Iterator(StorageIterator start); 39 Iterator& operator++(); 41 bool operator==(const Iterator& other) const; 42 bool operator!=(const Iterator& other) const; 71 Iterator begin() const; 72 Iterator end() const; 200 typename SerialStorage<Derived>::Iterator SerialStorage<Derived>::BeginEnd::begin() const { in begin() 205 typename SerialStorage<Derived>::Iterator SerialStorage<Derived>::BeginEnd::end() const { in end() 209 // SerialStorage::Iterator 212 SerialStorage<Derived>::Iterator::Iterator(typename SerialStorage<Derived>::StorageIterator start) Iterator() function in SerialStorage::Iterator [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuFormatUtil.hpp | 178 template <typename Iterator> 182 Iterator begin; 183 Iterator end; 185 Array (const Iterator& begin_, const Iterator& end_) : begin(begin_), end(end_) {} in Array() 198 template <typename Iterator> 199 std::ostream& operator<< (std::ostream& str, const Array<Iterator>& fmt) in operator <<() 202 for (Iterator cur = fmt.begin; cur != fmt.end; ++cur) in operator <<() 224 template <typename T, typename Iterator = const T*> 228 HexIterator (Iterator ite [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | EnumMaskIterator.h | 36 class Iterator final { 38 Iterator(const typename BitSetIterator<N, U>::Iterator& iter) : mIter(iter) { 41 Iterator& operator++() { 46 bool operator==(const Iterator& other) const { 50 bool operator!=(const Iterator& other) const { 60 typename BitSetIterator<N, U>::Iterator mIter; 63 Iterator begin() const { 64 return Iterator(mBitSetIterator.begin()); 67 Iterator en [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | ResourceMap.h | 52 class Iterator final 55 bool operator==(const Iterator &other) const; 56 bool operator!=(const Iterator &other) const; 57 Iterator &operator++(); 63 Iterator(const ResourceMap &origin, 77 Iterator begin() const; 78 Iterator end() const; 79 Iterator find(IDType handle) const; 81 Iterator beginWithNull() const; 82 Iterator endWithNul 277 ResourceMap<ResourceType, IDType>::Iterator::Iterator( Iterator() function in gl::ResourceMap::Iterator [all...] |
/third_party/icu/icu4c/source/common/unicode/ |
H A D | edits.h | 36 * {@link Edits::Iterator} can be used for queries. 38 * There are four flavors of Edits::Iterator: 68 * `Edits::Iterator::next()` methods are called. They are identical to the non-change iterators when 69 * their `Edits::Iterator::findSourceIndex()` or `Edits::Iterator::findDestinationIndex()` 203 struct U_COMMON_API Iterator U_FINAL : public UMemory { 208 Iterator() : in Iterator() function 217 Iterator(const Iterator &other) = default; 222 Iterator [all...] |
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | edits.h | 36 * {@link Edits::Iterator} can be used for queries. 38 * There are four flavors of Edits::Iterator: 68 * `Edits::Iterator::next()` methods are called. They are identical to the non-change iterators when 69 * their `Edits::Iterator::findSourceIndex()` or `Edits::Iterator::findDestinationIndex()` 203 struct U_COMMON_API Iterator final : public UMemory { 208 Iterator() : in Iterator() function 217 Iterator(const Iterator &other) = default; 222 Iterator [all...] |
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | edits.h | 36 * {@link Edits::Iterator} can be used for queries. 38 * There are four flavors of Edits::Iterator: 68 * `Edits::Iterator::next()` methods are called. They are identical to the non-change iterators when 69 * their `Edits::Iterator::findSourceIndex()` or `Edits::Iterator::findDestinationIndex()` 203 struct U_COMMON_API Iterator U_FINAL : public UMemory { 208 Iterator() : in Iterator() function 217 Iterator(const Iterator &other) = default; 222 Iterator [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | scope-info-inl.h | 43 class Iterator { class in v8::internal::ScopeInfo::LocalNamesRange 45 Iterator(const LocalNamesRange* range, InternalIndex index) in Iterator() function in v8::internal::ScopeInfo::LocalNamesRange::Iterator 51 Iterator& operator++() { in operator ++() 59 friend bool operator==(const Iterator& a, const Iterator& b) { in operator ==() 63 friend bool operator!=(const Iterator& a, const Iterator& b) { in operator !=() 81 const Iterator* operator*() const { return this; } in operator *() 124 inline Iterator begin() const { return Iterator(thi [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineInstrBundleIterator.h | 53 template <class Iterator> static Iterator getBundleBegin(Iterator I) { in getBundleBegin() 61 template <class Iterator> static Iterator getBundleFinal(Iterator I) { in getBundleFinal() 69 template <class Iterator> static void increment(Iterator &I) { in increment() 74 template <class Iterator> static void decrement(Iterator [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/ |
H A D | CollectionUtilities.java | 15 import java.util.Iterator; 64 for (Iterator it = collection.iterator(); it.hasNext();) { in join() 99 public static <T, U extends Collection<T>> U addAll(Iterator<T> source, U target) { in addAll() 111 public static int size(Iterator source) { in size() 139 for (Iterator it = itemsToRemove.iterator(); it.hasNext();) { in removeAll() 154 Iterator<T> it = c.iterator(); in getFirst() 169 Iterator<T> it = c.iterator(); in getBest() 233 for (Iterator<T> it = c.iterator(); it.hasNext();) { in removeAll() 249 for (Iterator<T> it = c.iterator(); it.hasNext();) { in retainAll() 272 Iterator a in containsSome() [all...] |
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
H A D | CollectionUtilities.java | 14 import java.util.Iterator; 61 for (Iterator it = collection.iterator(); it.hasNext();) { in join() 96 public static <T, U extends Collection<T>> U addAll(Iterator<T> source, U target) { in addAll() 108 public static int size(Iterator source) { in size() 136 for (Iterator it = itemsToRemove.iterator(); it.hasNext();) { in removeAll() 151 Iterator<T> it = c.iterator(); in getFirst() 166 Iterator<T> it = c.iterator(); in getBest() 230 for (Iterator<T> it = c.iterator(); it.hasNext();) { in removeAll() 246 for (Iterator<T> it = c.iterator(); it.hasNext();) { in retainAll() 269 Iterator a in containsSome() [all...] |
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | string-to-double.cc | 64 template <class Iterator, class Converter> 65 static inline bool ConsumeSubStringImpl(Iterator* current, in ConsumeSubStringImpl() 66 Iterator end, in ConsumeSubStringImpl() 82 template <class Iterator> 83 static bool ConsumeSubString(Iterator* current, in ConsumeSubString() 84 Iterator end, in ConsumeSubString() 138 template <class Iterator> 139 static inline bool AdvanceToNonspace(Iterator* current, Iterator end) { in AdvanceToNonspace() 189 template<class Iterator> [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-string-to-double.cpp | 85 template <class Iterator, class Converter> 86 static inline bool ConsumeSubStringImpl(Iterator* current, in ConsumeSubStringImpl() 87 Iterator end, in ConsumeSubStringImpl() 103 template <class Iterator> 104 static bool ConsumeSubString(Iterator* current, in ConsumeSubString() 105 Iterator end, in ConsumeSubString() 159 template <class Iterator> 160 static inline bool AdvanceToNonspace(Iterator* current, Iterator end) { in AdvanceToNonspace() 210 template<class Iterator> [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-string-to-double.cpp | 85 template <class Iterator, class Converter> 86 static inline bool ConsumeSubStringImpl(Iterator* current, in ConsumeSubStringImpl() 87 Iterator end, in ConsumeSubStringImpl() 103 template <class Iterator> 104 static bool ConsumeSubString(Iterator* current, in ConsumeSubString() 105 Iterator end, in ConsumeSubString() 159 template <class Iterator> 160 static inline bool AdvanceToNonspace(Iterator* current, Iterator end) { in AdvanceToNonspace() 210 template<class Iterator> [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-string-to-double.cpp | 85 template <class Iterator, class Converter> 86 static inline bool ConsumeSubStringImpl(Iterator* current, in ConsumeSubStringImpl() 87 Iterator end, in ConsumeSubStringImpl() 103 template <class Iterator> 104 static bool ConsumeSubString(Iterator* current, in ConsumeSubString() 105 Iterator end, in ConsumeSubString() 159 template <class Iterator> 160 static inline bool AdvanceToNonspace(Iterator* current, Iterator end) { in AdvanceToNonspace() 210 template<class Iterator> [all...] |
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_util.h | 244 struct Iterator { struct 254 Iterator& operator++(); 256 bool operator!=(const Iterator& other) const; 269 Iterator find(uint32_t id) const in find() 274 Iterator it; in find() 281 std::pair<Iterator, bool> insert(uint32_t id) in insert() 286 Iterator it; in insert() 310 Iterator cbegin() const in cbegin() 312 Iterator it; in cbegin() 324 Iterator cen [all...] |
/third_party/node/deps/v8/src/base/ |
H A D | threaded-list.h | 64 for (Iterator it = begin(); it != end(); ++it) { in Contains() 135 class Iterator final { 144 Iterator& operator++() { in operator ++() 148 bool operator==(const Iterator& other) const { in operator ==() 151 bool operator!=(const Iterator& other) const { in operator !=() 156 Iterator& operator=(T* entry) { in operator =() 172 Iterator() : entry_(nullptr) {} in Iterator() function in v8::base::final::final 175 explicit Iterator(T** entry) : entry_(entry) {} in Iterator() function in v8::base::final::final 192 ConstIterator(Iterator& iterator) : entry_(iterator.entry_) {} in ConstIterator() 215 Iterator begi [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | bytecode-liveness-map.h | 22 class Iterator { class in v8::internal::compiler::BytecodeLivenessState 32 bool operator!=(const Iterator& other) const { return it_ != other.it_; } in operator !=() 39 explicit Iterator(const BytecodeLivenessState& liveness, StartTag) in Iterator() function in v8::internal::compiler::BytecodeLivenessState::Iterator 47 explicit Iterator(const BytecodeLivenessState& liveness, EndTag) in Iterator() function in v8::internal::compiler::BytecodeLivenessState::Iterator 50 BitVector::Iterator it_; 109 Iterator begin() const { return Iterator(*this, Iterator::kStartTag); } in begin() 111 Iterator end() const { return Iterator(*thi [all...] |
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deAppendList.hpp | 95 class Iterator class in de::AppendList 98 Iterator (Block* curBlock_, size_t blockSize_, size_t slotNdx_) in Iterator() function in de::AppendList::Iterator 104 bool operator!= (const Iterator<CompatibleType>& other) const in operator !=() 108 bool operator== (const Iterator<CompatibleType>& other) const in operator ==() 113 Iterator<CompatibleType>& operator++ (void) in operator ++() 126 Iterator<CompatibleType> operator++ (int) const in operator ++() 128 Iterator<CompatibleType> copy(*this); in operator ++() 142 operator Iterator<const CompatibleType> (void) const in operator Iterator() 144 return Iterator<const CompatibleType>(m_curBlock, m_blockSize, m_slotNdx); in operator Iterator() 153 typedef Iterator<cons [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() function in BytesTrie::Iterator 37 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway in Iterator() 47 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, in Iterator() function in BytesTrie::Iterator 78 BytesTrie::Iterator::~Iterator() { in ~Iterator() 83 BytesTrie::Iterator & 84 BytesTrie::Iterator::reset() { in reset() 99 BytesTrie::Iterator [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() function in BytesTrie::Iterator 37 // Unlike BytesTrie itself, its Iterator performs memory allocations anyway in Iterator() 47 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, in Iterator() function in BytesTrie::Iterator 78 BytesTrie::Iterator::~Iterator() { in ~Iterator() 83 BytesTrie::Iterator & 84 BytesTrie::Iterator::reset() { in reset() 99 BytesTrie::Iterator [all...] |
/third_party/skia/src/core/ |
H A D | SkEnumerate.h | 35 class Iterator { class in SkEnumerate 42 constexpr Iterator(ptrdiff_t index, Iter it) : fIndex{index}, fIt{it} { } in Iterator() function in SkEnumerate::Iterator 43 constexpr Iterator(const Iterator&) = default; 44 constexpr Iterator operator++() { ++fIndex; ++fIt; return *this; } in operator ++() 45 constexpr Iterator operator++(int) { Iterator tmp(*this); operator++(); return tmp; } in operator ++() 46 constexpr bool operator==(const Iterator& rhs) const { return fIt == rhs.fIt; } in operator ==() 47 constexpr bool operator!=(const Iterator& rhs) const { return fIt != rhs.fIt; } in operator !=() 68 constexpr Iterator begi in operator =() [all...] |