HomeSort by relevance Sort by last modified time
    Searched refs:Cap (Results 26 - 50 of 96) sorted by null

12 3 4

  /external/skia/include/core/
SkPaint.h 429 /** Cap enum specifies the settings for the paint's strokecap. This is the
433 enum Cap {
454 /** Return the paint's stroke cap type, controlling how the start and end
456 @return the line cap style for the paint, used whenever the paint's
459 Cap getStrokeCap() const { return (Cap)fCapType; }
461 /** Set the paint's stroke cap type.
462 @param cap set the paint's line cap style, used whenever the paint's
465 void setStrokeCap(Cap cap)
    [all...]
  /frameworks/base/libs/hwui/
TessellationCache.h 59 SkPaint::Cap cap; member in struct:android::uirenderer::TessellationCache::Description
PathCache.h 114 SkPaint::Cap cap; member in struct:android::uirenderer::PathDescription
  /frameworks/base/graphics/java/android/graphics/
Paint.java 64 static final Cap[] sCapArray = {
65 Cap.BUTT, Cap.ROUND, Cap.SQUARE
343 * The Cap specifies the treatment for the beginning and ending of
346 public enum Cap {
362 private Cap(int nativeInt) {
850 * Return the paint's Cap, controlling how the start and end of stroked
853 * @return the line cap style for the paint, used whenever the paint's
856 public Cap getStrokeCap()
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java 24 import android.graphics.Paint.Cap;
235 p.setStrokeCap(Cap.BUTT);
236 assertEquals(Cap.BUTT, p.getStrokeCap());
238 p.setStrokeCap(Cap.ROUND);
239 assertEquals(Cap.ROUND, p.getStrokeCap());
241 p.setStrokeCap(Cap.SQUARE);
242 assertEquals(Cap.SQUARE, p.getStrokeCap());
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 165 paint.setStrokeCap(Paint.Cap.BUTT);
173 paint.setStrokeCap(Paint.Cap.ROUND);
179 paint.setStrokeCap(Paint.Cap.SQUARE);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLPath.cpp 71 inline GrGLenum cap_to_gl_cap(SkPaint::Cap cap) {
77 return gSkCapsToGrGLCaps[cap];
123 GrGLenum cap = cap_to_gl_cap(stroke.getCap()); local
124 GL_CALL(PathParameteri(fPathID, GR_GL_PATH_INITIAL_END_CAP, cap));
125 GL_CALL(PathParameteri(fPathID, GR_GL_PATH_TERMINAL_END_CAP, cap));
  /external/chromium_org/third_party/skia/tests/
EmptyPathTest.cpp 48 ERRORF(reporter, "%s style[%d] cap[%d] join[%d] antialias[%d]"
58 static const SkPaint::Cap gCaps[] = {
73 for (size_t cap = 0; cap < SK_ARRAY_COUNT(gCaps); ++cap) {
79 paint.setStrokeCap(gCaps[cap]);
  /external/skia/src/gpu/gl/
GrGLPath.cpp 71 inline GrGLenum cap_to_gl_cap(SkPaint::Cap cap) {
77 return gSkCapsToGrGLCaps[cap];
123 GrGLenum cap = cap_to_gl_cap(stroke.getCap()); local
124 GL_CALL(PathParameteri(fPathID, GR_GL_PATH_INITIAL_END_CAP, cap));
125 GL_CALL(PathParameteri(fPathID, GR_GL_PATH_TERMINAL_END_CAP, cap));
  /external/skia/tests/
EmptyPathTest.cpp 48 ERRORF(reporter, "%s style[%d] cap[%d] join[%d] antialias[%d]"
58 static const SkPaint::Cap gCaps[] = {
73 for (size_t cap = 0; cap < SK_ARRAY_COUNT(gCaps); ++cap) {
79 paint.setStrokeCap(gCaps[cap]);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
DrawerArrowDrawable.java 83 mPaint.setStrokeCap(Paint.Cap.SQUARE);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis1/
Visualization1.java 84 paint.setStrokeCap(Paint.Cap.ROUND);
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-1.js 43 var new_animal_patch = "Cap' + 'y' + 'bara";
debug-liveedit-compile-error.js 43 var new_animal_patch = "Cap' + ) + 'bara";
debug-liveedit-newsource.js 54 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/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDraw.java 121 paint.setStrokeCap(Paint.Cap.SQUARE);
123 paint.setStrokeCap(Paint.Cap.ROUND);
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java     [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DisplayModifier.java 164 paint.setStrokeCap(Paint.Cap.BUTT);
170 paint.setStrokeCap(Paint.Cap.ROUND);
176 paint.setStrokeCap(Paint.Cap.SQUARE);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 467 mBackgroundPaint.setStrokeCap(Paint.Cap.SQUARE);
488 mBackgroundPaint.setStrokeCap(Paint.Cap.ROUND);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
FingerPaint.java 41 mPaint.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/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextState.cpp 133 void GraphicsContextState::setLineCap(LineCap cap)
135 m_strokeData.setLineCap(cap);
136 m_strokePaint.setStrokeCap((SkPaint::Cap)cap);
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp     [all...]

Completed in 909 milliseconds

12 3 4