/external/rust/crates/plotters/src/style/ |
D | shape.rs | 9 pub stroke_width: u32, field 18 stroke_width: self.stroke_width, in filled() 22 pub fn stroke_width(&self, width: u32) -> Self { in stroke_width() method 26 stroke_width: width, in stroke_width() 36 stroke_width: 1, in from() 45 fn stroke_width(&self) -> u32 { in stroke_width() method 46 self.stroke_width in stroke_width()
|
D | color.rs | 45 fn stroke_width(&self, width: u32) -> ShapeStyle in stroke_width() method 49 Into::<ShapeStyle>::into(self).stroke_width(width) in stroke_width()
|
/external/ImageMagick/coders/ |
D | label.c | 150 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage() 151 image->rows=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage() 177 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage() 178 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage() 207 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage() 208 height=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage() 237 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadLABELImage() 239 image->columns=(size_t) floor(draw_info->pointsize+draw_info->stroke_width+ in ReadLABELImage() 242 image->rows=(size_t) floor(metrics.height+draw_info->stroke_width+0.5); in ReadLABELImage() 244 image->rows=(size_t) floor(draw_info->pointsize+draw_info->stroke_width+ in ReadLABELImage()
|
D | caption.c | 184 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadCAPTIONImage() 199 draw_info->interline_spacing+draw_info->stroke_width)+0.5); in ReadCAPTIONImage() 252 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadCAPTIONImage() 254 draw_info->stroke_width+0.5); in ReadCAPTIONImage() 282 width=(size_t) floor(metrics.width+draw_info->stroke_width+0.5); in ReadCAPTIONImage() 284 draw_info->stroke_width+0.5); in ReadCAPTIONImage()
|
/external/rust/crates/plotters-backend/src/rasterizer/ |
D | path.rs | 104 pub fn polygonize(vertices: &[BackendCoord], stroke_width: u32) -> Vec<BackendCoord> { in polygonize() 111 traverse_vertices(vertices.iter(), stroke_width, |v| ret.push(v)); in polygonize() 112 traverse_vertices(vertices.iter().rev(), stroke_width, |v| ret.push(v)); in polygonize()
|
D | line.rs | 13 if style.stroke_width() != 1 { in draw_line() 24 let r = f64::from(style.stroke_width()) / 2.0; in draw_line()
|
D | circle.rs | 286 if !fill && style.stroke_width() != 1 { in draw_circle() 287 let inner_radius = radius - (style.stroke_width() / 2).min(radius); in draw_circle() 288 radius += style.stroke_width() / 2; in draw_circle()
|
/external/rust/crates/plotters/src/drawing/backend_impl/ |
D | mocked.rs | 160 checker(color, style.stroke_width(), from, to); in draw_line() 181 checker(color, style.stroke_width(), fill, upper_left, bottom_right); in draw_rect() 200 checker(color, style.stroke_width(), path.into_iter().collect()); in draw_path() 221 checker(color, style.stroke_width(), fill, center, radius); in draw_circle()
|
/external/igt-gpu-tools/overlay/ |
D | chart.c | 44 chart->stroke_width = 2; in chart_init() 61 chart->stroke_width = width; in chart_set_stroke_width() 215 cairo_set_line_width(cr, chart->stroke_width); in chart_draw()
|
D | chart.h | 45 double stroke_width; member
|
/external/rust/crates/criterion/src/plot/plotters_backend/ |
D | distributions.rs | 103 DARK_BLUE.mix(0.25).filled().stroke_width(3), in abs_distribution() 114 DARK_BLUE.filled().stroke_width(3), in abs_distribution() 257 DARK_BLUE.mix(0.25).filled().stroke_width(3), in rel_distribution() 268 DARK_BLUE.filled().stroke_width(3), in rel_distribution()
|
D | regression.rs | 89 DARK_BLUE.filled().stroke_width(2), in regression_figure() 206 PathElement::new(vec![(x, y), (x + 20, y)], DARK_RED.filled().stroke_width(2)) in regression_comparison_figure() 223 DARK_BLUE.filled().stroke_width(2), in regression_comparison_figure()
|
D | pdf.rs | 92 DARK_RED.filled().stroke_width(2), in pdf_comparison_figure() 101 DARK_BLUE.filled().stroke_width(2), in pdf_comparison_figure() 166 DARK_BLUE.filled().stroke_width(2), in pdf_small()
|
D | t_test.rs | 52 DARK_BLUE.filled().stroke_width(2), in t_test()
|
/external/rust/crates/plotters-backend/src/ |
D | style.rs | 24 fn stroke_width(&self) -> u32 { in stroke_width() method
|
D | lib.rs | 172 if style.stroke_width() == 1 { in draw_path() 185 let v = rasterizer::polygonize(&p[..], style.stroke_width()); in draw_path()
|
/external/rust/crates/plotters/src/element/ |
D | errorbar.rs | 136 let v = ErrorBar::new_vertical(100, 20, 50, 70, WHITE.filled().stroke_width(5), 3); in test_preserve_stroke_width() 137 let h = ErrorBar::new_horizontal(100, 20, 50, 70, WHITE.filled().stroke_width(5), 3); in test_preserve_stroke_width()
|
D | basic_shapes.rs | 119 Into::<ShapeStyle>::into(&BLUE).stroke_width(5), in test_path_element() 203 Color::stroke_width(&BLUE, 5), in test_rect_element()
|
/external/freetype/src/cid/ |
D | cidtoken.h | 75 T1_FIELD_FIXED( "StrokeWidth", stroke_width, 0 )
|
/external/freetype/src/type1/ |
D | t1tokens.h | 109 T1_FIELD_FIXED( "StrokeWidth", stroke_width, T1_FIELD_DICT_FONTDICT )
|
/external/freetype/include/freetype/internal/ |
D | t1types.h | 127 FT_Fixed stroke_width; member
|
/external/rust/crates/plotters/src/series/ |
D | line_series.rs | 82 Into::<ShapeStyle>::into(&RED).stroke_width(3), in test_line_series()
|
/external/freetype/src/cff/ |
D | cfftoken.h | 40 CFF_FIELD_NUM ( 0x108, stroke_width, "StrokeWidth" )
|
/external/ImageMagick/MagickCore/ |
D | draw.h | 224 stroke_width; member
|
/external/rust/crates/plotters-svg/src/ |
D | svg.rs | 254 ("stroke-width", &format!("{}", style.stroke_width())), in draw_line() 313 ("stroke-width", &format!("{}", style.stroke_width())), in draw_path() 377 ("stroke-width", &format!("{}", style.stroke_width())), in draw_circle()
|