HomeSort by relevance Sort by last modified time
    Searched defs:Cap (Results 1 - 8 of 8) sorted by null

  /external/skia/include/core/
SkPaint.h 366 /** Cap enum specifies the settings for the paint's strokecap. This is the
370 enum Cap {
391 /** Return the paint's stroke cap type, controlling how the start and end
393 @return the line cap style for the paint, used whenever the paint's
396 Cap getStrokeCap() const { return (Cap)fCapType; }
398 /** Set the paint's stroke cap type.
399 @param cap set the paint's line cap style, used whenever the paint's
402 void setStrokeCap(Cap cap)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java 46 private static final Cap[] sCapArray = {
47 Cap.BUTT, Cap.ROUND, Cap.SQUARE
107 * The Cap specifies the treatment for the beginning and ending of
110 public enum Cap {
126 private Cap(int nativeInt) {
538 * Return the paint's Cap, controlling how the start and end of stroked
541 * @return the line cap style for the paint, used whenever the paint's
544 public Cap getStrokeCap()
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint.java 47 private Cap mCap = Cap.BUTT;
108 * The Cap specifies the treatment for the beginning and ending of
111 public enum Cap {
127 private Cap(int nativeInt) {
626 public void setStrokeCap(android.graphics._Original_Paint.Cap cap) {
630 public void setStrokeCap(Cap cap) {
631 mCap = cap;
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 965 milliseconds