Searched refs:quickReject (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DAlphaLayersActivity.java89 Log.d(LOG_TAG, "rejected = " + canvas.quickReject(100.0f, 100.0f, 110.0f, 110.0f,
91 Log.d(LOG_TAG, "rejected = " + canvas.quickReject(25.0f, 5.0f, 30.0f, 10.0f,
99 Log.d(LOG_TAG, "rejected = " + canvas.quickReject(50.0f, 50.0f, 60.0f, 60.0f,
101 Log.d(LOG_TAG, "rejected = " + canvas.quickReject(25.0f, 5.0f, 30.0f, 10.0f,
109 Log.d(LOG_TAG, "rejected = " + canvas.quickReject(80.0f, 80.0f, 90.0f, 90.0f,
111 Log.d(LOG_TAG, "rejected = " + canvas.quickReject(25.0f, 5.0f, 30.0f, 10.0f,
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java199 public boolean quickReject(Rect r) { method in class:Region
200 return quickReject(r.left, r.top, r.right, r.bottom);
208 public native boolean quickReject(int left, int top, int right, int bottom); method in class:Region
215 public native boolean quickReject(Region rgn); method in class:Region
H A DCanvas.java758 public boolean quickReject(RectF rect, EdgeType type) { method in class:Canvas
777 public boolean quickReject(Path path, EdgeType type) { method in class:Canvas
801 public boolean quickReject(float left, float top, float right, float bottom, method in class:Canvas
809 * in a way similar to quickReject, in that it tells you that drawing
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp113 return GetSkRegion(env, region)->quickReject(ir);
117 return GetSkRegion(env, region)->quickReject(*GetSkRegion(env, other));
272 { "quickReject", "(IIII)Z", (void*)Region_quickRejectIIII },
273 { "quickReject", "(Landroid/graphics/Region;)Z", (void*)Region_quickRejectRgn },
H A DNinePatchImpl.cpp108 if (canvas && canvas->quickReject(bounds)) {
H A DCanvas.cpp309 return canvas->quickReject(rect_);
314 return canvas->quickReject(*path);
323 return canvas->quickReject(r);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DRegion_Delegate.java193 /*package*/ static boolean quickReject(Region thisRegion, method in class:Region_Delegate
205 /*package*/ static boolean quickReject(Region thisRegion, Region rgn) { method in class:Region_Delegate
/frameworks/base/core/java/android/widget/
H A DScrollBarDrawable.java114 if (canvas.quickReject(r.left, r.top, r.right, r.bottom, Canvas.EdgeType.AA)) {
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp1427 // is used, it should more closely duplicate the quickReject logic (in how it uses
1650 return quickReject(left - outset, top - outset, right + outset, bottom + outset, snapOut);
1652 return quickReject(left, top, right, bottom, snapOut);
1656 bool OpenGLRenderer::quickReject(float left, float top, float right, float bottom, bool snapOut) { function in class:android::uirenderer::OpenGLRenderer
1737 // TODO: It would be best if we could do this before quickReject()
2033 // All the usual checks and setup operations (quickReject, setupDraw, etc.)
2135 if (quickReject(left, top, right, bottom)) {
2158 if (quickReject(r.left, r.top, r.right, r.bottom)) {
2185 if (quickReject(left, top, right, bottom)) {
2208 // TODO: use quickReject o
[all...]
H A DOpenGLRenderer.h262 bool quickReject(float left, float top, float right, float bottom, bool snapOut = false);
263 bool quickReject(const Rect& bounds) { function in class:android::uirenderer::OpenGLRenderer
264 return quickReject(bounds.left, bounds.top, bounds.right, bounds.bottom);
268 * Same as quickReject, without the scissor, instead returning clipRequired through pointer.
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java555 public boolean quickReject(float left, float top, float right, float bottom, EdgeType type) { method in class:GLES20Canvas
563 public boolean quickReject(Path path, EdgeType type) { method in class:GLES20Canvas
571 public boolean quickReject(RectF rect, EdgeType type) { method in class:GLES20Canvas
H A DView.java2197 * Flag indicating whether a view failed the quickReject() check in draw(). This condition
2199 * view to force the quickReject test to run again.
14133 canvas.quickReject(mLeft, mTop, mRight, mBottom, Canvas.EdgeType.BW) &&

Completed in 348 milliseconds