HomeSort by relevance Sort by last modified time
    Searched full:fwidth (Results 126 - 150 of 346) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skia/samplecode/
SampleRectanizer.cpp 82 if (fCurRectanizer->addRect((*fCurRects)[fCurRandRect].fWidth,
105 SkIntToScalar((*fCurRects)[i].fWidth),
109 totArea += (*fCurRects)[i].fWidth * (*fCurRects)[i].fHeight;
SampleQuadStroker.cpp 126 SkScalar fWidth, fDWidth;
168 fWidth = 50;
581 SkScalar width = fWidth;
673 fWidth += fDWidth;
674 if (fDWidth > 0 && fWidth > kWidthMax) {
676 } else if (fDWidth < 0 && fWidth < kWidthMin) {
691 draw_control(canvas, fWidthControl, fWidth * fWidthScale, kWidthMin * fWidthScale,
788 fWidth = SkTMax(FLT_EPSILON, MapScreenYtoValue(click->fICurr.fY, fWidthControl,
790 fAnimate = fWidth <= kWidthMin;
  /external/skia/src/effects/
Sk2DPathEffect.cpp 91 rec->setStrokeStyle(fWidth);
119 buffer.writeScalar(fWidth);
127 str->appendf("width: %f", fWidth);
SkPerlinNoiseShader.cpp 59 : fWidth(0)
66 return fWidth == other.fWidth &&
72 int fWidth; // How much to subtract to wrap for stitching.
85 { SkIntToScalar(tileSize.fWidth), SkIntToScalar(tileSize.fHeight) },
235 fStitchDataInit.fWidth =
237 fStitchDataInit.fWrapX = kPerlinNoise + fStitchDataInit.fWidth;
293 tileSize.fWidth = buffer.readInt();
312 buffer.writeInt(fTileSize.fWidth);
337 checkNoise(noiseX.noisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
    [all...]
  /external/skia/src/gpu/
GrSurface.cpp 32 size = colorValuesPerPixel * desc.fWidth * desc.fHeight * colorBytes;
35 size = GrCompressedFormatDataSize(desc.fConfig, desc.fWidth, desc.fHeight);
37 size = (size_t) desc.fWidth * desc.fHeight * GrBytesPerPixel(desc.fConfig);
SkGrPixelRef.cpp 67 desc.fWidth = texture->width();
73 desc.fWidth = subset->width();
92 SkImageInfo info = SkImageInfo::Make(desc.fWidth, desc.fHeight, dstCT, kPremul_SkAlphaType,
  /external/skia/tests/
RectangleTextureTest.cpp 58 copyDstDesc.fWidth = rectangleTexture->width();
79 copySrcDesc.fWidth = rectangleTexture->width();
171 rectangleDesc.fWidth = kWidth;
  /external/pdfium/xfa/src/fwl/src/theme/
formtp.cpp 389 FX_FLOAT fWidth = pRect->width;
396 path.AddRectangle(rt.left + 1, rt.top, fWidth - 2, 1);
399 path.AddRectangle(rt.left + 1, fBottom - 1, fWidth - 2, 1);
413 path.AddRectangle(rt.left + 2, rt.top + 1, fWidth - 4, 1);
420 path.AddRectangle(rt.left + 2, fBottom - 2, fWidth - 4, 1);
425 path.AddRectangle(pRect->left + 2, pRect->top + 2, fWidth - 4, fHeight - 4);
456 FX_FLOAT fWidth = pRect->width;
462 path.AddRectangle(rt.left + 1, rt.top, fWidth - 2, 1);
465 path.AddRectangle(rt.left + 1, fBottom - 1, fWidth - 2, 1);
479 path.AddRectangle(rt.left + 2, rt.top + 1, fWidth - 4, 1);
    [all...]
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_Utils.h 136 FX_FLOAT fWidth,
144 FX_FLOAT fWidth,
208 FX_FLOAT fWidth);
214 FX_FLOAT fWidth);
218 FX_FLOAT fWidth,
  /external/skia/experimental/iOSSampleApp/
SkSampleUIView.mm 152 desc.fWidth = SkScalarRoundToInt(win->width());
355 glGetRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_WIDTH, &fGL.fWidth);
359 glRenderbufferStorage(GL_RENDERBUFFER, GL_STENCIL_INDEX8, fGL.fWidth, fGL.fHeight);
366 W = fGL.fWidth;
413 glViewport(0, 0, fGL.fWidth, fGL.fHeight);
  /external/skia/src/views/
SkView.cpp 19 fWidth = fHeight = 0;
65 if (fWidth != width || fHeight != height)
68 fWidth = width;
96 if (fWidth && fHeight && this->isVisible()) {
98 r.set(fLoc.fX, fLoc.fY, fLoc.fX + fWidth, fLoc.fY + fHeight);
345 if (x < 0 || y < 0 || x >= fWidth || y >= fHeight) {
484 bounds->set(0, 0, fWidth, fHeight);
  /external/icu/icu4c/source/io/
uprntf_p.c 433 (info->fPrecision == -1 && info->fZero) ? info->fWidth : info->fPrecision);
468 info->fPrecision == -1 && info->fZero ? info->fWidth : info->fPrecision);
863 *count = info->fWidth;
    [all...]
  /external/skia/src/core/
SkAAClip.cpp 950 int fWidth;
956 int fWidth;
962 fWidth = bounds.width();
992 row->fWidth = 0;
998 SkASSERT(row->fWidth <= x);
999 SkASSERT(row->fWidth < fBounds.width());
1003 int gap = x - row->fWidth;
1006 row->fWidth += gap;
1007 SkASSERT(row->fWidth < fBounds.width());
1011 row->fWidth += count
    [all...]
SkScalerContext.cpp 32 mask->fBounds.set(fLeft, fTop, fLeft + fWidth, fTop + fHeight);
51 fWidth = 0;
140 if (0 == glyph->fWidth || 0 == glyph->fHeight) {
141 glyph->fWidth = 0;
163 glyph->fWidth = SkToU16(mask.fBounds.width());
177 glyph->fWidth = SkToU16(ir.width());
180 if (glyph->fWidth > 0) {
183 glyph->fWidth += 2;
218 glyph->fWidth = SkToU16(dst.fBounds.width());
229 glyph->fWidth = 0
    [all...]
SkBitmapCache.h 24 int32_t fWidth;
  /external/pdfium/xfa/src/fwl/src/basewidget/
fwl_listboximp.cpp 739 FX_FLOAT fWidth = 0;
765 fWidth = r.width;
769 fWidth = GetMaxTextWidth();
770 fWidth += 2 * FWL_LISTBOX_ItemTextMargin;
774 if (fWidth < fActualWidth) {
775 fWidth = fActualWidth;
784 fWidth += m_fItemHeight;
789 GetItemSize(fs, htem, fWidth, m_fItemHeight, bAutoSize);
862 m_pHorzScrollBar->SetPageSize(fWidth * 9 / 10);
863 m_pHorzScrollBar->SetStepSize(fWidth / 10);
    [all...]
fwl_editimp.cpp 865 FX_FLOAT fWidth;
867 fWidth = bHSelfAdaption ? fContentWidth : m_pProperties->m_rtWidget.width;
869 evt.rtAfterChange.Set(0, 0, fWidth, fHight);
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_layout_itemlayout.cpp     [all...]
  /external/skia/bench/
DashBench.cpp 37 int fWidth;
48 fWidth = width;
69 paint.setStrokeWidth(SkIntToScalar(fWidth));
118 rect.fRight = rect.fLeft + SkIntToScalar(fWidth);
125 int count = SkScalarRoundToInt((pts[1].fX - pts[0].fX) / (2*fWidth));
126 SkScalar dx = SkIntToScalar(2 * fWidth);
GameBench.cpp 112 maxTransX = size.fWidth - (1.5f * width);
115 maxTransX = SkIntToScalar(size.fWidth - width);
120 maxTransX = size.fWidth - SK_ScalarSqrt2 * height;
  /external/pdfium/xfa/include/fxfa/
fxfa_widget.h 110 FX_FLOAT& fWidth,
  /external/pdfium/xfa/src/fdp/src/tto/
fde_textout.cpp 233 FX_FLOAT fWidth = 0.0f;
252 RetrieveLineWidth(dwBreakStatus, fStartPos, fWidth, fHeight);
258 RetrieveLineWidth(dwBreakStatus, fStartPos, fWidth, fHeight);
275 rect.height = std::min(fWidth, rect.Height());
279 rect.width = std::min(fWidth, rect.Width());
305 FX_FLOAT& fWidth,
325 fWidth += fLineWidth;
327 fWidth = std::max(fWidth, fLineWidth);
  /external/pdfium/xfa/src/fwl/src/basewidget/include/
fwl_listboximp.h 74 FX_FLOAT fWidth,
  /external/skia/debugger/QT/
SkGLWidget.cpp 88 desc.fWidth = SkScalarRoundToInt(this->width());
  /external/skia/gm/
morphology.cpp 62 int fWidth, fHeight;

Completed in 914 milliseconds

1 2 3 4 56 7 8 91011>>