HomeSort by relevance Sort by last modified time
    Searched refs:Cap (Results 1 - 25 of 43) sorted by null

1 2

  /cts/tests/tests/graphics/src/android/graphics/cts/
Paint_CapTest.java 25 import android.graphics.Paint.Cap;
27 @TestTargetClass(Paint.Cap.class)
37 assertEquals(Cap.BUTT, Cap.valueOf("BUTT"));
38 assertEquals(Cap.ROUND, Cap.valueOf("ROUND"));
39 assertEquals(Cap.SQUARE, Cap.valueOf("SQUARE"));
51 args = {android.graphics.Paint.Cap.class}
61 Cap[] actual = Cap.values()
    [all...]
PaintTest.java 28 import android.graphics.Paint.Cap;
236 args = {android.graphics.Paint.Cap.class}
247 p.setStrokeCap(Cap.BUTT);
248 assertEquals(Cap.BUTT, p.getStrokeCap());
250 p.setStrokeCap(Cap.ROUND);
251 assertEquals(Cap.ROUND, p.getStrokeCap());
253 p.setStrokeCap(Cap.SQUARE);
254 assertEquals(Cap.SQUARE, p.getStrokeCap());
    [all...]
  /external/skia/include/core/
SkStroke.h 42 SkPaint::Cap getCap() const { return (SkPaint::Cap)fCap; }
43 void setCap(SkPaint::Cap);
SkPaint.h 362 /** Cap enum specifies the settings for the paint's strokecap. This is the
366 enum Cap {
387 /** Return the paint's stroke cap type, controlling how the start and end
389 @return the line cap style for the paint, used whenever the paint's
392 Cap getStrokeCap() const { return (Cap)fCapType; }
394 /** Set the paint's stroke cap type.
395 @param cap set the paint's line cap style, used whenever the paint's
398 void setStrokeCap(Cap cap)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
DoodlePaint.java 31 setStrokeCap(Paint.Cap.ROUND);
  /external/skia/src/core/
SkStrokerPriv.h 45 static CapProc CapFactory(SkPaint::Cap);
SkPathEffect.cpp 82 SkPaint::Join join, SkPaint::Cap cap, SkScalar miter)
84 fJoin(SkToU8(join)), fCap(SkToU8(cap)) {
106 stroke.setCap((SkPaint::Cap)fCap);
SkStrokerPriv.cpp 254 SkStrokerPriv::CapProc SkStrokerPriv::CapFactory(SkPaint::Cap cap)
260 SkASSERT((unsigned)cap < SkPaint::kCapCount);
261 return gCappers[cap];
SkStroke.cpp 79 SkPathStroker(SkScalar radius, SkScalar miterLimit, SkPaint::Cap cap,
176 // cap the end
181 // cap the start
194 SkPaint::Cap cap, SkPaint::Join join)
209 fCapper = SkStrokerPriv::CapFactory(cap);
524 void SkStroke::setCap(SkPaint::Cap cap) {
525 SkASSERT((unsigned)cap < SkPaint::kCapCount)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PointsActivity.java 107 p.setStrokeCap(Paint.Cap.SQUARE);
119 p.setStrokeCap(Paint.Cap.ROUND);
  /external/skia/src/animator/
SkDrawPaint.cpp 59 SK_MEMBER(strokeCap, Cap),
80 strokeCap((SkPaint::Cap) -1), strokeJoin((SkPaint::Join) -1), strokeMiter(SK_ScalarNaN),
253 if (strokeCap != (SkPaint::Cap) -1)
254 paint->setStrokeCap((SkPaint::Cap) strokeCap);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MeasureText.java 62 mPaint.setStrokeCap(Paint.Cap.ROUND);
FingerPaint.java 41 mPaint.setStrokeCap(Paint.Cap.ROUND);
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.h 119 void setLineCap(SkPaint::Cap);
  /frameworks/base/graphics/java/android/graphics/
Paint.java 76 static final Cap[] sCapArray = {
77 Cap.BUTT, Cap.ROUND, Cap.SQUARE
257 * The Cap specifies the treatment for the beginning and ending of
260 public enum Cap {
276 private Cap(int nativeInt) {
746 * Return the paint's Cap, controlling how the start and end of stroked
749 * @return the line cap style for the paint, used whenever the paint's
752 public Cap getStrokeCap()
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis1/
Visualization1.java 84 paint.setStrokeCap(Paint.Cap.ROUND);
  /external/v8/test/mjsunit/
debug-liveedit-1.js 43 var new_animal_patch = "Cap' + 'y' + 'bara";
debug-liveedit-newsource.js 53 var new_source = script.source.replace("Cat", "Cap' + 'yb' + 'ara");
  /frameworks/base/core/java/android/gesture/
Gesture.java 197 paint.setStrokeCap(Paint.Cap.ROUND);
231 paint.setStrokeCap(Paint.Cap.ROUND);
  /packages/apps/Camera/src/com/android/camera/ui/
IndicatorControlWheel.java 430 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
445 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
ZoomControlWheel.java 170 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 74 paint.setStrokeCap(Paint.Cap.ROUND);
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 95 paint.setStrokeCap(Paint.Cap.ROUND);
  /external/skia/src/effects/
SkLayerRasterizer.cpp 161 paint->setStrokeCap((SkPaint::Cap)buffer.readU8());
  /external/webkit/Source/WebKit/android/plugins/
ANPPaintInterface.cpp 87 static void anp_setStrokeCap(ANPPaint* paint, ANPPaintCap cap) {
88 paint->setStrokeCap(static_cast<SkPaint::Cap>(cap));

Completed in 2255 milliseconds

1 2