/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
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::reference CordzSampleToken::Iterator::operator*() in operator *() 54 CordzSampleToken::Iterator::pointer CordzSampleToken::Iterator::operator->() in operator ->() 59 CordzSampleToken::Iterator::Iterator(const CordzSampleToken* token) in Iterator() function in absl::cord_internal::CordzSampleToken::Iterator
|
D | cordz_sample_token.h | 60 class Iterator { 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 begin() { return Iterator(this); } in begin() 90 Iterator end() { return Iterator(); } in end()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
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 endWithNull() const; [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | privacyCheckAnonymousFunctionParameter.types | 6 interface Iterator<T> { 12 export function fromDoWhile<T>(doWhile: (test: Iterator<T>) => boolean): Iterator<T> { 13 >fromDoWhile : <T>(doWhile: (test: Iterator<T>) => boolean) => Iterator<T> 14 >doWhile : (test: Iterator<T>) => boolean 15 >test : Iterator<T> 22 >fromOrderBy : () => Iterator<unknown> 25 >fromDoWhile(test => { return true; }) : Iterator<unknown> 26 >fromDoWhile : <T>(doWhile: (test: Iterator<T>) => boolean) => Iterator<T> 27 >test => { return true; } : (test: Iterator<unknown>) => true 28 >test : Iterator<unknown>
|
D | privacyCheckAnonymousFunctionParameter2.types | 6 interface Iterator<T> { x: T } 12 export function foo<T>(x: (a: Iterator<T>) => number) { 13 >foo : <T>(x: (a: Iterator<T>) => number) => (a: Iterator<T>) => number 14 >x : (a: Iterator<T>) => number 15 >a : Iterator<T> 18 >x : (a: Iterator<T>) => number 29 >foo(null) : (a: Iterator<unknown>) => number 30 >foo : <T>(x: (a: Iterator<T>) => number) => (a: Iterator<T>) => number
|
D | privacyCheckAnonymousFunctionParameter.symbols | 5 interface Iterator<T> { 6 >Iterator : Symbol(Iterator, Decl(privacyCheckAnonymousFunctionParameter.ts, 0, 17)) 13 export function fromDoWhile<T>(doWhile: (test: Iterator<T>) => boolean): Iterator<T> { 18 >Iterator : Symbol(Iterator, Decl(privacyCheckAnonymousFunctionParameter.ts, 0, 17)) 20 >Iterator : Symbol(Iterator, Decl(privacyCheckAnonymousFunctionParameter.ts, 0, 17))
|
/third_party/skia/third_party/externals/dawn/src/common/ |
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::Iterator(const std::bitset<N>& bits) in Iterator() function [all …]
|
D | SerialStorage.h | 36 class Iterator { 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() 212 SerialStorage<Derived>::Iterator::Iterator(typename SerialStorage<Derived>::StorageIterator start) in Iterator() function [all …]
|
/third_party/vk-gl-cts/framework/common/ |
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 iter) : m_iter(iter) {} in HexIterator() 230 HexIterator<T, Iterator>& operator++ (void) { ++m_iter; return *this; } in operator ++() [all …]
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | EnumMaskIterator.h | 36 class Iterator final { 38 Iterator(const typename BitSetIterator<N, U>::Iterator& iter) : mIter(iter) { in Iterator() function 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 { in begin() 64 return Iterator(mBitSetIterator.begin()); in begin() 67 Iterator end() const { in end() 68 return Iterator(mBitSetIterator.end()); in end()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | edits.h | 203 struct U_COMMON_API Iterator U_FINAL : public UMemory { 208 Iterator() : in Iterator() function 217 Iterator(const Iterator &other) = default; 222 Iterator &operator=(const Iterator &other) = default; 406 Iterator(const uint16_t *a, int32_t len, UBool oc, UBool crs); 438 Iterator getCoarseChangesIterator() const { in getCoarseChangesIterator() 439 return Iterator(array, length, true, true); in getCoarseChangesIterator() 450 Iterator getCoarseIterator() const { in getCoarseIterator() 451 return Iterator(array, length, false, true); in getCoarseIterator() 462 Iterator getFineChangesIterator() const { in getFineChangesIterator() [all …]
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | edits.h | 203 struct U_COMMON_API Iterator final : public UMemory { 208 Iterator() : in Iterator() function 217 Iterator(const Iterator &other) = default; 222 Iterator &operator=(const Iterator &other) = default; 406 Iterator(const uint16_t *a, int32_t len, UBool oc, UBool crs); 438 Iterator getCoarseChangesIterator() const { in getCoarseChangesIterator() 439 return Iterator(array, length, true, true); in getCoarseChangesIterator() 450 Iterator getCoarseIterator() const { in getCoarseIterator() 451 return Iterator(array, length, false, true); in getCoarseIterator() 462 Iterator getFineChangesIterator() const { in getFineChangesIterator() [all …]
|
/third_party/icu/icu4c/source/common/unicode/ |
D | edits.h | 203 struct U_COMMON_API Iterator U_FINAL : public UMemory { 208 Iterator() : in Iterator() function 217 Iterator(const Iterator &other) = default; 222 Iterator &operator=(const Iterator &other) = default; 406 Iterator(const uint16_t *a, int32_t len, UBool oc, UBool crs); 438 Iterator getCoarseChangesIterator() const { in getCoarseChangesIterator() 439 return Iterator(array, length, true, true); in getCoarseChangesIterator() 450 Iterator getCoarseIterator() const { in getCoarseIterator() 451 return Iterator(array, length, false, true); in getCoarseIterator() 462 Iterator getFineChangesIterator() const { in getFineChangesIterator() [all …]
|
/third_party/mesa3d/src/amd/compiler/ |
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 cend() const in cend() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineInstrBundleIterator.h | 53 template <class Iterator> static Iterator getBundleBegin(Iterator I) { 61 template <class Iterator> static Iterator getBundleFinal(Iterator I) { 69 template <class Iterator> static void increment(Iterator &I) { 74 template <class Iterator> static void decrement(Iterator &I) { 81 template <class Iterator> static Iterator getBundleBegin(Iterator I) { 88 template <class Iterator> static Iterator getBundleFinal(Iterator I) { 95 template <class Iterator> static void increment(Iterator &I) { 100 template <class Iterator> static void decrement(Iterator &I) {
|
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
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 ai = aa.iterator(); in containsSome() [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/ |
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 ai = aa.iterator(); in containsSome() [all …]
|
/third_party/node/deps/v8/src/objects/ |
D | scope-info-inl.h | 43 class Iterator { 45 Iterator(const LocalNamesRange* range, InternalIndex index) in Iterator() function 51 Iterator& operator++() { 59 friend bool operator==(const Iterator& a, const Iterator& b) { 63 friend bool operator!=(const Iterator& a, const Iterator& b) { 81 const Iterator* operator*() const { return this; } 124 inline Iterator begin() const { return Iterator(this, InternalIndex(0)); } in begin() 126 inline Iterator end() const { return Iterator(this, max_index()); } in end()
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
D | rrPrimitiveAssembler.hpp | 79 template <typename Iterator> 80 …static void exec (Iterator outputIterator, VertexPacket* const* vertices, size_t numVertices, rr::… in exec() 96 template <typename Iterator> 97 …static void exec (Iterator outputIterator, VertexPacket* const* vertices, size_t numVertices, rr::… in exec() 141 template <typename Iterator> 142 …static void exec (Iterator outputIterator, VertexPacket* const* vertices, size_t numVertices, rr::… in exec() 204 template <typename Iterator> 205 …static void exec (Iterator outputIterator, VertexPacket* const* vertices, size_t numVertices, rr::… in exec() 221 template <typename Iterator> 222 …static void exec (Iterator outputIterator, VertexPacket* const* vertices, size_t numVertices, rr::… in exec() [all …]
|
/third_party/node/deps/v8/src/base/ |
D | threaded-list.h | 64 for (Iterator it = begin(); it != end(); ++it) { in Contains() 135 class Iterator final { 144 Iterator& operator++() { 148 bool operator==(const Iterator& other) const { 151 bool operator!=(const Iterator& other) const { 156 Iterator& operator=(T* entry) { 172 Iterator() : entry_(nullptr) {} in Iterator() function 175 explicit Iterator(T** entry) : entry_(entry) {} in Iterator() function 192 ConstIterator(Iterator& iterator) : entry_(iterator.entry_) {} in ConstIterator() 215 Iterator begin() { return Iterator(TLTraits::start(&head_)); } in begin() [all …]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
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> 211 static bool Advance (Iterator* it, uc16 separator, int base, Iterator& end) { in Advance() [all …]
|
/third_party/node/deps/icu-small/source/common/ |
D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() function in BytesTrie::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::hasNext() const { return pos_!=nullptr || !stack_->isEmpty(); } in hasNext() 102 BytesTrie::Iterator::next(UErrorCode &errorCode) { in next() 172 BytesTrie::Iterator::getString() const { in getString() 177 BytesTrie::Iterator::truncateAndStop() { in truncateAndStop() 185 BytesTrie::Iterator::branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) { in branchNext()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() function in BytesTrie::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::hasNext() const { return pos_!=NULL || !stack_->isEmpty(); } in hasNext() 102 BytesTrie::Iterator::next(UErrorCode &errorCode) { in next() 172 BytesTrie::Iterator::getString() const { in getString() 177 BytesTrie::Iterator::truncateAndStop() { in truncateAndStop() 185 BytesTrie::Iterator::branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) { in branchNext()
|
/third_party/icu/icu4c/source/common/ |
D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() function in BytesTrie::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::hasNext() const { return pos_!=NULL || !stack_->isEmpty(); } in hasNext() 102 BytesTrie::Iterator::next(UErrorCode &errorCode) { in next() 172 BytesTrie::Iterator::getString() const { in getString() 177 BytesTrie::Iterator::truncateAndStop() { in truncateAndStop() 185 BytesTrie::Iterator::branchNext(const uint8_t *pos, int32_t length, UErrorCode &errorCode) { in branchNext()
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
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> 190 static bool Advance (Iterator* it, uc16 separator, int base, Iterator& end) { in Advance() [all …]
|