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.java1019 * Constant values used as parameters to {@code quickReject()} calls. These values
1023 * @see #quickReject(float, float, float, float, EdgeType)
1024 * @see #quickReject(Path, EdgeType)
1025 * @see #quickReject(RectF, EdgeType)
1062 public boolean quickReject(@NonNull RectF rect, @NonNull EdgeType type) { method in class:Canvas
1082 public boolean quickReject(@NonNull Path path, @NonNull EdgeType type) { method in class:Canvas
1106 public boolean quickReject(float left, float top, float right, float bottom, method in class:Canvas
1114 * in a way similar to quickReject, in that it tells you that drawing
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp147 bool result = GetSkRegion(env, region)->quickReject(ir);
152 bool result = GetSkRegion(env, region)->quickReject(*GetSkRegion(env, other));
331 { "quickReject", "(IIII)Z", (void*)Region_quickRejectIIII },
332 { "quickReject", "(Landroid/graphics/Region;)Z", (void*)Region_quickRejectRgn },
/frameworks/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.java132 if (canvas.quickReject(r.left, r.top, r.right, r.bottom, Canvas.EdgeType.AA)) {
/frameworks/base/libs/hwui/pipeline/skia/
H A DRenderNodeDrawable.cpp172 bool quickRejected = properties.getClipToBounds() && canvas->quickReject(bounds);
H A DSkiaPipeline.cpp117 if (properties.getClipToBounds() && layerCanvas->quickReject(bounds)) {
/frameworks/base/libs/hwui/
H A DSkiaCanvas.cpp378 return mCanvas->quickReject(bounds);
382 return mCanvas->quickReject(path);
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java771 if (interactiveRegion.quickReject(boundsInScreen)) {
H A DView.java2821 * Flag indicating whether a view failed the quickReject() check in draw(). This condition
2823 * view to force the quickReject test to run again.
18891 canvas.quickReject(mLeft, mTop, mRight, mBottom, Canvas.EdgeType.BW) &&
/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java1083 if (unaccountedSpace.quickReject(boundsInScreen)) {

Completed in 223 milliseconds