Searched defs:clipPath (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas.java896 * @see android.graphics.Canvas#clipPath(android.graphics.Path, android.graphics.Region.Op)
899 public boolean clipPath(Path path, Op op) { method in class:Canvas
901 return super.clipPath(path, op);
905 * @see android.graphics.Canvas#clipPath(android.graphics.Path)
908 public boolean clipPath(Path path) { method in class:Canvas
910 return super.clipPath(path);
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp274 static jboolean clipPath(JNIEnv* env, jobject, SkCanvas* canvas, function in class:android::SkCanvasGlue
276 return canvas->clipPath(*path, (SkRegion::Op)op);
900 {"native_clipPath","(III)Z", (void*) SkCanvasGlue::clipPath},
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java247 * calls to translate,scale,rotate,skew,concat or clipRect,clipPath
259 * clipRect,clipPath will all operate as usual, but when the balancing
274 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
306 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
561 public boolean clipPath(Path path, Region.Op op) { method in class:Canvas
571 public boolean clipPath(Path path) { method in class:Canvas
572 return clipPath(path, Region.Op.INTERSECT);
577 * clipRect() and clipPath() which transform their arguments by the
592 * clipRect() and clipPath() which transform their arguments by the

Completed in 14 milliseconds