HomeSort by relevance Sort by last modified time
    Searched refs:Cap (Results 101 - 125 of 172) sorted by null

1 2 3 45 6 7

  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
ColorsActivity.java 138 mShadowPaint.setStrokeCap(Paint.Cap.ROUND);
  /packages/apps/Camera2/src/com/android/camera/ui/
PreviewOverlay.java 313 mPaint.setStrokeCap(Paint.Cap.ROUND);
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
  /external/skia/experimental/svg/model/
SkSVGRenderContext.cpp 75 SkPaint::Cap toSkCap(const SkSVGLineCap& cap) {
76 switch (cap.type()) {
160 const auto& cap = *attrs.fStrokeLineCap.get(); local
161 if (cap.type() != SkSVGLineCap::Type::kInherit) {
162 pctx->fStrokePaint.setStrokeCap(toSkCap(cap));
  /external/skia/fuzz/
FuzzDrawFunctions.cpp 55 p->setStrokeCap(static_cast<SkPaint::Cap>(tmp_u8));
FilterFuzz.cpp 149 static SkPaint::Cap make_paint_cap() {
152 return static_cast<SkPaint::Cap>(i);
  /external/skia/samplecode/
SamplePath.cpp 428 fStrokePaint.setStrokeCap((SkPaint::Cap)fCapType);
SampleFilterFuzz.cpp 176 static SkPaint::Cap make_paint_cap() {
177 return static_cast<SkPaint::Cap>(R(SkPaint::kDefault_Cap+1));
  /external/skia/tests/
PaintTest.cpp 221 const SkPaint::Cap caps[] = {
  /external/skia/src/core/
SkScan_Hairline.cpp 422 account for a round or square cap. If there's no distance between the end point and
424 is degenerate, move the cap out 1/2 unit horizontally. */
425 template <SkPaint::Cap capStyle>
428 // The area of a circle is PI*R*R. For a unit circle, R=1/2, and the cap covers half of that.
473 template <SkPaint::Cap capStyle>
588 // cap moveTo/close to match svg expectations for degenerate segments
SkStroke.cpp 123 SkScalar radius, SkScalar miterLimit, SkPaint::Cap,
313 // cap the end
318 // cap the start
335 SkPaint::Cap cap, SkPaint::Join join, SkScalar resScale,
353 fCapper = SkStrokerPriv::CapFactory(cap);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
internal.go 70 // Cap adjusted indent to zero.
  /prebuilts/go/darwin-x86/src/go/format/
internal.go 70 // Cap adjusted indent to zero.
  /prebuilts/go/linux-x86/src/cmd/gofmt/
internal.go 70 // Cap adjusted indent to zero.
  /prebuilts/go/linux-x86/src/go/format/
internal.go 70 // Cap adjusted indent to zero.
  /external/skia/src/svg/
SkSVGDevice.cpp 40 // Keep in sync with SkPaint::Cap
48 static const char* svg_cap(SkPaint::Cap cap) {
49 SkASSERT(cap < SK_ARRAY_COUNT(cap_map));
50 return cap_map[cap];
381 if (const char* cap = svg_cap(paint.getStrokeCap())) {
382 this->addAttribute("stroke-linecap", cap);
  /frameworks/base/core/java/android/gesture/
GestureOverlayView.java 188 gesturePaint.setStrokeCap(Paint.Cap.ROUND);
  /frameworks/base/libs/hwui/
VectorDrawable.cpp 188 paint.setStrokeCap(SkPaint::Cap(properties.getStrokeLineCap()));
VectorDrawable.h 219 int32_t strokeLineCap = SkPaint::Cap::kButt_Cap;
746 // Cap the bitmap size, such that it won't hurt the performance too much
  /frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
OctopusDrawable.java 391 dpt.setStrokeCap(Paint.Cap.ROUND);
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 63 // Cap returns the capacity of the buffer's underlying byte slice, that is, the
65 func (b *Buffer) Cap() int { return cap(b.buf) }
96 if len(b.buf)+n > cap(b.buf) {
100 } else if m+n <= cap(b.buf)/2 {
102 // slice. We only need m+n <= cap(b.buf) to slide, but
109 buf = makeSlice(2*cap(b.buf) + n)
167 if free := cap(b.buf) - len(b.buf); free < MinRead {
173 newBuf = makeSlice(2*cap(b.buf) + MinRead)
179 m, e := r.Read(b.buf[len(b.buf):cap(b.buf)]
    [all...]
  /prebuilts/go/linux-x86/src/bytes/
buffer.go 63 // Cap returns the capacity of the buffer's underlying byte slice, that is, the
65 func (b *Buffer) Cap() int { return cap(b.buf) }
96 if len(b.buf)+n > cap(b.buf) {
100 } else if m+n <= cap(b.buf)/2 {
102 // slice. We only need m+n <= cap(b.buf) to slide, but
109 buf = makeSlice(2*cap(b.buf) + n)
167 if free := cap(b.buf) - len(b.buf); free < MinRead {
173 newBuf = makeSlice(2*cap(b.buf) + MinRead)
179 m, e := r.Read(b.buf[len(b.buf):cap(b.buf)]
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
decode.go 539 if i >= v.Cap() {
540 newcap := v.Cap() + v.Cap()/2
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
decode.go 539 if i >= v.Cap() {
540 newcap := v.Cap() + v.Cap()/2
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 790 Paint::Cap cap = static_cast<Paint::Cap>(capHandle); local
    [all...]

Completed in 3266 milliseconds

1 2 3 45 6 7