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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/gl/
GrGLIRect.h 21 GrGLint fLeft;
30 return &fLeft;
32 GR_STATIC_ASSERT(0 == offsetof(GrGLIRect, fLeft));
38 int* asInts() { return &fLeft; }
41 GR_GL_CALL(gl, Viewport(fLeft, fBottom, fWidth, fHeight));
45 GR_GL_CALL(gl, Scissor(fLeft, fBottom, fWidth, fHeight));
67 fLeft = glRect.fLeft + leftOffset;
81 return fLeft <= glRect.fLeft &
    [all...]
  /external/skia/src/pathops/
SkPathOpsBounds.h 16 return AlmostLessOrEqualUlps(a.fLeft, b.fRight)
17 && AlmostLessOrEqualUlps(b.fLeft, a.fRight)
26 if (left < fLeft) fLeft = left;
33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
37 if (pt.fX < fLeft) fLeft = pt.fX;
44 if (pt.fX < fLeft) fLeft = SkDoubleToScalar(pt.fX);
51 return AlmostLessOrEqualUlps(fLeft, pt.fX
    [all...]
SkPathOpsRect.h 13 double fLeft, fTop, fRight, fBottom;
16 fLeft = SkTMin(fLeft, pt.fX);
23 return approximately_between(fLeft, pt.fX, fRight)
30 SkASSERT(fLeft <= fRight);
32 SkASSERT(r.fLeft <= r.fRight);
34 return r.fLeft <= fRight && fLeft <= r.fRight && r.fTop <= fBottom && fTop <= r.fBottom;
38 fLeft = fRight = pt.fX;
43 return fRight - fLeft;
    [all...]
  /external/skia/src/gpu/
GrRect.h 15 int16_t fLeft, fTop, fRight, fBottom;
35 int width() const { return fRight - fLeft; }
38 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
43 fLeft = left;
50 fLeft = SkToS16(r.fLeft);
61 SkASSERT(!a.isFinite() || (a.fLeft <= a.fRight && a.fTop <= a.fBottom));
62 SkASSERT(!b.isFinite() || (b.fLeft <= b.fRight && b.fTop <= b.fBottom));
63 return a.fRight > b.fLeft && a.fBottom > b.fTop && b.fRight > a.fLeft && b.fBottom > a.fTop
    [all...]
GrClip.h 77 return innerClipBounds.fRight - innerClipBounds.fLeft > kBoundsTolerance &&
79 innerClipBounds.fLeft < queryBounds.fLeft + kBoundsTolerance &&
95 outerClipBounds.fRight - outerClipBounds.fLeft <= kBoundsTolerance ||
99 outerClipBounds.fLeft >= queryBounds.fRight - kBoundsTolerance ||
101 outerClipBounds.fRight <= queryBounds.fLeft + kBoundsTolerance ||
109 return SkIRect::MakeLTRB(SkScalarFloorToInt(bounds.fLeft + kBoundsTolerance),
119 return SkRect::MakeLTRB(SkScalarFloorToScalar(bounds.fLeft + kBoundsTolerance),
129 return SkScalarAbs(SkScalarRoundToScalar(rect.fLeft) - rect.fLeft) <= kBoundsTolerance &
    [all...]
GrTextureProducer.cpp 168 if (contentRect->fLeft > 0 &&
169 contentRect->fLeft + filterHalfWidth > constraintRect.fLeft) {
170 domainRect->fLeft = contentRect->fLeft + kDomainInset;
194 if (contentRect->fLeft > 0) {
195 domainRect->fLeft = contentRect->fLeft + kDomainInset;
211 if (domainRect->fLeft > domainRect->fRight) {
212 domainRect->fLeft = domainRect->fRight = SkScalarAve(domainRect->fLeft, domainRect->fRight)
    [all...]
  /external/skia/src/sksl/ir/
SkSLBinaryExpression.h 25 , fLeft(std::move(left))
31 return irGenerator.constantFold(*fLeft,
37 return Token::IsAssignment(fOperator) || fLeft->hasSideEffects() ||
42 return "(" + fLeft->description() + " " + Token::OperatorName(fOperator) + " " +
46 std::unique_ptr<Expression> fLeft;
  /external/pdfium/core/fpdfdoc/
cpdf_iconfit.cpp 31 void CPDF_IconFit::GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom) {
32 fLeft = fBottom = 0.5;
40 fLeft = pA->GetNumberAt(0);
cpdf_iconfit.h 22 void GetIconPosition(FX_FLOAT& fLeft, FX_FLOAT& fBottom);
  /external/skia/src/sksl/ast/
SkSLASTBinaryExpression.h 23 , fLeft(std::move(left))
28 return "(" + fLeft->description() + " " + Token::OperatorName(fOperator) + " " +
32 const std::unique_ptr<ASTExpression> fLeft;
  /external/skia/include/core/
SkRect.h 21 int32_t fLeft, fTop, fRight, fBottom;
59 int left() const { return fLeft; }
65 int x() const { return fLeft; }
72 int width() const { return fRight - fLeft; }
89 int centerX() const { return (fRight + fLeft) >> 1; }
103 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
105 bool isLargest() const { return SK_MinS32 == fLeft &&
119 return SkIsS16(fLeft) && SkIsS16(fTop) &&
128 fLeft = left;
139 fLeft = x
    [all...]
SkMask.h 63 return fImage + ((x - fBounds.fLeft) >> 3) + (y - fBounds.fTop) * fRowBytes;
74 return fImage + x - fBounds.fLeft + (y - fBounds.fTop) * fRowBytes;
87 return row + (x - fBounds.fLeft);
100 return row + (x - fBounds.fLeft);
  /external/skia/src/gpu/effects/
GrOvalEffect.cpp 22 return GrCircleEffect::Make(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + w), w);
26 return GrEllipseEffect::Make(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + h),
  /external/skia/src/core/
SkValidationUtils.h 30 return (rect.fLeft <= rect.fRight) &&
SkRect.cpp 19 if (fLeft >= fRight || fTop >= fBottom) {
22 if (left < fLeft) fLeft = left;
34 quad[0].set(fLeft, fTop);
37 quad[3].set(fLeft, fBottom);
106 CHECK_INTERSECT(left, top, right, bottom, fLeft, fTop, fRight, fBottom);
112 return this->intersect(r.fLeft, r.fTop, r.fRight, r.fBottom);
116 CHECK_INTERSECT(a.fLeft, a.fTop, a.fRight, a.fBottom, b.fLeft, b.fTop, b.fRight, b.fBottom);
128 if (fLeft >= fRight || fTop >= fBottom)
    [all...]
SkScan.h 99 xr->fLeft = SkIntToFixed(src.fLeft);
110 xr->fLeft = SkScalarToFixed(src.fLeft);
119 dst->fLeft = SkFixedRoundToInt(xr.fLeft);
129 dst->fLeft = SkFixedFloorToInt(xr.fLeft);
SkLineClipper.cpp 73 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
90 if (nestedLT(bounds.fRight, clip.fLeft, bounds.width()) ||
91 nestedLT(clip.fRight, bounds.fLeft, bounds.width()) ||
127 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
133 if (tmp[index0].fX < clip.fLeft) {
134 tmp[index0].set(clip.fLeft, sect_with_vertical(src, clip.fLeft));
214 if (tmp[index1].fX <= clip.fLeft) { // wholly to the left
215 tmp[0].fX = tmp[1].fX = clip.fLeft;
    [all...]
SkLatticeIter.cpp 35 latticeBounds.fLeft == lattice.fXDivs[0]);
42 return valid_divs(lattice.fXDivs, lattice.fXCount, latticeBounds.fLeft, latticeBounds.fRight)
134 bool xIsScalable = (xCount > 0 && src.fLeft == xDivs[0]);
150 int xCountScalable = count_scalable_pixels(xDivs, xCount, xIsScalable, src.fLeft, src.fRight);
158 src.fLeft, src.fRight, dst.fLeft, dst.fRight, xIsScalable);
217 fSrcX[1] = SkIntToScalar(c.fLeft);
226 fDstX[0] = dst.fLeft;
227 fDstX[1] = dst.fLeft + SkIntToScalar(c.fLeft);
    [all...]
  /external/pdfium/xfa/fwl/theme/
cfwl_widgettp.cpp 188 FX_FLOAT fLeft =
195 path.MoveTo(CFX_PointF(fLeft, fTop + 1));
196 path.LineTo(CFX_PointF(fLeft + 4, fTop + 5));
197 path.LineTo(CFX_PointF(fLeft + 8, fTop + 1));
198 path.LineTo(CFX_PointF(fLeft + 7, fTop));
199 path.LineTo(CFX_PointF(fLeft + 4, fTop + 3));
200 path.LineTo(CFX_PointF(fLeft + 1, fTop));
204 path.MoveTo(CFX_PointF(fLeft, fTop + 4));
205 path.LineTo(CFX_PointF(fLeft + 4, fTop));
206 path.LineTo(CFX_PointF(fLeft + 8, fTop + 4))
    [all...]
  /external/skia/bench/
RTreeBench.cpp 84 query.fLeft = rand.nextRangeF(0, GENERATE_EXTENTS);
86 query.fRight = query.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/2);
100 out.fLeft = SkIntToScalar(index % GRID_WIDTH);
102 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3);
108 out.fLeft = SkIntToScalar(index / GRID_WIDTH);
110 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/3);
117 out.fLeft = rand.nextRangeF(0, GENERATE_EXTENTS);
119 out.fRight = out.fLeft + 1 + rand.nextRangeF(0, GENERATE_EXTENTS/5);
  /external/skia/src/android/
SkBitmapRegionDecoderPriv.h 38 int left = SkTMax(0, subset->fLeft);
42 *outX = left - subset->fLeft;
  /frameworks/base/libs/hwui/tests/common/scenes/
SaveLayer2Animation.cpp 51 canvas.saveLayer(bounds.fLeft, top, bounds.fRight, top + padding,
58 bounds.fLeft, top + padding, minikin::kBidi_Force_LTR, mBluePaint, nullptr);
61 canvas.drawRect(bounds.fLeft, top + padding, bounds.fRight,
65 canvas.drawText(ontext.get(), 0, onscreen.length(), onscreen.length(), bounds.fLeft,
  /external/skia/src/gpu/ops/
GrCopySurfaceOp.cpp 22 if (clippedSrcRect->fLeft < 0) {
23 clippedDstPoint->fX -= clippedSrcRect->fLeft;
24 clippedSrcRect->fLeft = 0;
27 clippedSrcRect->fLeft -= clippedDstPoint->fX;
46 clippedSrcRect->fRight = clippedSrcRect->fLeft + dst->width() - clippedDstPoint->fX;
GrNonAAStrokeRectOp.cpp 29 verts[0].set(rect.fLeft + rad, rect.fTop + rad);
30 verts[1].set(rect.fLeft - rad, rect.fTop - rad);
35 verts[6].set(rect.fLeft + rad, rect.fBottom - rad);
36 verts[7].set(rect.fLeft - rad, rect.fBottom + rad);
65 fColor, fRect.fLeft, fRect.fTop, fRect.fRight, fRect.fBottom, fStrokeWidth);
109 bounds.set(SkScalarFloorToScalar(bounds.fLeft),
169 vertex[0].set(fRect.fLeft, fRect.fTop);
172 vertex[3].set(fRect.fLeft, fRect.fBottom);
173 vertex[4].set(fRect.fLeft, fRect.fTop);
  /external/skia/tests/
BlitMaskClip.cpp 21 REPORTER_ASSERT(fReporter, x >= fBounds.fLeft && x < fBounds.fRight);
24 REPORTER_ASSERT(fReporter, right > fBounds.fLeft && right <= fBounds.fRight);
59 for (int left = b.fLeft; left < b.fRight; left++) {

Completed in 456 milliseconds

1 2 3 4 5 6 7 8 91011>>