Searched defs:saveLayer (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
H A DNopCanvas.java59 public int saveLayer(RectF bounds, Paint paint, int saveFlags) { method in class:NopCanvas
64 public int saveLayer(RectF bounds, Paint paint) { method in class:NopCanvas
69 public int saveLayer(float left, float top, float right, float bottom, Paint paint, method in class:NopCanvas
75 public int saveLayer(float left, float top, float right, float bottom, Paint paint) { method in class:NopCanvas
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java58 * Handling of layers (created with {@link Canvas#saveLayer(RectF, Paint, int)}) is handled through
77 /** a local layer created with {@link Canvas#saveLayer(RectF, Paint, int)}.
239 * This is the equivalent of {@link Canvas#saveLayer(RectF, Paint, int)}
247 * @see Canvas#saveLayer(RectF, Paint, int)
249 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) { method in class:GcSnapshot
581 // of saveLayer(), but that doesn't mean there's no layer.
/frameworks/base/libs/hwui/
H A DRecordingCanvas.cpp118 int RecordingCanvas::saveLayer(float left, float top, float right, float bottom, function in class:android::uirenderer::RecordingCanvas
H A DSkiaCanvas.cpp186 int SkiaCanvas::saveLayer(float left, float top, float right, float bottom, function in class:android::SkiaCanvas
191 return mCanvas->saveLayer(rec);
199 return this->saveLayer(left, top, right, bottom, &alphaPaint, flags);
201 return this->saveLayer(left, top, right, bottom, nullptr, flags);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBaseCanvas_Delegate.java544 * layers involved (see {@link #saveLayer(RectF, Paint_Delegate, int)}.
564 * layers involved (see {@link #saveLayer(RectF, Paint_Delegate, int)}.
731 return saveLayer(rect, paint, saveFlags);
734 protected int saveLayer(RectF rect, Paint_Delegate paint, int saveFlags) { method in class:BaseCanvas_Delegate
738 mSnapshot = mSnapshot.saveLayer(rect, paint, saveFlags);
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp89 static jint saveLayer(jlong canvasHandle, jfloat l, jfloat t, function in namespace:android::CanvasJNI
93 return static_cast<jint>(get_canvas(canvasHandle)->saveLayer(l, t, r, b, paint, flags));
589 {"nSaveLayer","(JFFFFJI)I", (void*) CanvasJNI::saveLayer},
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java315 * @deprecated Use the flagless version of {@link #save()}, {@link #saveLayer(RectF, Paint)} or
316 * {@link #saveLayerAlpha(RectF, int)}. For saveLayer() calls the matrix
326 * @deprecated Use the flagless version of {@link #save()}, {@link #saveLayer(RectF, Paint)} or
327 * {@link #saveLayerAlpha(RectF, int)}. For saveLayer() calls the clip
337 * @deprecated This flag is ignored. Use the flagless version of {@link #saveLayer(RectF, Paint)}
345 * @deprecated This flag is ignored. Use the flagless version of {@link #saveLayer(RectF, Paint)}
353 * omit this flag for any call to <code>saveLayer()</code> and
367 * call to <code>saveLayer()</code> and <code>saveLayerAlpha()</code>
432 * @deprecated Use {@link #saveLayer(RectF, Paint)} instead.
441 public int saveLayer( method in class:Canvas
474 public int saveLayer(@Nullable RectF bounds, @Nullable Paint paint) { method in class:Canvas
483 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint, method in class:Canvas
494 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint) { method in class:Canvas
[all...]

Completed in 3485 milliseconds