Home
last modified time | relevance | path

Searched refs:Display (Results 1 – 25 of 155) sorted by relevance

1234567

/linux/rust/kernel/
H A Dfmt.rs154 /// A copy of [`core::fmt::Display`] that allows us to implement it for foreign types.
156 /// Types should implement this trait rather than [`core::fmt::Display`]. Together with the
158 /// core) which do not implement [`core::fmt::Display`] directly.
161 pub trait Display {
162 /// Same as [`core::fmt::Display::fmt`].
166 impl<T: ?Sized + Display> Display for &T {
168 Display::fmt(*self, f)
172 impl<T: ?Sized + Display> core::fmt::Display fo
40 pub trait Display { global() interface
45 impl<T: ?Sized + Display> Display for &T { global() impl
[all...]
/linux/samples/rust/
H A Drust_print_main.rs39 // Both `i32` and `&str` implement `Display`. This enables us to express a unified in arc_print()
41 // type `Arc<dyn Display>`. in arc_print()
43 use kernel::fmt::Display; in arc_print()
44 fn arc_dyn_print(arc: &Arc<dyn Display>) { in arc_print() argument
45 pr_info!("Arc<dyn Display> says {arc}"); in arc_print()
48 let a_i32_display: Arc<dyn Display> = Arc::new(42i32, GFP_KERNEL)?; in arc_print()
49 let a_str_display: Arc<dyn Display> = a.clone(); in arc_print()
/linux/Documentation/ABI/testing/
H A Dsysfs-class-mei21 Description: Display fw status registers content
36 Description: Display the negotiated HBM protocol version.
45 Description: Display the driver HBM protocol version.
62 Description: Display the ME firmware version.
73 Description: Display the ME device state.
88 Description: Display trc status register content
98 Description: Display kind of the device
H A Dsysfs-platform-wilco-ec15 Display Wilco Embedded Controller firmware build date.
22 Display Wilco Embedded Controller build revision.
30 Display Wilco Embedded Controller model number.
56 Display Wilco Embedded Controller firmware version.
/linux/rust/proc-macro2/
H A Dlib.rs175 use core::fmt::{self, Debug, Display};
316 impl Display for TokenStream {
318 Display::fmt(&self.inner, f) in fmt()
341 impl Display for LexError {
343 Display::fmt(&self.inner, f) in fmt()
605 impl Display for TokenTree {
608 TokenTree::Group(t) => Display::fmt(t, f), in fmt()
609 TokenTree::Ident(t) => Display::fmt(t, f), in fmt()
610 TokenTree::Punct(t) => Display::fmt(t, f), in fmt()
611 TokenTree::Literal(t) => Display::fmt(t, f), in fmt()
[all …]
H A Dwrapper.rs14 use core::fmt::{self, Debug, Display};
130 impl Display for TokenStream {
133 TokenStream::Compiler(tts) => Display::fmt(&tts.clone().into_token_stream(), f), in fmt()
134 TokenStream::Fallback(tts) => Display::fmt(tts, f), in fmt()
300 impl Display for LexError {
303 LexError::Compiler(e) => Display::fmt(e, f), in fmt()
304 LexError::Fallback(e) => Display::fmt(e, f), in fmt()
307 Display::fmt(&fallback, f) in fmt()
646 impl Display for Group {
649 Group::Compiler(group) => Display::fmt(group, formatter), in fmt()
[all …]
H A Dfallback.rs18 use core::fmt::{self, Debug, Display, Write};
212 impl Display for LexError {
218 impl Display for TokenStream {
227 TokenTree::Group(tt) => Display::fmt(tt, f), in fmt()
228 TokenTree::Ident(tt) => Display::fmt(tt, f), in fmt()
231 Display::fmt(tt, f) in fmt()
233 TokenTree::Literal(tt) => Display::fmt(tt, f), in fmt()
738 impl Display for Group {
755 Display::fmt(&self.stream, f)?; in fmt()
889 impl Display for Ident {
[all …]
/linux/drivers/gpu/drm/meson/
H A DKconfig3 tristate "DRM Support for Amlogic Meson Display Controller"
18 tristate "HDMI Synopsys Controller support for Amlogic Meson Display"
25 tristate "MIPI DSI Synopsys Controller support for Amlogic Meson Display"
/linux/rust/quote/
H A Dident_fragment.rs55 fmt::Display::fmt(id, f) in fmt()
57 fmt::Display::fmt(&id[..], f) in fmt()
82 fmt::Display::fmt(self, f)
/linux/rust/syn/
H A Derror.rs11 use std::fmt::{self, Debug, Display};
160 pub fn new<T: Display>(span: Span, message: T) -> Self { in new()
191 pub fn new_spanned<T: ToTokens, U: Display>(tokens: T, message: U) -> Self { in new_spanned()
329 pub(crate) fn new_at<T: Display>(scope: Span, cursor: Cursor, message: T) -> Error { in new_at()
339 pub(crate) fn new2<T: Display>(start: Span, end: Span, message: T) -> Error { in new2()
374 impl Display for Error {
H A Dmeta.rs12 use std::fmt::Display;
380 pub fn error(&self, msg: impl Display) -> Error { in error()
H A Dlifetime.rs7 use std::fmt::{self, Display};
74 impl Display for Lifetime {
/linux/drivers/video/fbdev/mmp/fb/
H A DKconfig3 tristate "fb driver for Marvell MMP Display Subsystem"
8 fb driver for Marvell MMP Display Subsystem
/linux/Documentation/fb/
H A Dsm501.rst10 sm501fb.bpp= SM501 Display driver:
13 sm501fb.mode= SM501 Display driver:
/linux/drivers/video/fbdev/mmp/
H A DKconfig3 tristate "Marvell MMP Display Subsystem support"
6 Marvell Display Subsystem support.
/linux/Documentation/userspace-api/media/dvb/
H A Dlegacy_dvb_osd.rst14 The DVB OSD device controls the OnScreen-Display of the AV7110 based
481 - 4:2:2 YCRCB Graphic Display
487 - 4:4:4 YCRCB Graphic Display
499 - True Size Normal MPEG Video Display
505 - MPEG Video Display Half Resolution
511 - MPEG Video Display Quarter Resolution
517 - MPEG Video Display Double Resolution
523 - True Size MPEG Video Display Half Resolution
529 - True Size MPEG Video Display Quarter Resolution
535 - True Size MPEG Video Display Double Resolution
[all …]
/linux/drivers/media/platform/ti/omap/
H A DKconfig8 tristate "OMAP2/OMAP3 V4L2-Display driver"
17 V4L2 Display driver support for OMAP2/3 based boards.
/linux/drivers/gpu/drm/renesas/rcar-du/
H A DKconfig3 tristate "DRM Support for R-Car Display Unit"
42 Enable support for the R-Car Display Unit embedded LVDS encoders.
58 Enable support for the R-Car Display Unit embedded MIPI DSI encoders.
/linux/Documentation/devicetree/bindings/leds/
H A Dleds-cpcap.txt9 * "motorola,cpcap-led-mdl" (Main Display Lighting)
11 * "motorola,cpcap-led-adl" (Aux Display Lighting)
/linux/tools/perf/Documentation/
H A Dperf-c2c.txt108 Display only statistic tables and force stdio mode.
111 Display full length of symbols.
232 Rmt/Lcl Hitm (Display with HITM types)
235 Peer Snoop (Display with peer type)
274 HITM - Rmt, Lcl (Display with HITM types)
277 Peer Snoop - Rmt, Lcl (Display with peer type)
296 cycles - rmt hitm, lcl hitm, load (Display with HITM types)
299 cycles - rmt peer, lcl peer, load (Display with peer type)
323 Node{cpus %hitms %stores} (Display with HITM types)
324 Node{cpus %peers %stores} (Display wit
[all...]
H A Dperf.txt21 Display perf version.
27 Display or set exec path.
30 Display html documentation path.
/linux/Documentation/devicetree/bindings/display/ti/
H A Dti,omap2-dss.txt1 Texas Instruments OMAP2 Display Subsystem
5 description about OMAP Display Subsystem bindings.
/linux/scripts/
H A Dgenerate_rust_target.rs15 fmt::{Display, Formatter, Result},
46 impl Display for Value {
116 impl Display for TargetSpec {
/linux/rust/zerocopy/src/
H A Derror.rs228 impl<A: fmt::Display, S: fmt::Display, V: fmt::Display> fmt::Display for ConvertError<A, S, V> {
243 A: fmt::Display + fmt::Debug,
244 S: fmt::Display + fmt::Debug,
245 V: fmt::Display + fmt::Debug,
395 impl<Src, Dst: ?Sized> fmt::Display for AlignmentError<Src, Dst>
557 impl<Src, Dst: ?Sized> fmt::Display for SizeError<Src, Dst>
694 impl<Src, Dst: ?Sized> fmt::Display for ValidityError<Src, Dst>
/linux/drivers/video/fbdev/omap2/omapfb/dss/
H A DKconfig40 DPI Interface. This is the Parallel Display Interface.
69 SDI (Serial Display Interface) support.
77 MIPI DSI (Display Serial Interface) support.

1234567