Home
last modified time | relevance | path

Searched +defs:S +defs:extend (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/aosp_15_r20/external/rust/android-crates-io/crates/ahash/src/
Dhash_set.rs133 fn bitor(self, rhs: &AHashSet<T, S>) -> AHashSet<T, S> { in bitor() argument
165 fn bitand(self, rhs: &AHashSet<T, S>) -> AHashSet<T, S> { in bitand() argument
197 fn bitxor(self, rhs: &AHashSet<T, S>) -> AHashSet<T, S> { in bitxor() argument
229 fn sub(self, rhs: &AHashSet<T, S>) -> AHashSet<T, S> { in sub() argument
280 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
291 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend() function
/aosp_15_r20/external/rust/android-crates-io/crates/hashlink/src/
Dlinked_hash_set.rs83 pub fn with_hasher(hasher: S) -> LinkedHashSet<T, S> { in with_hasher() argument
90 pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> LinkedHashSet<T, S> { in with_capacity_and_hasher() argument
97 pub fn hasher(&self) -> &S { in hasher()
117 pub fn difference<'a>(&'a self, other: &'a LinkedHashSet<T, S>) -> Difference<'a, T, S> { in difference() argument
127 other: &'a LinkedHashSet<T, S>, in symmetric_difference() argument
135 pub fn intersection<'a>(&'a self, other: &'a LinkedHashSet<T, S>) -> Intersection<'a, T, S> { in intersection() argument
143 pub fn union<'a>(&'a self, other: &'a LinkedHashSet<T, S>) -> Union<'a, T, S> { in union() argument
365 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> LinkedHashSet<T, S> { in from_iter() argument
378 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
389 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend() function
[all …]
Dlru_cache.rs167 pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S> { in entry() argument
178 pub fn raw_entry(&self) -> RawEntryBuilder<'_, K, V, S> { in raw_entry() argument
189 pub fn raw_entry_mut(&mut self) -> RawEntryBuilderMut<'_, K, V, S> { in raw_entry_mut() argument
247 fn extend<I: IntoIterator<Item = (K, V)>>(&mut self, iter: I) { in extend() method
/aosp_15_r20/external/mesa3d/src/asahi/compiler/
H A Dagx_pack.c418 uint16_t extend = 0; in agx_pack_alu() local
570 unsigned S = sample_index.value; in agx_pack_instr() local
595 unsigned S = agx_pack_sample_mask_src(I, I->src[1]); in agx_pack_instr() local
792 unsigned S = agx_pack_atomic_source(I, I->src[0]); in agx_pack_instr() local
819 unsigned S = agx_pack_atomic_source(I, I->src[0]); in agx_pack_instr() local
853 unsigned S = agx_pack_sampler(I, I->src[4], &St); in agx_pack_instr() local
874 uint32_t extend = ((U & BITFIELD_MASK(5)) << 0) | (kill << 5) | in agx_pack_instr() local
993 agx_index S = I->src[0]; in agx_pack_instr() local
/aosp_15_r20/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
H A Dapiviewer.js175String",k=".",j="default",h="Object",g='"',f="Array",e="()",d="String",c="Function",b=".prototype"… argument
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/collections/hash/
H A Dset.rs373 pub const fn with_hasher(hasher: S) -> HashSet<T, S> { in with_hasher() argument
404 pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> HashSet<T, S> { in with_capacity_and_hasher() argument
422 pub fn hasher(&self) -> &S { in hasher()
554 pub fn difference<'a>(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S> { in difference() argument
584 other: &'a HashSet<T, S>, in symmetric_difference() argument
616 pub fn intersection<'a>(&'a self, other: &'a HashSet<T, S>) -> Intersection<'a, T, S> { in intersection() argument
645 pub fn union<'a>(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S> { in union() argument
1031 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> HashSet<T, S> { in from_iter() argument
1076 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
1098 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/collections/hash/
H A Dset.rs373 pub const fn with_hasher(hasher: S) -> HashSet<T, S> { in with_hasher() argument
404 pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> HashSet<T, S> { in with_capacity_and_hasher() argument
422 pub fn hasher(&self) -> &S { in hasher()
554 pub fn difference<'a>(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S> { in difference() argument
584 other: &'a HashSet<T, S>, in symmetric_difference() argument
616 pub fn intersection<'a>(&'a self, other: &'a HashSet<T, S>) -> Intersection<'a, T, S> { in intersection() argument
645 pub fn union<'a>(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S> { in union() argument
1031 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> HashSet<T, S> { in from_iter() argument
1076 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
1098 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/collections/hash/
H A Dset.rs373 pub const fn with_hasher(hasher: S) -> HashSet<T, S> { in with_hasher() argument
404 pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> HashSet<T, S> { in with_capacity_and_hasher() argument
422 pub fn hasher(&self) -> &S { in hasher()
554 pub fn difference<'a>(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S> { in difference() argument
584 other: &'a HashSet<T, S>, in symmetric_difference() argument
616 pub fn intersection<'a>(&'a self, other: &'a HashSet<T, S>) -> Intersection<'a, T, S> { in intersection() argument
645 pub fn union<'a>(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S> { in union() argument
1031 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> HashSet<T, S> { in from_iter() argument
1076 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
1098 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/collections/hash/
H A Dset.rs373 pub const fn with_hasher(hasher: S) -> HashSet<T, S> { in with_hasher() argument
404 pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> HashSet<T, S> { in with_capacity_and_hasher() argument
422 pub fn hasher(&self) -> &S { in hasher()
554 pub fn difference<'a>(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S> { in difference() argument
584 other: &'a HashSet<T, S>, in symmetric_difference() argument
616 pub fn intersection<'a>(&'a self, other: &'a HashSet<T, S>) -> Intersection<'a, T, S> { in intersection() argument
645 pub fn union<'a>(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S> { in union() argument
1031 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> HashSet<T, S> { in from_iter() argument
1076 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
1098 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/collections/hash/
H A Dset.rs373 pub const fn with_hasher(hasher: S) -> HashSet<T, S> { in with_hasher() argument
404 pub fn with_capacity_and_hasher(capacity: usize, hasher: S) -> HashSet<T, S> { in with_capacity_and_hasher() argument
422 pub fn hasher(&self) -> &S { in hasher()
554 pub fn difference<'a>(&'a self, other: &'a HashSet<T, S>) -> Difference<'a, T, S> { in difference() argument
584 other: &'a HashSet<T, S>, in symmetric_difference() argument
616 pub fn intersection<'a>(&'a self, other: &'a HashSet<T, S>) -> Intersection<'a, T, S> { in intersection() argument
645 pub fn union<'a>(&'a self, other: &'a HashSet<T, S>) -> Union<'a, T, S> { in union() argument
1031 fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> HashSet<T, S> { in from_iter() argument
1076 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
1098 fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dset.rs224 pub fn par_union<'a>(&'a self, other: &'a Self) -> ParUnion<'a, T, S, A> { in par_union() argument
231 pub fn par_difference<'a>(&'a self, other: &'a Self) -> ParDifference<'a, T, S, A> { in par_difference() argument
241 ) -> ParSymmetricDifference<'a, T, S, A> { in par_symmetric_difference() argument
248 pub fn par_intersection<'a>(&'a self, other: &'a Self) -> ParIntersection<'a, T, S, A> { in par_intersection() argument
373 fn extend<T, S, I, A>(set: &mut HashSet<T, S, A>, par_iter: I) in extend() function
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dset.rs224 pub fn par_union<'a>(&'a self, other: &'a Self) -> ParUnion<'a, T, S, A> { in par_union() argument
231 pub fn par_difference<'a>(&'a self, other: &'a Self) -> ParDifference<'a, T, S, A> { in par_difference() argument
241 ) -> ParSymmetricDifference<'a, T, S, A> { in par_symmetric_difference() argument
248 pub fn par_intersection<'a>(&'a self, other: &'a Self) -> ParIntersection<'a, T, S, A> { in par_intersection() argument
373 fn extend<T, S, I, A>(set: &mut HashSet<T, S, A>, par_iter: I) in extend() function
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dset.rs224 pub fn par_union<'a>(&'a self, other: &'a Self) -> ParUnion<'a, T, S, A> { in par_union() argument
231 pub fn par_difference<'a>(&'a self, other: &'a Self) -> ParDifference<'a, T, S, A> { in par_difference() argument
241 ) -> ParSymmetricDifference<'a, T, S, A> { in par_symmetric_difference() argument
248 pub fn par_intersection<'a>(&'a self, other: &'a Self) -> ParIntersection<'a, T, S, A> { in par_intersection() argument
373 fn extend<T, S, I, A>(set: &mut HashSet<T, S, A>, par_iter: I) in extend() function
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dset.rs224 pub fn par_union<'a>(&'a self, other: &'a Self) -> ParUnion<'a, T, S, A> { in par_union() argument
231 pub fn par_difference<'a>(&'a self, other: &'a Self) -> ParDifference<'a, T, S, A> { in par_difference() argument
241 ) -> ParSymmetricDifference<'a, T, S, A> { in par_symmetric_difference() argument
248 pub fn par_intersection<'a>(&'a self, other: &'a Self) -> ParIntersection<'a, T, S, A> { in par_intersection() argument
373 fn extend<T, S, I, A>(set: &mut HashSet<T, S, A>, par_iter: I) in extend() function
/aosp_15_r20/external/rust/android-crates-io/crates/hashbrown/src/external_trait_impls/rayon/
Dset.rs224 pub fn par_union<'a>(&'a self, other: &'a Self) -> ParUnion<'a, T, S, A> { in par_union() argument
231 pub fn par_difference<'a>(&'a self, other: &'a Self) -> ParDifference<'a, T, S, A> { in par_difference() argument
241 ) -> ParSymmetricDifference<'a, T, S, A> { in par_symmetric_difference() argument
248 pub fn par_intersection<'a>(&'a self, other: &'a Self) -> ParIntersection<'a, T, S, A> { in par_intersection() argument
373 fn extend<T, S, I, A>(set: &mut HashSet<T, S, A>, par_iter: I) in extend() function
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dset.rs224 pub fn par_union<'a>(&'a self, other: &'a Self) -> ParUnion<'a, T, S, A> { in par_union() argument
231 pub fn par_difference<'a>(&'a self, other: &'a Self) -> ParDifference<'a, T, S, A> { in par_difference() argument
241 ) -> ParSymmetricDifference<'a, T, S, A> { in par_symmetric_difference() argument
248 pub fn par_intersection<'a>(&'a self, other: &'a Self) -> ParIntersection<'a, T, S, A> { in par_intersection() argument
373 fn extend<T, S, I, A>(set: &mut HashSet<T, S, A>, par_iter: I) in extend() function
/aosp_15_r20/external/rust/android-crates-io/crates/dashmap/src/
Dset.rs266 pub fn iter(&'a self) -> Iter<'a, K, S, DashMap<K, (), S>> { in iter() argument
399 fn extend<T: IntoIterator<Item = K>>(&mut self, iter: T) { in extend() method
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/
H A Dset.rs556 pub const fn with_hasher_in(hasher: S, alloc: A) -> Self { in with_hasher_in()
594 pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self { in with_capacity_and_hasher_in()
615 pub fn hasher(&self) -> &S { in hasher()
744 pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> { in difference() argument
773 pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> { in symmetric_difference() argument
798 pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> { in intersection() argument
829 pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> { in union() argument
1022 pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> { in entry() argument
1307 fn from(map: HashMap<T, (), S, A>) -> Self { in from() argument
1354 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/
H A Dset.rs556 pub const fn with_hasher_in(hasher: S, alloc: A) -> Self { in with_hasher_in()
594 pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self { in with_capacity_and_hasher_in()
615 pub fn hasher(&self) -> &S { in hasher()
744 pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> { in difference() argument
773 pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> { in symmetric_difference() argument
798 pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> { in intersection() argument
829 pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> { in union() argument
1022 pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> { in entry() argument
1307 fn from(map: HashMap<T, (), S, A>) -> Self { in from() argument
1354 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/vendor/hashbrown/src/
H A Dset.rs556 pub const fn with_hasher_in(hasher: S, alloc: A) -> Self { in with_hasher_in()
594 pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self { in with_capacity_and_hasher_in()
615 pub fn hasher(&self) -> &S { in hasher()
744 pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> { in difference() argument
773 pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> { in symmetric_difference() argument
798 pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> { in intersection() argument
829 pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> { in union() argument
1022 pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> { in entry() argument
1307 fn from(map: HashMap<T, (), S, A>) -> Self { in from() argument
1354 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/hashbrown/src/
Dset.rs484 pub fn with_hasher_in(hasher: S, alloc: A) -> Self { in with_hasher_in()
512 pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self { in with_capacity_and_hasher_in()
533 pub fn hasher(&self) -> &S { in hasher()
657 pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> { in difference() argument
686 pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> { in symmetric_difference() argument
711 pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> { in intersection() argument
742 pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> { in union() argument
939 pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> { in entry() argument
1184 fn from(map: HashMap<T, (), S, A>) -> Self { in from() argument
1231 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/
H A Dset.rs556 pub const fn with_hasher_in(hasher: S, alloc: A) -> Self { in with_hasher_in()
594 pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self { in with_capacity_and_hasher_in()
615 pub fn hasher(&self) -> &S { in hasher()
744 pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> { in difference() argument
773 pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> { in symmetric_difference() argument
798 pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> { in intersection() argument
829 pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> { in union() argument
1022 pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> { in entry() argument
1307 fn from(map: HashMap<T, (), S, A>) -> Self { in from() argument
1354 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/
H A Dset.rs556 pub const fn with_hasher_in(hasher: S, alloc: A) -> Self { in with_hasher_in()
594 pub fn with_capacity_and_hasher_in(capacity: usize, hasher: S, alloc: A) -> Self { in with_capacity_and_hasher_in()
615 pub fn hasher(&self) -> &S { in hasher()
744 pub fn difference<'a>(&'a self, other: &'a Self) -> Difference<'a, T, S, A> { in difference() argument
773 pub fn symmetric_difference<'a>(&'a self, other: &'a Self) -> SymmetricDifference<'a, T, S, A> { in symmetric_difference() argument
798 pub fn intersection<'a>(&'a self, other: &'a Self) -> Intersection<'a, T, S, A> { in intersection() argument
829 pub fn union<'a>(&'a self, other: &'a Self) -> Union<'a, T, S, A> { in union() argument
1022 pub fn entry(&mut self, value: T) -> Entry<'_, T, S, A> { in entry() argument
1307 fn from(map: HashMap<T, (), S, A>) -> Self { in from() argument
1354 fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) { in extend() function
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/weak-table/src/
Dptr_weak_key_hash_map.rs50 pub fn hasher(&self) -> &S { in hasher()
317 fn extend<T: IntoIterator<Item=(K::Strong, V)>>(&mut self, iter: T) { in extend() function
328 fn extend<T: IntoIterator<Item=(&'a K::Strong, &'a V)>>(&mut self, iter: T) { in extend() function
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/tests/
Dcollection.rs84 fn extend(&mut self, tests: RegexTests) { in extend() method
179 ) -> Option<Regex<DenseDFA<Vec<S>, S>>> { in build_regex() argument

12345678910>>...14