/aosp_15_r20/frameworks/native/vulkan/vkjson/ |
H A D | vkjson.cc | 478 inline bool Iterate(Visitor* visitor, VkExtent3D* extents) { in Iterate() function 486 inline bool Iterate(Visitor* visitor, VkImageFormatProperties* properties) { in Iterate() function 497 inline bool Iterate(Visitor* visitor, VkPhysicalDeviceLimits* limits) { in Iterate() function 608 inline bool Iterate(Visitor* visitor, in Iterate() function 619 inline bool Iterate(Visitor* visitor, in Iterate() function 634 inline bool Iterate(Visitor* visitor, VkPhysicalDeviceFeatures* features) { in Iterate() function 694 inline bool Iterate(Visitor* visitor, VkJsonCore12* core) { in Iterate() function 701 inline bool Iterate(Visitor* visitor, VkPhysicalDeviceVulkan12Properties* properties) { in Iterate() function 758 inline bool Iterate(Visitor* visitor, VkPhysicalDeviceVulkan12Features* features) { in Iterate() function 810 inline bool Iterate(Visitor* visitor, VkJsonCore13* core) { in Iterate() function [all …]
|
/aosp_15_r20/external/skia/src/core/ |
H A D | SkPathPriv.h | 182 struct Iterate { struct 184 Iterate(const SkPath& path) in Iterate() argument 191 Iterate(const uint8_t* verbsBegin, const uint8_t* verbsEnd, const SkPoint* points, in Iterate() argument 195 SkPath::RangeIter begin() { return {fVerbsBegin, fPoints, fWeights}; } in begin() 196 SkPath::RangeIter end() { return {fVerbsEnd, nullptr, nullptr}; } in end() 199 const uint8_t* fVerbsEnd; 200 const SkPoint* fPoints; 201 const SkScalar* fWeights;
|
/aosp_15_r20/external/rust/android-crates-io/crates/itertools/src/ |
D | sources.rs | 96 pub struct Iterate<St, F> { struct 101 impl<St, F> fmt::Debug for Iterate<St, F> argument 108 impl<St, F> Iterator for Iterate<St, F> implementation
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/itertools-0.11.0/src/ |
H A D | sources.rs | 141 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
|
/aosp_15_r20/prebuilts/go/linux-x86/test/typeparam/ |
D | issue48645b.go | 15 func (f IteratorFunc[T]) Iterate(fn func(T) bool) { func 23 func (s Stream[T]) Iterate(fn func(T) bool) { func 69 func (myIterator) Iterate(fn func(int) bool) { func
|
D | issue48602.go | 15 func (f IteratorFunc[T]) Iterate(fn T) { func
|
D | issue48598.go | 15 func (f IteratorFunc[T]) Iterate() { func
|
D | sets.go | 122 func (s _Set[Elem]) Iterate(f func(Elem)) { func
|
D | orderedmap.go | 108 func (m *_Map[K, V]) Iterate() *_Iterator[K, V] { func
|
/aosp_15_r20/external/starlark-go/starlark/ |
H A D | value.go | 171 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
|
/aosp_15_r20/external/openthread/src/core/thread/ |
H A D | network_data_tlvs.cpp | 120 const NetworkDataTlv *TlvIterator::Iterate(NetworkDataTlv::Type aType) in Iterate() function in ot::NetworkData::TlvIterator 131 const NetworkDataTlv *TlvIterator::Iterate(NetworkDataTlv::Type aType, bool aStable) in Iterate() function in ot::NetworkData::TlvIterator
|
H A D | child_table.hpp | 250 …IteratorBuilder Iterate(Child::StateFilter aFilter) { return IteratorBuilder(GetInstance(), aFilte… in Iterate() function in ot::ChildTable
|
/aosp_15_r20/art/runtime/mirror/ |
H A D | object_array.h | 128 inline IterationRange<ObjPtrArrayIter<T>> Iterate() REQUIRES_SHARED(Locks::mutator_lock_) { in Iterate() function 144 static inline IterationRange<HandleArrayIter<T>> Iterate(Handle<ObjectArray<T>>& h_this) in Iterate() function
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/function/ |
D | lazy_prelude.hpp | 523 struct Iterate { struct 529 struct result<This(F,T)> 539 typename result<Iterate(F,T)>::type operator() in operator ()() 561 typedef boost::phoenix::function<impl::Iterate> Iterate; typedef
|
/aosp_15_r20/external/openthread/src/core/utils/ |
H A D | history_tracker.hpp | 366 const Entry *Iterate(Iterator &aIterator, uint32_t &aEntryAge) const in Iterate() function in ot::Utils::HistoryTracker::EntryList 387 const Entry *Iterate(Iterator &, uint32_t &) const { return nullptr; } in Iterate() function in ot::Utils::HistoryTracker::EntryList
|
/aosp_15_r20/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/ |
H A D | Iterate.java | 28 public class Iterate { class
|
/aosp_15_r20/platform_testing/libraries/health/composers/platform/src/android/platform/test/composer/ |
H A D | Iterate.java | 22 public class Iterate<U> extends IterateBase<Bundle, U> { class
|
/aosp_15_r20/platform_testing/libraries/health/composers/host/src/android/host/test/composer/ |
H A D | Iterate.java | 21 public class Iterate<U> extends IterateBase<Map<String, String>, U> { class
|
/aosp_15_r20/prebuilts/go/linux-x86/test/typeparam/issue48716.dir/ |
D | main.go | 49 func (s MapSet[T]) Iterate(cb func(T) bool) { func
|
D | a.go | 45 func (m HashMap[K, V]) Iterate(cb func(Pair[K, V]) bool) { func
|
/aosp_15_r20/external/gwp_asan/gwp_asan/tests/ |
H A D | iterate.cpp | 15 TEST_F(CustomGuardedPoolAllocator, Iterate) { in TEST_F() argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/tinytemplate/src/ |
D | instruction.rs | 65 Iterate(usize), enumerator
|
/aosp_15_r20/prebuilts/go/linux-x86/test/typeparam/setsimp.dir/ |
D | a.go | 115 func (s Set[Elem]) Iterate(f func(Elem)) { func
|
/aosp_15_r20/prebuilts/go/linux-x86/test/typeparam/orderedmapsimp.dir/ |
D | a.go | 103 func (m *Map[K, V]) Iterate() *Iterator[K, V] { func
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/profiling/internal/ |
D | sample_recorder.h | 225 int64_t SampleRecorder<T>::Iterate( in Iterate() function
|