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

1 2 3

  /external/skia/src/core/
SkBitmapCache.h 25 int32_t fHeight;
SkBitmapCache.cpp 60 desc.fHeight = height;
73 desc.fHeight = height;
90 , fHeight(height)
94 sizeof(fGenID) + sizeof(fWidth) + sizeof(fHeight) + sizeof(fBounds));
100 , fHeight(desc.fHeight)
104 sizeof(fGenID) + sizeof(fWidth) + sizeof(fHeight) + sizeof(fBounds));
108 SkDebugf("-- add [%d %d] %d [%d %d %d %d]\n", fWidth, fHeight, fGenID,
114 const int fHeight;
166 if (0 == desc.fWidth || 0 == desc.fHeight) {
    [all...]
SkBitmapHeap.h 217 , fHeight(bm.height())
224 const uint32_t fHeight;
  /external/skia/src/gpu/
GrRectanizer.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
27 int height() const { return fHeight; }
41 int fHeight;
GrStencilAttachment.h 28 int height() const { return fHeight; }
60 , fHeight(height)
70 int fHeight;
GrTextureParamsAdjuster.h 34 int fHeight;
72 int height() const { return fHeight; }
78 , fHeight(height)
91 builder[2] = copyParams.fHeight;
112 const int fHeight;
  /external/skia/experimental/iOSSampleApp/
SkSampleUIView.h 25 GLint fHeight;
  /external/skia/include/android/
SkBitmapRegionDecoder.h 74 int height() const { return fHeight; }
82 , fHeight(height)
87 const int fHeight;
  /external/skia/include/images/
SkMovie.h 58 int fHeight;
SkPageFlipper.h 30 int height() const { return fHeight; }
59 int fHeight;
  /external/skia/src/gpu/gl/
GrGLIRect.h 24 GrGLsizei fHeight;
27 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
31 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
51 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height);
55 fHeight = height;
60 SkASSERT(fHeight >= 0);
67 fBottom + fHeight >= glRect.fBottom + glRect.fHeight;
70 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}
  /external/icu/icu4c/source/samples/layout/
paragraph.h 67 le_int32 fHeight;
  /external/skia/tests/
MipMapTest.cpp 109 int fHeight;
151 int levelCount = SkMipMap::ComputeLevelCount(currentTest.fWidth, currentTest.fHeight);
  /external/pdfium/xfa/include/fwl/core/
fwl_grid.h 16 FX_FLOAT fHeight;
  /external/skia/gm/
bigrrectaaeffect.cpp 40 fHeight = fTestOffsetY + kPad;
50 SkISize onISize() override { return SkISize::Make(fWidth, fHeight); }
117 int fHeight;
blurroundrect.cpp 26 : fName("blurroundrect"), fWidth(width), fHeight(height) {
35 return SkISize::Make(fWidth, fHeight);
44 SkRect r = SkRect::MakeWH(SkIntToScalar(fWidth), SkIntToScalar(fHeight));
86 int fWidth, fHeight;
morphology.cpp 62 int fWidth, fHeight;
complexclip2.cpp 36 fHeight = yF - yA;
39 fTotalHeight = kRows * fHeight + SK_Scalar1 * (kRows + 1) * kPadY;
153 kPadY * SK_Scalar1 + (fHeight + kPadY * SK_Scalar1)*i);
191 canvas->drawRect(SkRect::MakeWH(fWidth, fHeight), fillPaint);
205 SkScalar fHeight;
  /external/skia/include/core/
SkImage.h 151 int height() const { return fHeight; }
152 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
153 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); }
346 const int fHeight;
SkSize.h 15 T fHeight;
20 s.fHeight = h;
26 fHeight = h;
29 /** Returns true iff fWidth == 0 && fHeight == 0
32 return 0 == fWidth && 0 == fHeight;
37 return fWidth <= 0 || fHeight <= 0;
42 fWidth = fHeight = 0;
46 T height() const { return fHeight; }
53 if (fHeight < 0) {
54 fHeight = 0
    [all...]
SkSurface.h 138 int height() const { return fHeight; }
314 const int fHeight;
  /external/skia/src/gpu/vk/
GrVkImage.h 76 uint32_t fHeight;
87 , fHeight(0)
  /external/skia/src/images/
SkImageDecoder_libbmp.cpp 76 fHeight = height;
86 int height() const { return fHeight; }
92 int fHeight;
SkImageDecoder_wbmp.cpp 53 int fHeight;
68 if (!read_mbf(stream, &fHeight) || (unsigned)fHeight > 0xFFFF) {
71 return fWidth != 0 && fHeight != 0;
112 int height = head.fHeight;
  /external/skia/samplecode/
SampleSkLayer.cpp 163 int fHeight;
178 child->setSize(gData[i].fWidth, gData[i].fHeight);

Completed in 265 milliseconds

1 2 3