Home
last modified time | relevance | path

Searched defs:Item (Results 1 – 25 of 783) sorted by relevance

12345678910>>...32

/external/rust/crates/rayon/src/iter/
Dfrom_par_iter.rs28 I: IntoParallelIterator<Item = T>, in from_par_iter()
41 I: IntoParallelIterator<Item = T>, in from_par_iter()
55 I: IntoParallelIterator<Item = T>, in from_par_iter()
69 I: IntoParallelIterator<Item = T>, in from_par_iter()
87 I: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
104 I: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
118 I: IntoParallelIterator<Item = V>, in from_par_iter()
131 I: IntoParallelIterator<Item = V>, in from_par_iter()
141 I: IntoParallelIterator<Item = char>, in from_par_iter()
151 I: IntoParallelIterator<Item = &'a char>, in from_par_iter()
[all …]
Dextend.rs15 F: FnOnce(&mut C, &LinkedList<Vec<I::Item>>), in extend()
16 C: Extend<I::Item>, in extend()
70 I: IntoParallelIterator<Item = T>, in par_extend()
83 I: IntoParallelIterator<Item = &'a T>, in par_extend()
97 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
111 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
124 I: IntoParallelIterator<Item = T>, in par_extend()
137 I: IntoParallelIterator<Item = &'a T>, in par_extend()
160 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
176 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DRecordSerialization.h69 template <typename T> Error consume(BinaryStreamReader &Reader, T *&Item) { in consume()
82 T &Item; member
87 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) { in serialize_conditional()
98 ArrayRef<T> &Item; member
116 std::vector<T> &Item; member
137 std::vector<StringRef> &Item; member
148 ArrayRef<T> &Item; member
158 T &Item; member
162 serialize_array_impl<T, U> serialize_array(ArrayRef<T> &Item, U Func) { in serialize_array()
167 serialize_null_term_string_array(std::vector<StringRef> &Item) { in serialize_null_term_string_array()
[all …]
/external/llvm/include/llvm/DebugInfo/CodeView/
DRecordSerialization.h74 std::error_code consume(ArrayRef<uint8_t> &Data, T *&Item) { in consume()
87 T &Item; member
92 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) { in serialize_conditional()
117 ArrayRef<T> &Item; member
135 std::vector<T> &Item; member
159 std::vector<StringRef> &Item; member
171 ArrayRef<T> &Item; member
181 T &Item; member
185 serialize_array_impl<T, U> serialize_array(ArrayRef<T> &Item, U Func) { in serialize_array()
190 serialize_null_term_string_array(std::vector<StringRef> &Item) { in serialize_null_term_string_array()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFormatVariadicDetails.h33 T Item; variable
36 explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {} in provider_format_adapter()
45 T Item; variable
48 explicit stream_operator_format_adapter(T &&Item) in stream_operator_format_adapter()
131 build_format_adapter(T &&Item) { in build_format_adapter()
138 build_format_adapter(T &&Item) { in build_format_adapter()
145 build_format_adapter(T &&Item) { in build_format_adapter()
158 build_format_adapter(T &&Item) { in build_format_adapter()
DFormatAdapters.h22 explicit FormatAdapter(T &&Item) : Item(std::forward<T>(Item)) {} in FormatAdapter()
24 T Item; variable
34 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) in AlignAdapter()
49 PadAdapter(T &&Item, size_t Left, size_t Right) in PadAdapter()
64 RepeatAdapter(T &&Item, size_t Count) in RepeatAdapter()
77 ErrorAdapter(Error &&Item) : FormatAdapter(std::move(Item)) {} in ErrorAdapter()
91 detail::PadAdapter<T> fmt_pad(T &&Item, size_t Left, size_t Right) { in fmt_pad()
96 detail::RepeatAdapter<T> fmt_repeat(T &&Item, size_t Count) { in fmt_repeat()
103 inline detail::ErrorAdapter fmt_consume(Error &&Item) { in fmt_consume()
/external/tensorflow/tensorflow/core/framework/
Dlocal_rendezvous.cc33 struct LocalRendezvous::Item { struct in tensorflow::LocalRendezvous
34 enum Type { kSend = 0, kRecv = 1 };
36 Item(Rendezvous::Args send_args, const Tensor& value, bool is_dead) in Item() function
42 Item(Rendezvous::Args recv_args, Rendezvous::DoneCallback waiter, in Item() argument
49 ~Item() { in ~Item()
60 const Rendezvous::Args args;
61 const Type type;
64 Item* next = nullptr;
68 union {
80 Item(Rendezvous::Args args, Type type) : args(args), type(type) { in Item() function
/external/rust/crates/itertools/src/
Dtuple_impl.rs47 type Item = T::Item; typedef
49 fn next(&mut self) -> Option<Self::Item> { in next()
92 where I: Iterator<Item = T::Item>, in tuples()
105 type Item = T; typedef
107 fn next(&mut self) -> Option<Self::Item> { in next()
148 where I: Iterator<Item = T::Item>, in tuple_windows()
175 type Item = T; typedef
177 fn next(&mut self) -> Option<Self::Item> { in next()
214 where I: Iterator<Item = T::Item> + Clone + ExactSizeIterator, in circular_tuple_windows()
232 type Item = T; typedef
[all …]
Dlib.rs445 where J: IntoIterator<Item = Self::Item>, in interleave()
463 where J: IntoIterator<Item = Self::Item>, in interleave_shortest()
504 F: FnMut() -> Self::Item in intersperse_with()
698 where Self: Sized + Iterator<Item = T::Item>, in tuple_windows()
733 where Self: Sized + Clone + Iterator<Item = T::Item> + ExactSizeIterator, in circular_tuple_windows()
771 where Self: Sized + Iterator<Item = T::Item>, in tuples()
843 where Self: Iterator<Item = Result<T, E>> + Sized, in map_results()
861 where Self: Iterator<Item = Result<T, E>> + Sized, in map_ok()
879 where Self: Iterator<Item = Result<T, E>> + Sized, in filter_ok()
897 where Self: Iterator<Item = Result<T, E>> + Sized, in filter_map_ok()
[all …]
/external/tensorflow/tensorflow/core/distributed_runtime/
Dgraph_mgr.h120 struct Item : public core::RefCounted { struct
127 string session;
130 string handle;
132 std::unique_ptr<FunctionLibraryDefinition> lib_def;
135 std::unique_ptr<ProcessFunctionLibraryRuntime> proc_flr;
138 std::vector<ExecutionUnit> units;
164 std::unordered_map<string, Item*> table_; argument
/external/rust/crates/nom/src/number/
Dstreaming.rs52 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u8()
82 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u16()
115 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u24()
148 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u32()
181 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u64()
214 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u128()
244 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i8()
264 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i16()
284 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i24()
309 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i32()
[all …]
Dcomplete.rs54 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u8()
84 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u16()
117 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u24()
150 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u32()
183 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u64()
217 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_u128()
250 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i8()
273 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i16()
296 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i24()
324 I: Slice<RangeFrom<usize>> + InputIter<Item = u8> + InputLength, in be_i32()
[all …]
/external/rust/crates/itertools/src/adaptors/
Dmod.rs43 J: IntoIterator<Item = I::Item> in interleave()
56 type Item = I::Item; typedef
58 fn next(&mut self) -> Option<Self::Item> { in next()
104 J: Iterator<Item = I::Item> in interleave_shortest()
117 type Item = I::Item; typedef
120 fn next(&mut self) -> Option<Self::Item> { in next()
203 pub fn into_parts(self) -> (Option<I::Item>, I) { in into_parts()
212 pub fn put_back(&mut self, x: I::Item) { in put_back()
220 type Item = I::Item; typedef
222 fn next(&mut self) -> Option<Self::Item> { in next()
[all …]
/external/rust/crates/tinyvec/src/
Darrayvec_drain.rs16 pub(crate) fn new<A, R>(arr: &'a mut ArrayVec<A>, range: R) -> Self in new()
59 fn next_back(&mut self) -> Option<Self::Item> { in next_back()
64 fn nth_back(&mut self, n: usize) -> Option<Self::Item> { in nth_back()
70 type Item = T; typedef
71 fn next(&mut self) -> Option<Self::Item> { in next()
77 fn nth(&mut self, n: usize) -> Option<Self::Item> { in nth()
80 fn last(self) -> Option<Self::Item> { in last()
85 F: FnMut(Self::Item), in for_each()
/external/rust/crates/codespan-reporting/examples/
Dreusable_diagnostic.rs95 struct Item { struct
100 impl Item { argument
101 fn new(range: Range<usize>, content: impl Into<String>) -> Item { in new()
/external/rust/crates/futures-util/src/stream/
Dselect_all.rs96 type Item = St::Item; typedef
98 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next()
150 fn from_iter<T: IntoIterator<Item = St>>(iter: T) -> Self { in from_iter()
156 fn extend<T: IntoIterator<Item = St>>(&mut self, iter: T) { in extend()
164 type Item = St; typedef
173 type Item = &'a St; typedef
182 type Item = &'a mut St; typedef
203 type Item = &'a St; typedef
205 fn next(&mut self) -> Option<Self::Item> { in next()
221 type Item = &'a mut St; typedef
[all …]
/external/rust/crates/tinyvec/src/array/
Dgenerated_impl.rs8 type Item = T; typedef
30 type Item = T; typedef
52 type Item = T; typedef
74 type Item = T; typedef
96 type Item = T; typedef
118 type Item = T; typedef
140 type Item = T; typedef
169 type Item = T; typedef
199 type Item = T; typedef
230 type Item = T; typedef
[all …]
/external/rust/crates/rayon/src/
Darray.rs19 type Item = &'data T; typedef
29 type Item = &'data mut T; typedef
39 type Item = T; typedef
54 type Item = T; typedef
58 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
71 C: Consumer<Self::Item>, in drive()
82 CB: ProducerCallback<Self::Item>, in with_producer()
Dvec.rs19 type Item = &'data T; typedef
28 type Item = &'data mut T; typedef
43 type Item = T; typedef
52 type Item = T; typedef
56 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
69 C: Consumer<Self::Item>, in drive()
80 CB: ProducerCallback<Self::Item>, in with_producer()
89 type Item = T; typedef
109 type Item = T; typedef
113 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
[all …]
Dpar_either.rs11 type Item = L::Item; typedef
15 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
35 C: Consumer<Self::Item>, in drive()
49 CB: ProducerCallback<Self::Item>, in with_producer()
67 I: IntoParallelIterator<Item = T>, in par_extend()
/external/rust/crates/fallible-streaming-iterator/src/
Dlib.rs28 type Item: ?Sized; typedef
45 fn get(&self) -> Option<&Self::Item>; in get()
51 fn next(&mut self) -> Result<Option<&Self::Item>, Self::Error> { in next()
124 fn find<F>(&mut self, mut f: F) -> Result<Option<&Self::Item>, Self::Error> in find()
148 F: FnMut(&Self::Item), in for_each()
207 fn nth(&mut self, n: usize) -> Result<Option<&Self::Item>, Self::Error> { in nth()
300 fn next_back(&mut self) -> Result<Option<&Self::Item>, Self::Error> { in next_back()
310 type Item = I::Item; typedef
319 fn get(&self) -> Option<&I::Item> { in get()
329 fn next(&mut self) -> Result<Option<&I::Item>, I::Error> { in next()
[all …]
/external/rust/crates/smallvec/src/
Dlib.rs350 type Item = T::Item; typedef
353 fn next(&mut self) -> Option<T::Item> { in next()
367 fn next_back(&mut self) -> Option<T::Item> { in next_back()
425 unsafe fn inline(&self) -> *const A::Item { in inline()
429 unsafe fn inline_mut(&mut self) -> *mut A::Item { in inline_mut()
443 unsafe fn heap(&self) -> (*mut A::Item, usize) { in heap()
447 unsafe fn heap_mut(&mut self) -> &mut (*mut A::Item, usize) { in heap_mut()
451 fn from_heap(ptr: *mut A::Item, len: usize) -> SmallVecData<A> { in from_heap()
474 unsafe fn inline(&self) -> *const A::Item { in inline()
481 unsafe fn inline_mut(&mut self) -> *mut A::Item { in inline_mut()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFormatVariadicDetails.h31 T Item; variable
34 explicit provider_format_adapter(T &&Item) : Item(Item) {} in provider_format_adapter()
92 build_format_adapter(T &&Item) { in build_format_adapter()
99 build_format_adapter(T &&Item) { in build_format_adapter()
106 build_format_adapter(T &&Item) { in build_format_adapter()
/external/rust/crates/unicode-normalization/src/
Dquick_check.rs21 fn quick_check<F, I>(s: I, is_allowed: F, stream_safe: bool) -> IsNormalized in quick_check()
72 pub fn is_nfc_quick<I: Iterator<Item = char>>(s: I) -> IsNormalized { in is_nfc_quick()
78 pub fn is_nfkc_quick<I: Iterator<Item = char>>(s: I) -> IsNormalized { in is_nfkc_quick()
84 pub fn is_nfd_quick<I: Iterator<Item = char>>(s: I) -> IsNormalized { in is_nfd_quick()
90 pub fn is_nfkd_quick<I: Iterator<Item = char>>(s: I) -> IsNormalized { in is_nfkd_quick()
96 pub fn is_nfc_stream_safe_quick<I: Iterator<Item = char>>(s: I) -> IsNormalized { in is_nfc_stream_safe_quick()
102 pub fn is_nfd_stream_safe_quick<I: Iterator<Item = char>>(s: I) -> IsNormalized { in is_nfd_stream_safe_quick()
/external/rust/crates/hashbrown/src/external_trait_impls/rayon/
Dset.rs24 type Item = T; typedef
28 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
46 type Item = T; typedef
50 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
70 type Item = &'a T; typedef
74 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
99 type Item = &'a T; typedef
103 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
132 type Item = &'a T; typedef
136 C: UnindexedConsumer<Self::Item>, in drive_unindexed()
[all …]

12345678910>>...32