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

1 2 3

  /external/skia/include/core/
SkSurface.h 67 int width() const { return fWidth; }
135 const int fWidth;
SkPicture.h 130 int width() const { return fWidth; }
167 // fPlayback, fRecord, fWidth & fHeight are protected to allow derived classes to
172 int fWidth, fHeight;
SkImage.h 60 int fWidth;
71 int width() const { return fWidth; }
82 fWidth(width),
91 const int fWidth;
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...]
SkStrokeRec.h 34 SkScalar getWidth() const { return fWidth; }
85 SkScalar fWidth;
  /external/skia/include/effects/
Sk2DPathEffect.h 62 : Sk2DPathEffect(matrix), fWidth(width) {}
77 SkScalar fWidth;
  /external/skia/include/images/
SkBitmapRegionDecoder.h 23 fWidth = width;
34 virtual int getWidth() { return fWidth; }
42 int fWidth;
SkMovie.h 57 int fWidth;
SkPageFlipper.h 29 int width() const { return fWidth; }
58 int fWidth;
  /external/skia/legacy/include/core/
SkPicture.h 89 int width() const { return fWidth; }
107 int fWidth, fHeight;
SkStroke.h 52 SkScalar fWidth, fMiterLimit;
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...]
  /external/skia/legacy/include/images/
SkBitmapRegionDecoder.h 23 fWidth = width;
34 virtual int getWidth() { return fWidth; }
42 int fWidth;
SkMovie.h 55 int fWidth;
SkPageFlipper.h 29 int width() const { return fWidth; }
58 int fWidth;
  /external/skia/src/core/
SkStroke.h 49 SkScalar fWidth, fMiterLimit;
  /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/icu4c/samples/layout/
paragraph.h 66 le_int32 fWidth;
  /external/skia/gm/
drawlooper.cpp 63 SkScalar fWidth;
86 paint->setStrokeWidth(gParams[i].fWidth);
morphology.cpp 53 int fWidth, fHeight;
78 SkIntToScalar(samples[i].fWidth),
  /external/icu4c/io/
uprintf.h 35 int32_t fWidth; /* Width */
  /external/skia/legacy/src/images/
SkImageDecoder_libbmp.cpp 55 fWidth = width;
65 int width() const { return fWidth; }
71 int fWidth;
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;

Completed in 376 milliseconds

1 2 3