/external/rust/crates/plotters-backend/src/ |
D | lib.rs | 70 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
|
D | style.rs | 19 pub trait BackendStyle { trait 29 impl BackendStyle for BackendColor {
|
/external/rust/crates/plotters/src/drawing/backend_impl/ |
D | mocked.rs | 6 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/ |
D | shape.rs | 2 use plotters_backend::{BackendColor, BackendStyle}; 89 impl BackendStyle for ShapeStyle {
|
D | color.rs | 4 use plotters_backend::{BackendColor, BackendStyle}; 110 impl BackendStyle for RGBAColor { 125 impl BackendStyle for RGBColor {
|
D | text.rs | 6 use plotters_backend::{BackendColor, BackendCoord, BackendStyle, BackendTextStyle};
|
/external/rust/crates/plotters-backend/src/rasterizer/ |
D | rect.rs | 1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind}; 3 pub fn draw_rect<B: DrawingBackend, S: BackendStyle>( in draw_rect()
|
D | line.rs | 1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind}; 3 pub fn draw_line<DB: DrawingBackend, S: BackendStyle>( in draw_line()
|
D | circle.rs | 1 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()
|
D | polygon.rs | 1 use crate::{BackendCoord, BackendStyle, DrawingBackend, DrawingErrorKind}; 72 pub fn fill_polygon<DB: DrawingBackend, S: BackendStyle>( in fill_polygon()
|
/external/rust/crates/plotters-svg/src/ |
D | svg.rs | 7 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/ |
D | console.rs | 4 BackendColor, BackendStyle, BackendTextStyle, DrawingBackend, DrawingErrorKind, 89 fn draw_line<S: BackendStyle>( in draw_line()
|