Home
last modified time | relevance | path

Searched refs:BackendStyle (Results 1 – 12 of 12) sorted by relevance

/external/rust/crates/plotters-backend/src/
Dlib.rs70 pub use style::{BackendColor, BackendStyle};
136 fn draw_line<S: BackendStyle>( in draw_line()
150 fn draw_rect<S: BackendStyle>( in draw_rect()
163 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument
197 fn draw_circle<S: BackendStyle>( in draw_circle()
207 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
Dstyle.rs19 pub trait BackendStyle { trait
29 impl BackendStyle for BackendColor {
/external/rust/crates/plotters/src/drawing/backend_impl/
Dmocked.rs6 BackendColor, BackendCoord, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind,
149 fn draw_line<S: BackendStyle>( in draw_line()
169 fn draw_rect<S: BackendStyle>( in draw_rect()
190 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument
209 fn draw_circle<S: BackendStyle>( in draw_circle()
230 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
/external/rust/crates/plotters/src/style/
Dshape.rs2 use plotters_backend::{BackendColor, BackendStyle};
89 impl BackendStyle for ShapeStyle {
Dcolor.rs4 use plotters_backend::{BackendColor, BackendStyle};
110 impl BackendStyle for RGBAColor {
125 impl BackendStyle for RGBColor {
Dtext.rs6 use plotters_backend::{BackendColor, BackendCoord, BackendStyle, BackendTextStyle};
/external/rust/crates/plotters-backend/src/rasterizer/
Drect.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
3 pub fn draw_rect<B: DrawingBackend, S: BackendStyle>( in draw_rect()
Dline.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
3 pub fn draw_line<DB: DrawingBackend, S: BackendStyle>( in draw_line()
Dcircle.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
86 fn draw_sweep_line<B: DrawingBackend, S: BackendStyle>( in draw_sweep_line()
124 fn draw_annulus<B: DrawingBackend, S: BackendStyle>( in draw_annulus()
275 pub fn draw_circle<B: DrawingBackend, S: BackendStyle>( in draw_circle()
Dpolygon.rs1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind};
72 pub fn fill_polygon<DB: DrawingBackend, S: BackendStyle>( in fill_polygon()
/external/rust/crates/plotters-svg/src/
Dsvg.rs7 BackendColor, BackendCoord, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind,
241 fn draw_line<S: BackendStyle>( in draw_line()
266 fn draw_rect<S: BackendStyle>( in draw_rect()
300 fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in draw_path() argument
328 fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>( in fill_polygon() argument
354 fn draw_circle<S: BackendStyle>( in draw_circle()
/external/rust/crates/plotters/examples/
Dconsole.rs4 BackendColor, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind,
89 fn draw_line<S: BackendStyle>( in draw_line()