Home
last modified time | relevance | path

Searched defs:Iterate (Results 1 – 21 of 21) sorted by relevance

/external/skia/src/core/
DSkPathPriv.h162 struct Iterate { struct
164 Iterate(const SkPath& path) in Iterate() function
171 Iterate(const uint8_t* verbsBegin, const uint8_t* verbsEnd, const SkPoint* points, in Iterate() function
175 SkPath::RangeIter begin() { return {fVerbsBegin, fPoints, fWeights}; } in begin()
176 SkPath::RangeIter end() { return {fVerbsEnd, nullptr, nullptr}; } in end()
179 const uint8_t* fVerbsEnd;
180 const SkPoint* fPoints;
181 const SkScalar* fWeights;
DSkAAClip.cpp222 static Iter Iterate(const SkAAClip& clip) { in Iterate() function
/external/rust/crates/itertools/src/
Dsources.rs141 pub struct Iterate<St, F> { struct
146 impl<St, F> fmt::Debug for Iterate<St, F> implementation
152 impl<St, F> Iterator for Iterate<St, F> implementation
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
DIterate.java28 public class Iterate { class
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
DTestFastLexer.cs65 TimeSpan Iterate( string text, int count ) in Iterate() method in Antlr3.Runtime.Test.TestFastLexer
/external/gwp_asan/gwp_asan/tests/
Diterate.cpp15 TEST_F(CustomGuardedPoolAllocator, Iterate) { in TEST_F() argument
/external/starlark-go/starlark/
Dvalue.go171 Iterate() Iterator // must be followed by call to Iterator.Done methodSpec
263 Iterate() Iterator // see Iterable interface methodSpec
579 func (si stringElems) Iterate() Iterator { return &stringElemsIterator{si, 0} } func
628 func (si stringCodepoints) Iterate() Iterator { return &stringCodepointsIterator{si, 0} } func
789 func (d *Dict) Iterate() Iterator { return d.ht.iterate() } func
888 func (l *List) Iterate() Iterator { func
993 func (t Tuple) Iterate() Iterator { return &tupleIterator{elems: t} } func
1056 func (s *Set) Iterate() Iterator { return s.ht.iterate() } func
1375 func Iterate(x Value) Iterator { func
Deval_test.go177 func (t fib) Iterate() starlark.Iterator { return &fibIterator{0, 1} } func
Dlibrary.go828 func (r rangeValue) Iterate() Iterator { return &rangeIterator{r, 0} } func
1486 func (bi bytesIterable) Iterate() Iterator { return &bytesIterator{bi.bytes} } func
/external/rust/crates/tinytemplate/src/
Dinstruction.rs65 Iterate(usize), enumerator
/external/abseil-cpp/absl/profiling/internal/
Dsample_recorder.h207 int64_t SampleRecorder<T>::Iterate( in Iterate() function
/external/webrtc/third_party/abseil-cpp/absl/profiling/internal/
Dsample_recorder.h207 int64_t SampleRecorder<T>::Iterate( in Iterate() function
/external/angle/third_party/abseil-cpp/absl/profiling/internal/
Dsample_recorder.h217 int64_t SampleRecorder<T>::Iterate( in Iterate() function
/external/angle/src/common/
DCircularBuffer_unittest.cpp95 TEST(CircularBuffer, Iterate) in TEST() argument
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Dhashtablez_sampler.cc158 int64_t HashtablezSampler::Iterate( in Iterate() function in absl::container_internal::HashtablezSampler
/external/libtextclassifier/abseil-cpp/absl/container/internal/
Dhashtablez_sampler.cc157 int64_t HashtablezSampler::Iterate( in Iterate() function in absl::container_internal::HashtablezSampler
/external/openscreen/third_party/abseil/src/absl/container/internal/
Dhashtablez_sampler.cc157 int64_t HashtablezSampler::Iterate( in Iterate() function in absl::container_internal::HashtablezSampler
/external/pigweed/pw_containers/
Dflat_map_test.cc75 TEST(FlatMap, Iterate) { in TEST() argument
/external/libchrome/base/metrics/
Dsample_vector_unittest.cc213 TEST_F(SampleVectorTest, Iterate) { in TEST_F() argument
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DEnumerableExtensions.cs139 static U Iterate<T, U>(IEnumerable<T> source, U initValue, Func<T, U, U> selector) { in Iterate() method in Antlr.Runtime.JavaExtensions.EnumerableExtensions
/external/starlark-go/lib/proto/
Dproto.go891 func (rf *RepeatedField) Iterate() starlark.Iterator { func