HomeSort by relevance Sort by last modified time
    Searched defs:fWidth (Results 26 - 50 of 99) sorted by null

12 3 4

  /external/skia/include/core/
SkImage.h 150 int width() const { return fWidth; }
152 SkISize dimensions() const { return SkISize::Make(fWidth, fHeight); }
153 SkIRect bounds() const { return SkIRect::MakeWH(fWidth, fHeight); }
345 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 37 SkScalar getWidth() const { return fWidth; }
110 return fWidth == other.fWidth &&
121 SkScalar fWidth;
SkFontStyle.h 54 int width() const { return fUnion.fR.fWidth; }
65 uint8_t fWidth; // 1 .. 9
SkSurface.h 137 int width() const { return fWidth; }
313 const int fWidth;
  /external/skia/samplecode/
SampleStrokePath.cpp 99 SkScalar fWidth;
104 fWidth = SkIntToScalar(120);
118 scale_to_width(&fPath, fWidth);
144 canvas->translate(fWidth * 5 / 4, 0);
SampleSkLayer.cpp 162 int fWidth;
178 child->setSize(gData[i].fWidth, gData[i].fHeight);
  /external/skia/src/core/
SkScan_AntiPath.cpp 60 int fWidth;
95 fWidth = right - left;
134 int getRunsSz() const { return (fWidth + 1 + (fWidth + 2)/2) * sizeof(int16_t); }
144 fRuns.fAlpha = reinterpret_cast<SkAlpha*>(fRuns.fRuns + fWidth + 1);
145 fRuns.reset(fWidth);
372 SkASSERT((coverageL != 0) + n + (coverageR != 0) <= fWidth);
382 fRuns.reset(fWidth);
SkBitmapCache.cpp 59 desc.fWidth = width;
72 desc.fWidth = width;
89 , fWidth(width)
94 sizeof(fGenID) + sizeof(fWidth) + sizeof(fHeight) + sizeof(fBounds));
99 , fWidth(desc.fWidth)
104 sizeof(fGenID) + sizeof(fWidth) + sizeof(fHeight) + sizeof(fBounds));
108 SkDebugf("-- add [%d %d] %d [%d %d %d %d]\n", fWidth, fHeight, fGenID,
113 const int fWidth;
166 if (0 == desc.fWidth || 0 == desc.fHeight)
    [all...]
SkBitmapHeap.h 216 , fWidth(bm.width())
223 const uint32_t fWidth;
SkRemote.h 57 SkScalar fWidth, fMiter;
  /external/skia/src/gpu/
GrTextureParamsAdjuster.h 33 int fWidth;
71 int width() const { return fWidth; }
77 : fWidth(width)
90 builder[1] = copyParams.fWidth;
111 const int fWidth;
  /external/skia/src/gpu/vk/
GrVkImage.h 75 uint32_t fWidth;
86 , fWidth(0)
  /external/skia/src/images/
SkImageDecoder_libbmp.cpp 75 fWidth = width;
85 int width() const { return fWidth; }
91 int fWidth;
SkImageDecoder_wbmp.cpp 52 int fWidth;
65 if (!read_mbf(stream, &fWidth) || (unsigned)fWidth > 0xFFFF) {
71 return fWidth != 0 && fHeight != 0;
111 int width = head.fWidth;
  /external/skia/src/utils/win/
SkDWrite.h 105 fWidth = (DWRITE_FONT_STRETCH)pattern.width();
109 DWRITE_FONT_STRETCH fWidth;
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_ListCtrl.cpp 82 FX_FLOAT fWidth = rcClient.Width();
100 FX_FLOAT fItemHeight = pChild->GetItemHeight(fWidth - fLeft - fRight);
101 pChild->Move(CPDF_Rect(fLeft, fy - fItemHeight, fWidth - fRight, fy),
116 m_rcContent.right = fWidth;
  /external/pdfium/xfa/src/fdp/src/fde/
fde_render.cpp 227 FX_FLOAT fWidth = pPathSet->GetPenWidth(hPath);
228 if (pPen != NULL && fWidth > 0) {
229 m_pRenderDevice->DrawPath(pPen, fWidth, pPath, &m_Transform);
  /external/pdfium/xfa/src/fwl/src/theme/
scrollbartp.cpp 271 FX_FLOAT fWidth = 2;
272 Draw3DRect(pGraphics, FWLTHEME_EDGE_Raised, fWidth, pRect,
277 path.AddRectangle(pRect->left + fWidth, pRect->top + fWidth,
278 pRect->width - 2 * fWidth, pRect->height - 2 * fWidth);
309 FX_FLOAT fWidth = eState == FWLTHEME_STATE_Pressed ? 1.0f : 2.0f;
312 Draw3DRect(pGraphics, eType, fWidth, pRect, FWLTHEME_COLOR_EDGELT1,
317 path.AddRectangle(pRect->left + fWidth, pRect->top + fWidth,
    [all...]
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_fwltheme.cpp 396 FX_FLOAT fWidth = 1.0f;
401 fWidth = edge.GetThickness();
406 pParams->m_pGraphics->SetLineWidth(fWidth);
  /external/skia/gm/
complexclip2.cpp 35 fWidth = xF - xA;
38 fTotalWidth = kCols * fWidth + SK_Scalar1 * (kCols + 1) * kPadX;
152 canvas->translate(kPadX * SK_Scalar1 + (fWidth + kPadX * SK_Scalar1)*j,
191 canvas->drawRect(SkRect::MakeWH(fWidth, fHeight), fillPaint);
204 SkScalar fWidth;
xfermodes3.cpp 67 static const struct { SkPaint::Style fStyle; SkScalar fWidth; } kStrokes[] = {
84 modePaint.setStrokeWidth(kStrokes[s].fWidth);
101 modePaint.setStrokeWidth(kStrokes[s].fWidth);
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.h 31 uint16_t fWidth, fHeight, fRowHeight;
  /external/skia/tests/
RecordingXfermodeTest.cpp 103 fWidth = imageInfo.width();
112 SkRect canvasRect(SkRect::MakeWH(SkIntToScalar(fWidth),SkIntToScalar(fHeight)));
113 SkCanvas* canvas = recorder.beginRecording(SkIntToScalar(fWidth),
128 int fWidth;
  /external/pdfium/core/include/fpdfdoc/
fpdf_vt.h 219 fWidth(0.0f),
235 FX_FLOAT fWidth;

Completed in 1272 milliseconds

12 3 4