Searched refs:quickReject (Results 1 - 13 of 13) 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.java191 public boolean quickReject(Rect r) { method in class:Region
192 return quickReject(r.left, r.top, r.right, r.bottom);
200 public native boolean quickReject(int left, int top, int right, int bottom); method in class:Region
207 public native boolean quickReject(Region rgn); method in class:Region
H A DCanvas.java708 public boolean quickReject(RectF rect, EdgeType type) { method in class:Canvas
728 public boolean quickReject(Path path, EdgeType type) { method in class:Canvas
752 public boolean quickReject(float left, float top, float right, float bottom, EdgeType type) { method in class:Canvas
/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, SkCanvas::kBW_EdgeType)) {
H A DCanvas.cpp285 return canvas->quickReject(rect_, (SkCanvas::EdgeType)edgetype);
290 return canvas->quickReject(*path, (SkCanvas::EdgeType)edgetype);
299 return canvas->quickReject(r, (SkCanvas::EdgeType)edgetype);
/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.cpp1256 return quickReject(left - outset, top - outset, right + outset, bottom + outset);
1258 return quickReject(left, top, right, bottom);
1262 bool OpenGLRenderer::quickReject(float left, float top, float right, float bottom) { function in class:android::uirenderer::OpenGLRenderer
1299 // TODO: It would be best if we could do this before quickReject()
1604 // All the usual checks and setup operations (quickReject, setupDraw, etc.)
1667 if (quickReject(left, top, right, bottom)) {
1690 if (quickReject(r.left, r.top, r.right, r.bottom)) {
1713 if (quickReject(left, top, right, bottom)) {
1778 if (quickReject(left, top, right, bottom)) {
1809 if (quickReject(dstLef
[all...]
H A DOpenGLRenderer.h164 ANDROID_API bool quickReject(float left, float top, float right, float bottom);
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java517 public boolean quickReject(float left, float top, float right, float bottom, EdgeType type) { method in class:GLES20Canvas
525 public boolean quickReject(Path path, EdgeType type) { method in class:GLES20Canvas
532 public boolean quickReject(RectF rect, EdgeType type) { method in class:GLES20Canvas
H A DView.java2128 * Flag indicating whether a view failed the quickReject() check in draw(). This condition
2130 * view to force the quickReject test to run again.
13374 canvas.quickReject(mLeft, mTop, mRight, mBottom, Canvas.EdgeType.BW) &&
/frameworks/base/core/jni/
H A Dandroid_view_GLES20Canvas.cpp263 return renderer->quickReject(left, top, right, bottom);

Completed in 909 milliseconds