Searched defs:join (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/awt/java/awt/
H A DBasicStroke.java46 * <li>miter limit - the limit to trim a line join that has a JOIN_MITER
130 * Stroke join type.
132 int join; field in class:BasicStroke
210 * Instantiates a new BasicStroke with default width, cap, join, limit, dash
227 * @param join
228 * the join segments decoration.
230 * the limit to trim the miter join.
236 public BasicStroke(float width, int cap, int join, float miterLimit, float[] dash, argument
246 if (join != JOIN_MITER && join !
298 BasicStroke(float width, int cap, int join, float miterLimit) argument
313 BasicStroke(float width, int cap, int join) argument
2376 void join(BufferedPath p) { method in class:BasicStroke.BufferedPath
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java267 public static String join(CharSequence delimiter, Object[] tokens) { method in class:TextUtils
286 public static String join(CharSequence delimiter, Iterable tokens) { method in class:TextUtils
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp195 static void setStrokeJoin(JNIEnv* env, jobject clazz, SkPaint* obj, SkPaint::Join join) { argument
196 obj->setStrokeJoin(join);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java134 * join on a stroked path. The default is MITER.
138 * The outer edges of a join meet at a sharp angle
142 * The outer edges of a join meet in a circular arc.
146 * The outer edges of a join meet with a straight line
559 * Return the paint's stroke join type.
570 * @param join set the paint's Join, used whenever the paint's style is
573 public void setStrokeJoin(Join join) { argument
574 native_setStrokeJoin(mNativePaint, join.nativeInt);
1380 int join);
1379 native_setStrokeJoin(int native_object, int join) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint.java148 * join on a stroked path. The default is MITER.
152 * The outer edges of a join meet at a sharp angle
156 * The outer edges of a join meet in a circular arc.
160 * The outer edges of a join meet with a straight line
639 public void setStrokeJoin(android.graphics._Original_Paint.Join join) { argument
643 public void setStrokeJoin(Join join) { argument
644 mJoin = join;

Completed in 233 milliseconds