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

1 2 3 4 5 6 7 8 91011>>

  /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...]
SkImageInfo.h 171 : fWidth(0)
221 int width() const { return fWidth; }
227 bool isEmpty() const { return fWidth <= 0 || fHeight <= 0; }
236 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
237 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); }
248 return SkImageInfo::Make(fWidth, fHeight, fColorType, newAlphaType, fProfileType);
252 return SkImageInfo::Make(fWidth, fHeight, newColorType, fAlphaType, fProfileType);
260 return sk_64_mul(fWidth, this->bytesPerPixel());
268 SkASSERT((unsigned)x < (unsigned)fWidth);
287 return sk_64_mul(fHeight - 1, rowBytes) + fWidth * this->bytesPerPixel()
    [all...]
SkFontStyle.h 54 int width() const { return fUnion.fR.fWidth; }
65 uint8_t fWidth; // 1 .. 9
SkStrokeRec.h 37 SkScalar getWidth() const { return fWidth; }
110 return fWidth == other.fWidth &&
121 SkScalar fWidth;
  /external/skia/src/gpu/
GrRectanizer.h 17 GrRectanizer(int width, int height) : fWidth(width), fHeight(height) {
26 int width() const { return fWidth; }
40 int fWidth;
GrTextureToYUVPlanes.cpp 75 yuvDesc.fWidth = sizes[0].fWidth;
85 yDesc.fWidth = sizes[0].fWidth;
96 uvDesc.fWidth = sizes[1].fWidth;
106 uvDesc.fWidth = sizes[1].fWidth;
109 uvDesc.fWidth = sizes[2].fWidth;
    [all...]
GrRectanizer_skyline.cpp 27 if (y < bestY || (y == bestY && fSkyline[i].fWidth < bestWidth)) {
29 bestWidth = fSkyline[i].fWidth;
65 widthLeft -= fSkyline[i].fWidth;
78 newSegment.fWidth = width;
81 SkASSERT(newSegment.fX + newSegment.fWidth <= this->width());
89 if (fSkyline[i].fX < fSkyline[i-1].fX + fSkyline[i-1].fWidth) {
90 int shrink = fSkyline[i-1].fX + fSkyline[i-1].fWidth - fSkyline[i].fX;
93 fSkyline[i].fWidth -= shrink;
95 if (fSkyline[i].fWidth <= 0) {
111 fSkyline[i].fWidth += fSkyline[i+1].fWidth
    [all...]
GrRectanizer_skyline.h 30 seg->fWidth = this->width();
43 int fWidth;
GrStencilAttachment.h 27 int width() const { return fWidth; }
59 , fWidth(width)
69 int fWidth;
GrTextureParamsAdjuster.h 33 int fWidth;
71 int width() const { return fWidth; }
77 : fWidth(width)
90 builder[1] = copyParams.fWidth;
111 const int fWidth;
  /external/pdfium/xfa/include/fwl/core/
fwl_content.h 17 FWL_ERR GetMinSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight);
18 FWL_ERR SetMinSize(FX_FLOAT fWidth, FX_FLOAT fHeight);
19 FWL_ERR GetMaxSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight);
20 FWL_ERR SetMaxSize(FX_FLOAT fWidth, FX_FLOAT fHeight);
  /external/pdfium/xfa/src/fwl/src/core/
fwl_contentimp.cpp 23 FWL_ERR IFWL_Content::GetMinSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight) {
24 return static_cast<CFWL_ContentImp*>(GetImpl())->GetMinSize(fWidth, fHeight);
26 FWL_ERR IFWL_Content::SetMinSize(FX_FLOAT fWidth, FX_FLOAT fHeight) {
27 return static_cast<CFWL_ContentImp*>(GetImpl())->SetMinSize(fWidth, fHeight);
29 FWL_ERR IFWL_Content::GetMaxSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight) {
30 return static_cast<CFWL_ContentImp*>(GetImpl())->GetMaxSize(fWidth, fHeight);
32 FWL_ERR IFWL_Content::SetMaxSize(FX_FLOAT fWidth, FX_FLOAT fHeight) {
33 return static_cast<CFWL_ContentImp*>(GetImpl())->SetMaxSize(fWidth, fHeight);
74 FWL_ERR CFWL_ContentImp::GetMinSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight) {
75 fWidth = m_fWidthMin;
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Utils.cpp 139 const FX_FLOAT fWidth = crBBox.right - crBBox.left;
161 pts[i][j].x = pts[i][j].x * fWidth + crBBox.left;
190 FX_FLOAT fWidth = crBBox.right - crBBox.left;
194 CPDF_Point pt2(crBBox.left + fWidth / 2, crBBox.top);
196 CPDF_Point pt4(crBBox.left + fWidth / 2, crBBox.bottom);
243 FX_FLOAT fWidth = crBBox.right - crBBox.left;
247 CPDF_Point pt2(crBBox.left + fWidth / 2, crBBox.top);
249 CPDF_Point pt4(crBBox.left + fWidth / 2, crBBox.bottom);
308 FX_FLOAT fWidth = crBBox.right - crBBox.left;
311 CPDF_Point pt1(-fWidth / 2, 0)
    [all...]
  /external/skia/src/core/
SkStrokeRec.cpp 16 fWidth = (kFill_InitStyle == s) ? kStrokeRec_FillStyleWidth : 0;
36 fWidth = kStrokeRec_FillStyleWidth;
40 fWidth = paint.getStrokeWidth();
46 fWidth = kStrokeRec_FillStyleWidth;
49 fWidth = paint.getStrokeWidth();
56 fWidth = kStrokeRec_FillStyleWidth;
68 if (fWidth < 0) {
70 } else if (0 == fWidth) {
78 fWidth = kStrokeRec_FillStyleWidth;
83 fWidth = 0
    [all...]
SkFontStyle.cpp 15 fUnion.fR.fWidth = kNormal_Width;
22 fUnion.fR.fWidth = SkTPin<int>(width, kUltraCondensed_Width, kUltaExpanded_Width);
30 fUnion.fR.fWidth = SkFontStyle::kNormal_Width;
SkAlphaRuns.cpp 23 SkDEBUGCODE(fWidth = width;)
60 SkASSERT(fWidth > 0);
68 SkASSERT(count <= fWidth);
71 SkASSERT(count == fWidth);
SkBitmapFilter.h 25 SkBitmapFilter(float width) : fWidth(width), fInvWidth(1.f/width) {
40 float width() const { return fWidth; }
56 float fWidth;
160 return SkTMax(0.f, fWidth - fabsf(x));
169 return (x >= -fWidth && x < fWidth) ? 1.0f : 0.0f;
178 if (x <= -fWidth || x >= fWidth) {
187 (0.54f + 0.46f * sk_float_cos(xpi / fWidth))); // hamming(x)
196 if (x <= -fWidth || x >= fWidth)
    [all...]
  /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));
49 fWidth = width;
58 SkASSERT(fWidth >= 0);
66 fLeft + fWidth >= glRect.fLeft + glRect.fWidth &&
70 void invalidate() {fLeft = fWidth = fBottom = fHeight = -1;}
  /external/skia/include/android/
SkBitmapRegionDecoder.h 73 int width() const { return fWidth; }
81 : fWidth(width)
86 const int fWidth;
  /external/pdfium/xfa/src/fwl/src/core/include/
fwl_contentimp.h 21 FWL_ERR GetMinSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight);
22 FWL_ERR SetMinSize(FX_FLOAT fWidth, FX_FLOAT fHeight);
23 FWL_ERR GetMaxSize(FX_FLOAT& fWidth, FX_FLOAT& fHeight);
24 FWL_ERR SetMaxSize(FX_FLOAT fWidth, FX_FLOAT fHeight);
  /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);
  /external/skia/include/images/
SkPageFlipper.h 29 int width() const { return fWidth; }
58 int fWidth;
  /external/icu/icu4c/source/i18n/
digitaffixesandpadding.h 88 int32_t fWidth;
96 : fPadPosition(kPadBeforePrefix), fPadChar(0x2a), fWidth(0) { }
107 fWidth == rhs.fWidth &&
  /external/skia/tests/
SizeTest.cpp 31 a.fWidth == b.fWidth && a.fHeight == b.fHeight);
57 a.fWidth == b.fWidth && a.fHeight == b.fHeight);
  /external/icu/icu4c/source/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 513 milliseconds

1 2 3 4 5 6 7 8 91011>>