Home
last modified time | relevance | path

Searched refs:copy_within (Results 1 – 25 of 242) sorted by relevance

12345678910

/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/image-0.23.4/src/
H A Dimage.rs680 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1033 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1034 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1035 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1036 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1037 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1038 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1057 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1076 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1095 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
H A Dbuffer.rs821 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() function
1158 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1159 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_image_buffer_copy_within_oob()
1160 assert!(!image.copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1161 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_image_buffer_copy_within_oob()
1162 assert!(!image.copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1163 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_image_buffer_copy_within_oob()
1182 assert!(image.copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_image_buffer_copy_within_tl()
1201 assert!(image.copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_image_buffer_copy_within_tr()
1220 assert!(image.copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_image_buffer_copy_within_bl()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/image/src/
H A Dimage.rs651 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1004 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1005 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1006 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1007 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1008 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1009 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1028 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1047 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1066 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
H A Dbuffer.rs927 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() function
1264 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1265 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_image_buffer_copy_within_oob()
1266 assert!(!image.copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1267 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_image_buffer_copy_within_oob()
1268 assert!(!image.copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1269 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_image_buffer_copy_within_oob()
1288 assert!(image.copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_image_buffer_copy_within_tl()
1307 assert!(image.copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_image_buffer_copy_within_tr()
1326 assert!(image.copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_image_buffer_copy_within_bl()
[all …]
/dports/graphics/viu/viu-1.1/cargo-crates/image-0.22.5/src/
H A Dimage.rs643 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
995 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
996 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
997 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
998 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
999 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1000 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1019 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1038 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1057 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
H A Dbuffer.rs925 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() function
1254 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1255 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_image_buffer_copy_within_oob()
1256 assert!(!image.copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1257 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_image_buffer_copy_within_oob()
1258 assert!(!image.copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_image_buffer_copy_within_oob()
1259 assert!(!image.copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_image_buffer_copy_within_oob()
1278 assert!(image.copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_image_buffer_copy_within_tl()
1297 assert!(image.copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_image_buffer_copy_within_tr()
1316 assert!(image.copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_image_buffer_copy_within_bl()
[all …]
/dports/graphics/viu/viu-1.1/cargo-crates/image-0.23.9/src/
H A Dimage.rs744 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1097 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1098 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1099 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1100 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1101 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1102 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1121 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1140 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1159 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/security/gpg-tui/gpg-tui-0.8.2/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/www/zola/zola-0.15.2/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/sysutils/onefetch/onefetch-2.10.2/cargo-crates/image-0.23.14/src/
H A Dimage.rs886 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1281 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1282 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1283 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1284 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1285 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1286 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1305 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1324 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1343 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/image-0.23.12/src/
H A Dimage.rs816 fn copy_within(&mut self, source: Rect, x: u32, y: u32) -> bool { in copy_within() method
1169 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 5, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1170 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 5 }, 0, 0)); in test_generic_image_copy_within_oob()
1171 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1172 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 1, 0)); in test_generic_image_copy_within_oob()
1173 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 4, height: 4 }, 0, 0)); in test_generic_image_copy_within_oob()
1174 … assert!(!image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 4, height: 4 }, 0, 1)); in test_generic_image_copy_within_oob()
1193 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 0, width: 3, height: 3 }, 1, 1)); in test_generic_image_copy_within_tl()
1212 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 1, y: 0, width: 3, height: 3 }, 0, 1)); in test_generic_image_copy_within_tr()
1231 … assert!(image.sub_image(0, 0, 4, 4).copy_within(Rect { x: 0, y: 1, width: 3, height: 3 }, 1, 0)); in test_generic_image_copy_within_bl()
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/standback-0.2.17/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/standback/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
/dports/www/ffsend/ffsend-ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98/cargo-crates/standback-0.2.17/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
/dports/sysutils/vector/vector-0.10.0/cargo-crates/standback-0.2.8/src/
H A Dv1_37.rs45 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
51 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
/dports/www/xh/xh-0.14.1/cargo-crates/standback-0.2.17/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/standback-0.2.17/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/standback-0.2.17/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize)
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in from_waker()
/dports/multimedia/neolink/neolink-cf54129/cargo-crates/standback-0.2.17/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/standback-0.2.17/src/
H A Dv1_37.rs44 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method
50 fn copy_within<R: RangeBounds<usize>>(&mut self, src: R, dest: usize) in copy_within() method

12345678910