| /third_party/rust/rust/src/tools/rust-analyzer/docs/dev/ |
| D | architecture.md | 58 ### `xtask` 64 ### `editors/code` 68 ### `lib/` 73 ### `crates/parser` 91 ### `crates/syntax` 137 ### `crates/base_db` 154 ### `crates/hir_expand`, `crates/hir_def`, `crates/hir_ty` 181 ### `crates/hir` 203 ### `crates/ide` 228 ### `crates/rust-analyzer` [all …]
|
| /third_party/rust/rust/library/core/src/iter/adapters/ |
| D | map.rs | 61 pub struct Map<I, F> { struct 67 impl<I, F> Map<I, F> { argument 74 impl<I: fmt::Debug, F> fmt::Debug for Map<I, F> { implementation 95 impl<B, I: Iterator, F> Iterator for Map<I, F> implementation 139 impl<B, I: DoubleEndedIterator, F> DoubleEndedIterator for Map<I, F> implementation 166 impl<B, I: ExactSizeIterator, F> ExactSizeIterator for Map<I, F> implementation 180 impl<B, I: FusedIterator, F> FusedIterator for Map<I, F> where F: FnMut(I::Item) -> B {} implementation 183 unsafe impl<B, I, F> TrustedLen for Map<I, F> implementation 190 impl<B, I, F> UncheckedIterator for Map<I, F> implementation 205 unsafe impl<I, F> TrustedRandomAccess for Map<I, F> where I: TrustedRandomAccess {} implementation [all …]
|
| /third_party/rust/rust/tests/ui/typeck/ |
| D | issue-107775.rs | 27 pub struct Map { struct 28 map: HashMap<u16, fn(u8) -> Pin<Box<dyn Future<Output = ()> + Send>>>, argument 31 impl Map { implementation
|
| /third_party/rust/rust/tests/rustdoc-ui/ |
| D | recursive-deref-ice.rs | 7 pub struct Map<'hir> {} struct 8 impl<'hir> Map<'hir> { impl
|
| /third_party/rust/rust/tests/ui/nll/ |
| D | get_default.rs | 6 struct Map { struct 9 impl Map { implementation
|
| /third_party/rust/rust/tests/ui/issues/ |
| D | issue-55731.rs | 24 struct Map<I, F> { struct 28 impl<I: DistributedIteratorMulti<Source>, F, Source> DistributedIteratorMulti<Source> for Map<I, F> implementation
|
| D | issue-26056.rs | 9 trait Map: MapLookup<<Self as Map>::Key> { trait
|
| D | issue-83190.rs | 20 pub struct Map<P>(P); struct 21 impl<I, P: Parser<I, Output = ()>> Parser<I> for Map<P> { implementation
|
| /third_party/grpc/src/core/lib/promise/ |
| D | map.h | 38 class Map; variable 52 GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Map(Promise promise, Fn fn) in Map() function 91 GPR_ATTRIBUTE_ALWAYS_INLINE_FUNCTION Map(Promise promise, Fn fn) in Map() function 125 Map(Promise promise, Fn fn) { in Map() function
|
| /third_party/rust/rust/tests/ui/methods/ |
| D | method-normalize-bounds-issue-20604.rs | 46 struct Map<S> { struct 50 impl<S> Map<S> implementation
|
| /third_party/rust/rust/tests/ui/traits/object/ |
| D | exclusion.rs | 11 struct Map<A>(#[allow(unused_tuple_struct_fields)] A); struct 12 impl<A: Future> Future for Map<A> {} implementation
|
| /third_party/rust/rust/tests/ui/traits/ |
| D | map-types.rs | 5 trait Map<K, V> interface
|
| /third_party/rust/rust/tests/ui/btreemap/ |
| D | btreemap_into_iterator_lifetime.rs | 5 trait Map interface
|
| /third_party/rust/rust/compiler/rustc_mir_dataflow/src/ |
| D | value_analysis.rs | 60 fn map(&self) -> ⤅ in map() 471 pub fn flood_with(&mut self, place: PlaceRef<'_>, map: &Map, value: V) { in flood_with() 478 pub fn flood(&mut self, place: PlaceRef<'_>, map: &Map) { in flood() 482 pub fn flood_discr_with(&mut self, place: PlaceRef<'_>, map: &Map, value: V) { in flood_discr_with() 489 pub fn flood_discr(&mut self, place: PlaceRef<'_>, map: &Map) { in flood_discr() 497 pub fn insert_idx(&mut self, target: PlaceIndex, result: ValueOrPlace<V>, map: &Map) { in insert_idx() 508 pub fn insert_value_idx(&mut self, target: PlaceIndex, value: V, map: &Map) { in insert_value_idx() 522 fn insert_place_idx(&mut self, target: PlaceIndex, source: PlaceIndex, map: &Map) { in insert_place_idx() 543 pub fn assign(&mut self, target: PlaceRef<'_>, result: ValueOrPlace<V>, map: &Map) { in assign() 551 pub fn assign_discr(&mut self, target: PlaceRef<'_>, result: ValueOrPlace<V>, map: &Map) { in assign_discr() [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/ccsrc/frontend/operator/composite/ |
| D | map.h | 45 Map(const Map &map) in Map() function 99 : Map(reverse, fn_leaf) {} in Map() function
|
| /third_party/rust/rust/compiler/rustc_middle/src/hir/ |
| D | nested_filter.rs | 16 type Map = crate::hir::map::Map<'hir>; typedef 28 type Map = crate::hir::map::Map<'hir>; typedef
|
| /third_party/rust/rust/tests/ui/higher-ranked/trait-bounds/ |
| D | issue-30786.rs | 26 pub struct Map<S, F> { struct 31 impl<'a, A, F, T> Stream for &'a mut Map<A, F> argument
|
| /third_party/rust/rust/tests/ui/associated-types/ |
| D | issue-25700-2.rs | 9 pub struct Map<P, F>(P, F); struct 10 impl<P, F> Parser for Map<P, F> where F: FnMut(P) { implementation
|
| D | issue-82079.rs | 78 struct Map<C, MF> { struct 79 _inner: C, 80 _op: MF, 82 impl<
|
| /third_party/lzma/CPP/Windows/ |
| D | FileMapping.h | 43 LPVOID Map(DWORD desiredAccess, UInt64 fileOffset, SIZE_T numberOfBytesToMap) in Map() function 49 LPVOID Map(DWORD desiredAccess, UInt64 fileOffset, SIZE_T numberOfBytesToMap, LPVOID baseAddress) in Map() function
|
| /third_party/rust/rust/tests/ui/nll/ty-outlives/ |
| D | issue-53789-2.rs | 237 pub struct Map<S, F> { struct 238 source: S, 239 fun: F, 242 impl<S, F> Map<S, F> { impl
|
| /third_party/protobuf/rust/ |
| D | map.rs | 63 pub struct Map<K: Proxied, V: ProxiedInMapValue<K>> { struct 64 inner: InnerMap, argument 68 // SAFETY: `Map` is Sync because it does not implement interior mutability. argument 69 unsafe impl<K: Proxied, V: ProxiedInMapValue<K>> Sync for Map<K, V> {} implementation 73 unsafe impl<K: Proxied, V: ProxiedInMapValue<K>> Send for Map<K, V> {} implementation 75 impl<K: Proxied, V: ProxiedInMapValue<K>> SealedInternal for Map<K, V> {} implementation 77 impl<K: Proxied, V: ProxiedInMapValue<K>> Drop for Map<K, V> { implementation 106 impl<K: Proxied, V: ProxiedInMapValue<K>> Proxied for Map<K, V> { implementation 110 impl<K: Proxied, V: ProxiedInMapValue<K>> AsView for Map<K, V> { implementation 118 impl<K: Proxied, V: ProxiedInMapValue<K>> MutProxied for Map<K, V> { implementation [all …]
|
| /third_party/typescript/src/deprecatedCompat/4.0/ |
| D | renamedMapInterfaces.ts | 20 export interface Map<T> extends ESMap<string, T> { interface
|
| /third_party/rust/rust/tests/ui/borrowck/ |
| D | two-phase-surprise-no-conflict.rs | 13 struct Map { body: Body, } argument 14 impl Map { fn body(&self, _: BodyId) -> &Body { unimplemented!() } } in body() impl
|
| /third_party/typescript/tests/cases/compiler/ |
| D | declarationEmitMappedTypeDistributivityPreservesConstraints.ts | 5 type Map<T extends Fns> = { [K in keyof T]: T[K]; }; alias
|