Home
last modified time | relevance | path

Searched refs:check_draw_circle (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/plotters/src/drawing/backend_impl/
Dmocked.rs34 check_draw_circle: VecDeque<Box<dyn FnMut(RGBAColor, u32, bool, BackendCoord, u32)>>, field
73 check_draw_circle: vec![].into(), in new()
91 def_set_checker_func!(check_draw_circle, RGBAColor, u32, bool, BackendCoord, u32);
220 if let Some(mut checker) = self.check_draw_circle.pop_front() { in draw_circle()
223 if self.check_draw_circle.is_empty() { in draw_circle()
224 self.check_draw_circle.push_back(checker); in draw_circle()
/external/rust/crates/plotters/src/element/
Dbasic_shapes.rs275 m.check_draw_circle(|c, _, f, s, r| { in test_circle_element()