Home
last modified time | relevance | path

Searched defs:Iter (Results 1 – 25 of 140) sorted by relevance

123456

/third_party/json/tests/src/
Dunit-class_iterator.cpp389 using Iter = nlohmann::detail::primitive_iterator_t; typedef
394 using Iter = nlohmann::detail::iter_impl<json>; typedef
400 using Iter = nlohmann::detail::json_reverse_iterator<Base>; typedef
408 using Iter = nlohmann::detail::primitive_iterator_t; typedef
413 using Iter = nlohmann::detail::iter_impl<json>; typedef
419 using Iter = nlohmann::detail::json_reverse_iterator<Base>; typedef
432 using Iter = nlohmann::detail::primitive_iterator_t; typedef
437 using Iter = nlohmann::detail::iter_impl<json>; typedef
443 using Iter = nlohmann::detail::json_reverse_iterator<Base>; typedef
451 using Iter = nlohmann::detail::primitive_iterator_t; typedef
[all …]
/third_party/rust/crates/quote/src/
Druntime.rs84 type Iter: Iterator; typedef
86 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter); in quote_into_iter()
90 type Iter = T::Iter; typedef
92 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
98 type Iter = T::Iter; typedef
100 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
106 type Iter = slice::Iter<'q, T>; typedef
108 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
114 type Iter = slice::Iter<'q, T>; typedef
116 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
[all …]
/third_party/skia/src/gpu/tessellate/
DMiddleOutPolygonTriangulator.h98 struct Iter { struct
108 Iter begin() const { return {fMiddleOut ? fMiddleOut->fTop : fEnd, fLastPoint}; } in begin() argument
DPathTessellator.h51 struct Iter { struct
57 const PathDrawList* fHead;
/third_party/rust/crates/clap/src/util/
Dflat_map.rs184 pub struct Iter<'a, K: 'a, V: 'a> { struct
185 keys: std::slice::Iter<'a, K>, argument
186 values: std::slice::Iter<'a, V>, argument
189 impl<'a, K, V> Iterator for Iter<'a, K, V> { implementation
206 impl<'a, K, V> DoubleEndedIterator for Iter<'a, K, V> { implementation
218 impl<'a, K, V> ExactSizeIterator for Iter<'a, K, V> {} implementation
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceRegAlloc.cpp386 void LinearScan::addSpillFill(IterationState &Iter) { in addSpillFill()
510 void LinearScan::findRegisterPreference(IterationState &Iter) { in findRegisterPreference()
567 void LinearScan::filterFreeWithInactiveRanges(IterationState &Iter) { in filterFreeWithInactiveRanges()
594 void LinearScan::filterFreeWithPrecoloredRanges(IterationState &Iter) { in filterFreeWithPrecoloredRanges()
636 void LinearScan::allocatePreferredRegister(IterationState &Iter) { in allocatePreferredRegister()
647 void LinearScan::allocateFreeRegister(IterationState &Iter, bool Filtered) { in allocateFreeRegister()
663 void LinearScan::handleNoFreeRegisters(IterationState &Iter) { in handleNoFreeRegisters()
844 IterationState Iter; in scan() local
/third_party/skia/tools/
DSkMetaData.h66 class Iter; variable
67 friend class Iter; variable
71 Iter() : fRec(nullptr) {} in Iter() function
/third_party/rust/crates/nix/src/
Ddir.rs76 pub fn iter(&mut self) -> Iter { in iter()
130 pub struct Iter<'d>(&'d mut Dir); struct
132 impl<'d> Iterator for Iter<'d> { implementation
140 impl<'d> Drop for Iter<'d> { implementation
/third_party/skia/src/pdf/
DSkPDFFont.cpp418 struct Iter { struct
419 void operator++() { in operator ++()
423 SkGlyphID operator*() const { return (SkGlyphID)fCurrent; } in operator *()
424 bool operator!=(const Iter& rhs) const { in operator !=()
427 Iter(SkGlyphID f, int c) : fFirst(f), fCurrent(c) {} in Iter() function
429 const SkGlyphID fFirst;
430 int fCurrent; // must be int to make fLast+1 to fit
/third_party/rust/crates/cxx/src/
Dcxx_vector.rs196 pub struct Iter<'a, T> { struct
206 type IntoIter = Iter<'a, T>; argument
213 impl<'a, T> Iterator for Iter<'a, T> implementation
231 impl<'a, T> ExactSizeIterator for Iter<'a, T> implementation
240 impl<'a, T> FusedIterator for Iter<'a, T> where T: VectorElement {} implementation
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
Depoll.rs292 pub struct Iter<'context, Context: self::Context> { struct
293 iter: core::slice::Iter<'context, Event>, argument
298 impl<'context, Context: self::Context> Iterator for Iter<'context, Context> { argument
/third_party/rust/crates/rustix/src/backend/libc/io/
Depoll.rs301 pub struct Iter<'context, Context: self::Context> { struct
302 iter: core::slice::Iter<'context, Event>, argument
307 impl<'context, Context: self::Context> Iterator for Iter<'context, Context> { argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
DInterfaceFile.cpp33 auto Iter = in addEntry() local
61 auto Iter = lower_bound(ParentUmbrellas, Target_, in addParentUmbrella() local
75 auto Iter = lower_bound(UUIDs, Target_, in addUUID() local
/third_party/skia/experimental/graphite/src/
DGraphicsPipelineDesc.h57 Iter() : fCurr(nullptr), fRemaining(0) {} in Iter() function
58 Iter(const Iter& iter) : fCurr(iter.fCurr), fRemaining(iter.fRemaining) {} in Iter() function
64 Iter(const Attribute* attrs, int count) : fCurr(attrs), fRemaining(count) { in Iter() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DDebugStringTableSubsection.cpp98 auto Iter = StringToId.find(S); in getIdForString() local
104 auto Iter = IdToString.find(Id); in getStringForId() local
/third_party/skia/include/utils/
DSkNWayCanvas.h86 class Iter; variable
/third_party/rust/crates/rust-openssl/openssl/src/
Dstack.rs315 pub struct Iter<'a, T: Stackable> { struct
320 impl<'a, T: Stackable> Iterator for Iter<'a, T> { argument
336 impl<'a, T: Stackable> DoubleEndedIterator for Iter<'a, T> { implementation
346 impl<'a, T: Stackable> ExactSizeIterator for Iter<'a, T> {} implementation
/third_party/rust/crates/regex/regex-capi/src/
Drure.rs46 pub struct Iter { struct
52 pub struct IterCaptureNames { argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DStratifiedSets.h95 auto Iter = Values.find(Elem); in find() local
282 auto Iter = Remaps.find(Above.Number); in finalizeSets() local
289 auto Iter = Remaps.find(Below.Number); in finalizeSets() local
298 auto Iter = Remaps.find(Link.Number); in finalizeSets() local
403 auto &Iter = Pair.first; in addAtMerging() local
/third_party/skia/src/core/
DSkTInternalLList.h198 Iter() : fCurr(nullptr) {} in Iter() function
199 Iter(const Iter& iter) : fCurr(iter.fCurr) {} in Iter() function
DSkDeque.cpp240 SkDeque::Iter::Iter() : fCurBlock(nullptr), fPos(nullptr), fElemSize(0) {} in Iter() function in SkDeque::Iter
242 SkDeque::Iter::Iter(const SkDeque& d, IterStart startLoc) { in Iter() function in SkDeque::Iter
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
DSourceMgr.h36 SourceMgr(ArrayRef<UniqueInst> S, unsigned Iter) in SourceMgr()
/third_party/rust/crates/cxx/syntax/
Dset.rs115 pub struct Iter<'s, 'a, T>(slice::Iter<'s, &'a T>); struct
117 impl<'s, 'a, T> Iterator for Iter<'s, 'a, T> { implementation
/third_party/rust/crates/syn/src/
Derror.rs408 pub struct Iter<'a> { struct
409 messages: slice::Iter<'a, ErrorMessage>, argument
412 impl<'a> Iterator for Iter<'a> { implementation
/third_party/skia/src/ports/
DSkOSFile_posix.cpp133 SkOSFile::Iter::Iter() { new (fSelf) SkOSFileIterData; } in Iter() function in SkOSFile::Iter
135 SkOSFile::Iter::Iter(const char path[], const char suffix[]) { in Iter() function in SkOSFile::Iter

123456