(@NotNull Rect r)
| 377 | } |
| 378 | |
| 379 | @NotNull @Contract("_ -> this") |
| 380 | public boolean quickReject(@NotNull Rect r) { |
| 381 | try { |
| 382 | assert _ptr != 0 : "Canvas is closed"; |
| 383 | assert r != null : "Can’t quickReject with r == null"; |
| 384 | Stats.onNativeCall(); |
| 385 | return _nQuickReject(_ptr, r._left, r._top, r._right, r._bottom); |
| 386 | } finally { |
| 387 | ReferenceUtil.reachabilityFence(this); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | @NotNull @Contract("_ -> this") |
| 392 | public boolean quickReject(@NotNull Path path) { |
no test coverage detected