Home
last modified time | relevance | path

Searched refs:Into (Results 1 – 25 of 523) sorted by relevance

12345678910>>...21

/external/rust/crates/env_logger/src/
Dlib.rs439 E: Into<Env<'a>>, in from_env()
484 E: Into<Env<'a>>, in parse_env()
849 E: Into<Env<'a>>, in from_env()
967 E: Into<Cow<'a, str>>, in filter()
979 E: Into<Cow<'a, str>>, in filter_or()
980 V: Into<Cow<'a, str>>, in filter_or()
992 V: Into<Cow<'a, str>>, in default_filter_or()
1006 E: Into<Cow<'a, str>>, in write_style()
1018 E: Into<Cow<'a, str>>, in write_style_or()
1019 V: Into<Cow<'a, str>>, in write_style_or()
[all …]
/external/rust/crates/serde_json/src/value/
Dfrom.rs172 impl<T: Into<Value>> From<Vec<T>> for Value {
184 Value::Array(f.into_iter().map(Into::into).collect()) in from()
188 impl<'a, T: Clone + Into<Value>> From<&'a [T]> for Value {
200 Value::Array(f.iter().cloned().map(Into::into).collect()) in from()
204 impl<T: Into<Value>> FromIterator<T> for Value {
230 Value::Array(iter.into_iter().map(Into::into).collect()) in from_iter()
234 impl<K: Into<String>, V: Into<Value>> FromIterator<(K, V)> for Value {
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/
Dquarantine_test.cpp38 scudo::QuarantineBatch Into; in TEST() local
39 Into.init(FakePtr, 4UL); in TEST()
43 Into.merge(&From); in TEST()
45 EXPECT_EQ(Into.Count, 2UL); in TEST()
46 EXPECT_EQ(Into.Batch[0], FakePtr); in TEST()
47 EXPECT_EQ(Into.Batch[1], FakePtr); in TEST()
48 EXPECT_EQ(Into.Size, 12UL + sizeof(scudo::QuarantineBatch)); in TEST()
49 EXPECT_EQ(Into.getQuarantinedSize(), 12UL); in TEST()
58 EXPECT_TRUE(Into.Count + From.Count == scudo::QuarantineBatch::MaxCount); in TEST()
59 EXPECT_TRUE(Into.canMerge(&From)); in TEST()
[all …]
/external/scudo/standalone/tests/
Dquarantine_test.cpp38 scudo::QuarantineBatch Into; in TEST() local
39 Into.init(FakePtr, 4UL); in TEST()
43 Into.merge(&From); in TEST()
45 EXPECT_EQ(Into.Count, 2UL); in TEST()
46 EXPECT_EQ(Into.Batch[0], FakePtr); in TEST()
47 EXPECT_EQ(Into.Batch[1], FakePtr); in TEST()
48 EXPECT_EQ(Into.Size, 12UL + sizeof(scudo::QuarantineBatch)); in TEST()
49 EXPECT_EQ(Into.getQuarantinedSize(), 12UL); in TEST()
58 EXPECT_TRUE(Into.Count + From.Count == scudo::QuarantineBatch::MaxCount); in TEST()
59 EXPECT_TRUE(Into.canMerge(&From)); in TEST()
[all …]
/external/rust/crates/ppv-lite86/src/
Dtypes.rs111 + Into<vec128_storage>
120 + Into<vec128_storage>
124 BitOps128 + Store<vec128_storage> + Swap64 + MultiLane<[u128; 1]> + Into<vec128_storage>
134 + Into<vec256_storage>
144 + Into<vec256_storage>
155 + Into<vec256_storage>
164 + Into<vec256_storage>
175 + Into<vec512_storage>
184 + Into<vec512_storage>
194 + Into<vec512_storage>
/external/rust/crates/clap/src/app/
Dmod.rs80 pub fn new<S: Into<String>>(n: S) -> Self { in new()
114 pub fn with_defaults<S: Into<String>>(n: S) -> Self { in with_defaults()
187 pub fn author<S: Into<&'b str>>(mut self, author: S) -> Self { in author()
210 pub fn bin_name<S: Into<String>>(mut self, name: S) -> Self { in bin_name()
233 pub fn about<S: Into<&'b str>>(mut self, about: S) -> Self { in about()
259 pub fn long_about<S: Into<&'b str>>(mut self, about: S) -> Self { in long_about()
286 pub fn name<S: Into<String>>(mut self, name: S) -> Self { in name()
303 pub fn after_help<S: Into<&'b str>>(mut self, help: S) -> Self { in after_help()
320 pub fn before_help<S: Into<&'b str>>(mut self, help: S) -> Self { in before_help()
346 pub fn version<S: Into<&'b str>>(mut self, ver: S) -> Self { in version()
[all …]
/external/rust/crates/futures-util/src/sink/
Derr_into.rs18 Si::Error: Into<E>,
22 sink: SinkExt::sink_map_err(sink, Into::into), in new()
31 Si::Error: Into<E>,
41 S::Error: Into<E>
50 S::Error: Into<E>
/external/rust/crates/criterion-plot/src/
Dproxy.rs14 S: Into<Cow<'static, str>>, in Font()
24 S: Into<Cow<'static, str>>, in Label()
34 S: Into<Cow<'static, str>>, in Title()
44 P: Into<Cow<'static, Path>>, in Output()
/external/rust/crates/plotters/src/chart/
Daxes3d.rs65 pub fn axis_panel_style<S: Into<ShapeStyle>>(&mut self, style: S) -> &mut Self { in axis_panel_style()
70 pub fn bold_grid_style<S: Into<ShapeStyle>>(&mut self, style: S) -> &mut Self { in bold_grid_style()
75 pub fn light_grid_style<S: Into<ShapeStyle>>(&mut self, style: S) -> &mut Self { in light_grid_style()
80 pub fn label_style<S: Into<TextStyle<'b>>>(&mut self, style: S) -> &mut Self { in label_style()
108 bold_line_style: Into::<ShapeStyle>::into(&BLACK.mix(0.2)), in new()
109 light_line_style: Into::<ShapeStyle>::into(&TRANSPARENT), in new()
110 axis_panel_style: Into::<ShapeStyle>::into(&BLACK.mix(0.1)), in new()
111 axis_style: Into::<ShapeStyle>::into(&BLACK.mix(0.8)), in new()
Dmesh.rs35 pub fn axis_style<T: Into<ShapeStyle>>(&mut self, style: T) -> &mut Self { in axis_style()
96 pub fn x_desc<T: Into<String>>(&mut self, desc: T) -> &mut Self { in x_desc()
103 pub fn y_desc<T: Into<String>>(&mut self, desc: T) -> &mut Self { in y_desc()
307 pub fn axis_style<T: Into<ShapeStyle>>(&mut self, style: T) -> &mut Self { in axis_style()
327 pub fn bold_line_style<T: Into<ShapeStyle>>(&mut self, style: T) -> &mut Self { in bold_line_style()
334 pub fn light_line_style<T: Into<ShapeStyle>>(&mut self, style: T) -> &mut Self { in light_line_style()
385 pub fn x_desc<T: Into<String>>(&mut self, desc: T) -> &mut Self { in x_desc()
392 pub fn y_desc<T: Into<String>>(&mut self, desc: T) -> &mut Self { in y_desc()
/external/rust/crates/plotters/src/coord/ranged3d/
Dcartesian3d.rs37 SX: Into<X>, in with_projection()
38 SY: Into<Y>, in with_projection()
39 SZ: Into<Z>, in with_projection()
69 pub fn new<SX: Into<X>, SY: Into<Y>, SZ: Into<Z>>( in new()
/external/rust/crates/codespan-reporting/src/
Ddiagnostic.rs82 range: impl Into<Range<usize>>, in new()
95 pub fn primary(file_id: FileId, range: impl Into<Range<usize>>) -> Label<FileId> { in primary()
102 pub fn secondary(file_id: FileId, range: impl Into<Range<usize>>) -> Label<FileId> { in secondary()
107 pub fn with_message(mut self, message: impl Into<String>) -> Label<FileId> { in with_message()
187 pub fn with_code(mut self, code: impl Into<String>) -> Diagnostic<FileId> { in with_code()
193 pub fn with_message(mut self, message: impl Into<String>) -> Diagnostic<FileId> { in with_message()
/external/llvm-project/llvm/test/DebugInfo/X86/
Ddwarfdump-str-offsets-invalid.s28 .long .debug_abbrev # Offset Into Abbrev. Section
40 .quad .debug_abbrev # Offset Into Abbrev. Section
49 .long .debug_abbrev # Offset Into Abbrev. Section
58 .long .debug_abbrev # Offset Into Abbrev. Section
67 .long .debug_abbrev # Offset Into Abbrev. Section
76 .long .debug_abbrev # Offset Into Abbrev. Section
86 .quad .debug_abbrev # Offset Into Abbrev. Section
95 .long .debug_abbrev # Offset Into Abbrev. Section
105 .quad .debug_abbrev # Offset Into Abbrev. Section
Dgnu-public-names-multiple-cus-2.s14 .long 0 # Offset Into Abbrev. Section
20 .long 0 # Offset Into Abbrev. Section
/external/crosvm/devices/src/virtio/video/
Dparams.rs7 use std::convert::{From, Into, TryFrom};
50 let num_planes = Into::<u32>::into(num_planes); // as usize;
55 Into::<u32>::into(num_planes)
61 .map(|x| Into::<PlaneFormat>::into(*x))
93 p_fmts[i] = Into::<virtio_video_plane_format>::into(*pf); in to_virtio_video_params()
/external/rust/crates/plotters/src/style/font/
Dfont_desc.rs37 impl<'a, T: Into<f64>> From<(FontFamily<'a>, T)> for FontDesc<'a> {
43 impl<'a, T: Into<f64>> From<(&'a str, T)> for FontDesc<'a> {
49 impl<'a, T: Into<f64>, S: Into<FontStyle>> From<(FontFamily<'a>, T, S)> for FontDesc<'a> {
55 impl<'a, T: Into<f64>, S: Into<FontStyle>> From<(&'a str, T, S)> for FontDesc<'a> {
67 impl<'a, T: Into<FontDesc<'a>>> IntoFont<'a> for T {
/external/rust/crates/nix/src/sys/
Dselect.rs167 N: Into<Option<c_int>>, in select()
168 R: Into<Option<&'a mut FdSet>>, in select()
169 W: Into<Option<&'a mut FdSet>>, in select()
170 E: Into<Option<&'a mut FdSet>>, in select()
171 T: Into<Option<&'a mut TimeVal>>, in select()
236 N: Into<Option<c_int>>, in pselect()
237 R: Into<Option<&'a mut FdSet>>, in pselect()
238 W: Into<Option<&'a mut FdSet>>, in pselect()
239 E: Into<Option<&'a mut FdSet>>, in pselect()
240 T: Into<Option<&'a TimeSpec>>, in pselect()
[all …]
/external/rust/crates/plotters/src/element/
Dbasic_shapes.rs12 pub fn new<P: Into<Coord>, S: Into<ShapeStyle>>(pos: P, style: S) -> Self { in new()
75 pub fn new<P: Into<Vec<Coord>>, S: Into<ShapeStyle>>(points: P, style: S) -> Self { in new()
119 Into::<ShapeStyle>::into(&BLUE).stroke_width(5), in test_path_element()
136 pub fn new<S: Into<ShapeStyle>>(points: [Coord; 2], style: S) -> Self { in new()
238 pub fn new<S: Into<ShapeStyle>>(coord: Coord, size: Size, style: S) -> Self { in new()
300 pub fn new<P: Into<Vec<Coord>>, S: Into<ShapeStyle>>(points: P, style: S) -> Self { in new()
Dtext.rs22 pub fn new<S: Into<TextStyle<'a>>>(text: T, points: Coord, style: S) -> Self { in new()
68 pub fn new<S: Into<TextStyle<'a>>>(pos: Coord, style: S) -> Self { in new()
85 pub fn push_line<L: Into<T>>(&mut self, line: L) { in push_line()
176 pub fn from_str<ST: Into<&'a str>, S: Into<TextStyle<'a>>>( in from_str()
201 pub fn from_string<S: Into<TextStyle<'a>>>( in from_string()
/external/rust/crates/anyhow/tests/ui/
Dno-impl.stderr7 | doesn't satisfy `Error: Into<anyhow::Error>`
15 `Error: Into<anyhow::Error>`
19 `&Error: Into<anyhow::Error>`
/external/llvm-project/lldb/test/Shell/SymbolFile/DWARF/
Ddebug-types-line-tables.s17 .long .debug_abbrev # Offset Into Abbrev. Section
40 .long .debug_abbrev # Offset Into Abbrev. Section
63 .long .debug_abbrev # Offset Into Abbrev. Section
85 .long .debug_abbrev # Offset Into Abbrev. Section
108 .long .debug_abbrev # Offset Into Abbrev. Section
185 .long .debug_abbrev # Offset Into Abbrev. Section
/external/rust/crates/plotters/src/style/
Dtext.rs55 Into::<FontDesc>::into((self.0, self.1.in_pixels(parent), self.2)).into() in into_text_style()
61 Into::<FontDesc>::into((self.0, self.1.in_pixels(parent), self.2)).into() in into_text_style()
124 impl<'a, 'b: 'a> Into<TextStyle<'a>> for &'b TextStyle<'a> { impl
130 impl<'a, T: Into<FontDesc<'a>>> From<T> for TextStyle<'a> {
/external/rust/crates/ppv-lite86/src/x86_64/
Dmod.rs44 sse2::u128x2_sse2<S3, S4, NI>: Into<sse2::u64x2x2_sse2<S3, S4, NI>>,
45 sse2::u128x2_sse2<S3, S4, NI>: Into<sse2::u64x4_sse2<S3, S4, NI>>,
46 sse2::u128x2_sse2<S3, S4, NI>: Into<sse2::u32x4x2_sse2<S3, S4, NI>>,
47 sse2::u128x4_sse2<S3, S4, NI>: Into<sse2::u64x2x4_sse2<S3, S4, NI>>,
48 sse2::u128x4_sse2<S3, S4, NI>: Into<sse2::u32x4x4_sse2<S3, S4, NI>>,
122 impl<'a> Into<&'a [u32; 4]> for &'a vec128_storage { impl
128 impl Into<vec128_storage> for [u32; 4] { impl
157 impl Into<vec256_storage> for [u64; 4] { impl
220 impl Into<$array> for $storage { impl
/external/rust/crates/ring/src/io/
Dwriter.rs26 impl Into<usize> for LengthMeasurement {
61 impl Into<Box<[u8]>> for Writer { impl
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/
Dinvalid_abbrev_offset.s16 .long 0xa5 # Offset Into Abbrev. Section (invalid)
26 .long 0xa5 # Offset Into Abbrev. Section (invalid)

12345678910>>...21