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

1 2

  /external/skia/gpu/include/
GrGLIRect.h 31 GrGLsizei fHeight;
34 GR_GL(Viewport(fLeft, fBottom, fWidth, fHeight));
38 GR_GL(Scissor(fLeft, fBottom, fWidth, fHeight));
56 fBottom = glRect.fBottom + (glRect.fHeight - topOffset - height);
57 fHeight = height;
62 GrAssert(fHeight >= 0);
69 fBottom + fHeight >= glRect.fBottom + glRect.fHeight;
72 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}
GrRectanizer.h 33 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
41 int height() const { return fHeight; }
59 int fHeight;
SkUIView.h 38 GLint fHeight;
GrTexture.h 44 int height() const { return fHeight; }
129 , fHeight(height)
150 int fHeight;
178 int height() const { return fHeight; }
186 GrFixed normalizeFixedY(GrFixed y) const { GrAssert(GrIsPow2(fHeight));
198 return fWidth * fHeight * GrBytesPerPixel(fConfig);
281 , fHeight(height)
285 fShiftFixedY = 31 - Gr_clz(fHeight);
301 int fHeight;
GrTypes.h 359 uint32_t fHeight; //!< Height of the texture
537 int fHeight; // height in pixels
601 * renderTargetTextureDesc.fHeight = H;
  /external/skia/include/core/
SkPicture.h 103 int height() const { return fHeight; }
114 int fWidth, fHeight;
SkSize.h 8 T fHeight;
13 s.fHeight = h;
19 fHeight = h;
22 /** Returns true iff fWidth == 0 && fHeight == 0
25 return 0 == fWidth && 0 == fHeight;
30 return fWidth <= 0 || fHeight <= 0;
35 fWidth = fHeight = 0;
39 T height() const { return fHeight; }
46 if (fHeight < 0) {
47 fHeight = 0
    [all...]
SkBitmap.h 96 bool empty() const { return 0 == fWidth || 0 == fHeight; }
114 int height() const { return fHeight; }
146 size_t getSize() const { return fHeight * fRowBytes; }
160 size.setMul(fHeight, fRowBytes);
551 SkASSERT((unsigned)y < (unsigned)fHeight);
557 SkASSERT((unsigned)y < (unsigned)fHeight);
563 int fHeight;
588 uint32_t fHeight;
772 SkASSERT((unsigned)x < fWidth && (unsigned)y < fHeight);
779 SkASSERT((unsigned)x < fWidth && (unsigned)y < fHeight);
    [all...]
SkScalerContext.h 43 uint16_t fWidth, fHeight;
  /external/skia/include/images/
SkBitmapRegionDecoder.h 16 fHeight = height;
27 virtual int getHeight() { return fHeight; }
35 int fHeight;
SkMovie.h 63 int fHeight;
SkPageFlipper.h 37 int height() const { return fHeight; }
66 int fHeight;
  /external/icu4c/samples/layout/
paragraph.h 67 le_int32 fHeight;
pflow.c 58 le_int32 fHeight;
137 flow->fHeight = -1;
283 obj->fHeight = height;
344 rs_drawGlyphs(surface, font, glyphs, glyphCount, positions, x, y, obj->fWidth, obj->fHeight);
  /external/junit/src/junit/awtui/
Logo.java 17 private int fHeight;
30 fHeight= fImage.getHeight(this);
33 fHeight= 20;
35 setSize(fWidth, fHeight);
51 g.drawImage(fImage, 0, 0, fWidth, fHeight, this);
  /external/skia/bench/
FPSBench.cpp 9 int32_t fHeight;
14 fHeight = 480;
15 (void)this->findDefine32("height", &fHeight);
19 int height() const { return fHeight; }
22 virtual SkIPoint onGetSize() { return SkIPoint::Make(fWidth, fHeight); }
  /external/skia/src/images/
SkImageDecoder_libbmp.cpp 63 fHeight = height;
73 int height() const { return fHeight; }
79 int fHeight;
SkImageDecoder_wbmp.cpp 57 int fHeight;
72 if (!read_mbf(stream, &fHeight) || (unsigned)fHeight > 0xFFFF) {
75 return fWidth != 0 && fHeight != 0;
118 int height = head.fHeight;
SkImageDecoder_libgif.cpp 52 GifInterlaceIter(int height) : fHeight(height) {
74 while (y >= fHeight) {
90 const int fHeight;
  /external/skia/samplecode/
SampleSkLayer.cpp 156 int fHeight;
171 child->setSize(gData[i].fWidth, gData[i].fHeight);
  /external/skia/include/views/
SkView.h 81 SkScalar height() const { return fHeight; }
85 void setWidth(SkScalar width) { this->setSize(width, fHeight); }
350 SkScalar fWidth, fHeight;
  /external/skia/src/core/
SkBitmap.cpp 39 uint32_t fWidth, fHeight;
150 SkTSwap(fHeight, other.fHeight);
278 fHeight = height;
450 return (fHeight ? ((fHeight - 1) * fRowBytes) +
455 return ComputeSafeSize64(getConfig(), fWidth, fHeight, fRowBytes);
485 if (ComputeSafeSize(getConfig(), fWidth, fHeight, dstRowBytes) >
494 for (uint32_t row = 0; row < fHeight;
516 srcSize < ComputeSafeSize(getConfig(), fWidth, fHeight, srcRowBytes))
    [all...]
  /cts/tools/dx-tests/lib/
junit.jar 
  /cts/tools/utils/lib/
junit.jar 
  /cts/tools/vm-tests/lib/
junit.jar 

Completed in 520 milliseconds

1 2