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

1 2 3 4 5 6 7

  /external/skia/include/core/
SkSize.h 14 T fWidth;
19 s.fWidth = w;
25 fWidth = w;
29 /** Returns true iff fWidth == 0 && fHeight == 0
32 return 0 == fWidth && 0 == fHeight;
37 return fWidth <= 0 || fHeight <= 0;
42 fWidth = fHeight = 0;
45 T width() const { return fWidth; }
50 if (fWidth < 0) {
51 fWidth = 0
    [all...]
SkImage.h 60 int fWidth;
71 int width() const { return fWidth; }
82 fWidth(width),
91 const int fWidth;
SkSurface.h 67 int width() const { return fWidth; }
135 const int fWidth;
  /external/skia/legacy/include/core/
SkSize.h 14 T fWidth;
19 s.fWidth = w;
25 fWidth = w;
29 /** Returns true iff fWidth == 0 && fHeight == 0
32 return 0 == fWidth && 0 == fHeight;
37 return fWidth <= 0 || fHeight <= 0;
42 fWidth = fHeight = 0;
45 T width() const { return fWidth; }
50 if (fWidth < 0) {
51 fWidth = 0
    [all...]
SkPicture.h 89 int width() const { return fWidth; }
107 int fWidth, fHeight;
  /external/skia/src/core/
SkStrokeRec.cpp 15 fWidth = (kFill_InitStyle == s) ? kStrokeRec_FillStyleWidth : 0;
29 fWidth = kStrokeRec_FillStyleWidth;
33 fWidth = paint.getStrokeWidth();
39 fWidth = kStrokeRec_FillStyleWidth;
42 fWidth = paint.getStrokeWidth();
49 fWidth = kStrokeRec_FillStyleWidth;
61 if (fWidth < 0) {
63 } else if (0 == fWidth) {
71 fWidth = kStrokeRec_FillStyleWidth;
76 fWidth = 0
    [all...]
SkPicture.cpp 110 fWidth = fHeight = 0;
114 fWidth = src.fWidth;
140 SkTSwap(fWidth, other.fWidth);
156 clone->fWidth = fWidth;
200 fWidth = width;
222 SkScalar aspectRatio = SkScalarDiv(SkIntToScalar(fWidth),
262 fWidth = fHeight = 0
    [all...]
  /external/skia/src/gpu/
GrRectanizer.h 25 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
32 int width() const { return fWidth; }
50 int fWidth;
GrStencilBuffer.h 28 int width() const { return fWidth; }
60 , fWidth(width)
70 int fWidth;
  /external/skia/src/gpu/gl/
GrGLIRect.h 23 GrGLsizei fWidth;
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
48 fWidth = width;
53 GrAssert(fWidth >= 0);
61 fLeft + fWidth >= glRect.fLeft + glRect.fWidth &&
65 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}
  /external/skia/include/images/
SkBitmapRegionDecoder.h 23 fWidth = width;
34 virtual int getWidth() { return fWidth; }
42 int fWidth;
SkPageFlipper.h 29 int width() const { return fWidth; }
58 int fWidth;
SkMovie.h 57 int fWidth;
  /external/skia/legacy/include/images/
SkBitmapRegionDecoder.h 23 fWidth = width;
34 virtual int getWidth() { return fWidth; }
42 int fWidth;
SkPageFlipper.h 29 int width() const { return fWidth; }
58 int fWidth;
  /external/skia/legacy/src/images/
SkPageFlipper.cpp 13 fWidth = 0;
23 fWidth = width;
33 fWidth = width;
42 fDirty1->setRect(0, 0, fWidth, fHeight);
47 r.set(0, 0, fWidth, fHeight);
55 r.setRect(0, 0, fWidth, fHeight);
SkImageDecoder_wbmp.cpp 49 int fWidth;
62 if (!read_mbf(stream, &fWidth) || (unsigned)fWidth > 0xFFFF) {
68 return fWidth != 0 && fHeight != 0;
110 int width = head.fWidth;
  /external/skia/src/images/
SkPageFlipper.cpp 13 fWidth = 0;
23 fWidth = width;
33 fWidth = width;
42 fDirty1->setRect(0, 0, fWidth, fHeight);
47 r.set(0, 0, fWidth, fHeight);
55 r.setRect(0, 0, fWidth, fHeight);
SkImageDecoder_wbmp.cpp 49 int fWidth;
62 if (!read_mbf(stream, &fWidth) || (unsigned)fWidth > 0xFFFF) {
68 return fWidth != 0 && fHeight != 0;
108 int width = head.fWidth;
  /external/skia/legacy/src/core/
SkPicture.cpp 105 fWidth = fHeight = 0;
109 fWidth = src.fWidth;
135 SkTSwap(fWidth, other.fWidth);
155 fWidth = width;
201 fWidth = stream->readU32();
220 stream->write32(fWidth);
SkPathEffect.cpp 74 : fWidth(paint.getStrokeWidth()), fMiter(paint.getStrokeMiter()),
81 : fWidth(width), fMiter(miter), fStyle(SkToU8(style)),
90 if (fWidth < 0 || fStyle == SkPaint::kFill_Style) {
94 if (fStyle == SkPaint::kStroke_Style && fWidth == 0) { // hairline
101 stroke.setWidth(fWidth);
120 buffer.writeScalar(fWidth);
128 fWidth = buffer.readScalar();
  /external/skia/src/image/
SkImage_Raster.cpp 21 if (info.fWidth < 0 || info.fHeight < 0) {
24 if (info.fWidth > maxDimension || info.fHeight > maxDimension) {
85 : INHERITED(info.fWidth, info.fHeight) {
89 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes);
96 : INHERITED(info.fWidth, info.fHeight) {
100 fBitmap.setConfig(config, info.fWidth, info.fHeight, rowBytes);
118 if (0 == info.fWidth && 0 == info.fHeight) {
136 if (0 == info.fWidth && 0 == info.fHeight) {
  /external/skia/tests/
ReadWriteAlphaTest.cpp 35 desc.fWidth = X_SIZE;
54 texture->writePixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
63 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
91 texture->readPixels(0, 0, desc.fWidth, desc.fHeight, desc.fConfig,
TestSize.cpp 30 a.fWidth == b.fWidth && a.fHeight == b.fHeight);
58 a.fWidth == b.fWidth && a.fHeight == b.fHeight);
  /external/icu4c/io/
uscanf_p.c 82 int32_t fWidth; /* Width */
123 info->fWidth = -1;
190 info->fWidth = (int) (*s++ - DIGIT_ZERO);
193 info->fWidth *= 10;
194 info->fWidth += (int) (*s++ - DIGIT_ZERO);
401 *(int16_t*)(args[0].ptrValue) = (int16_t)(UINT16_MAX & info->fWidth);
403 *(int64_t*)(args[0].ptrValue) = info->fWidth;
405 *(int32_t*)(args[0].ptrValue) = (int32_t)(UINT32_MAX & info->fWidth);
439 if(info->fWidth != -1)
440 len = ufmt_min(len, info->fWidth);
    [all...]

Completed in 3986 milliseconds

1 2 3 4 5 6 7