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

1 2

  /external/skia/src/sksl/ast/
SkSLASTBinaryExpression.h 24 , fLeft(std::move(left))
29 return "(" + fLeft->description() + " " + Compiler::OperatorName(fOperator) + " " +
33 const std::unique_ptr<ASTExpression> fLeft;
  /external/skia/src/sksl/ir/
SkSLBinaryExpression.h 25 , fLeft(std::move(left))
31 return irGenerator.constantFold(*fLeft,
37 return Compiler::IsAssignment(fOperator) || fLeft->hasSideEffects() ||
42 return "(" + fLeft->description() + " " + Compiler::OperatorName(fOperator) + " " +
46 std::unique_ptr<Expression> fLeft;
  /external/skqp/src/sksl/ast/
SkSLASTBinaryExpression.h 24 , fLeft(std::move(left))
29 return "(" + fLeft->description() + " " + Compiler::OperatorName(fOperator) + " " +
33 const std::unique_ptr<ASTExpression> fLeft;
  /external/skqp/src/sksl/ir/
SkSLBinaryExpression.h 25 , fLeft(std::move(left))
31 return irGenerator.constantFold(*fLeft,
37 return Compiler::IsAssignment(fOperator) || fLeft->hasSideEffects() ||
42 return "(" + fLeft->description() + " " + Compiler::OperatorName(fOperator) + " " +
46 std::unique_ptr<Expression> fLeft;
  /external/skia/src/core/
SkSpriteBlitter.h 42 int fLeft, fTop;
SkScan_AntiPath.cpp 61 int fLeft;
92 fLeft = left;
170 fRealBlitter->blitAntiH(fLeft, fCurrIY, fRuns.fAlpha, fRuns.fRuns);
358 fRealBlitter->blitV(ileft + fLeft, start_y, count,
373 fRealBlitter->blitAntiRect(ileft + fLeft, start_y, n, count,
543 SkASSERT(ix >= fMask.fBounds.fLeft && ix < fMask.fBounds.fRight);
547 x -= SkLeftShift(fMask.fBounds.fLeft, SHIFT);
650 return overflows_short_shift(rect.fLeft, shift) |
SkScan_AAAPath.cpp 184 fRow = fMask.fImage + (y - fMask.fBounds.fTop) * fMask.fRowBytes - fMask.fBounds.fLeft;
233 SkASSERT(x >= fMask.fBounds.fLeft -1);
238 SkASSERT(x >= fMask.fBounds.fLeft -1);
249 SkASSERT(x >= fMask.fBounds.fLeft -1);
260 SkASSERT(x >= fMask.fBounds.fLeft -1);
305 int fLeft;
358 fRealBlitter->blitAntiH(fLeft, fCurrY, fRuns.fAlpha, fRuns.fRuns);
392 fLeft = left;
416 x -= fLeft;
444 x -= fLeft;
    [all...]
SkGlyph.h 152 int16_t fTop, fLeft;
  /external/skqp/src/core/
SkSpriteBlitter.h 42 int fLeft, fTop;
SkScan_AntiPath.cpp 61 int fLeft;
92 fLeft = left;
170 fRealBlitter->blitAntiH(fLeft, fCurrIY, fRuns.fAlpha, fRuns.fRuns);
358 fRealBlitter->blitV(ileft + fLeft, start_y, count,
373 fRealBlitter->blitAntiRect(ileft + fLeft, start_y, n, count,
543 SkASSERT(ix >= fMask.fBounds.fLeft && ix < fMask.fBounds.fRight);
547 x -= SkLeftShift(fMask.fBounds.fLeft, SHIFT);
650 return overflows_short_shift(rect.fLeft, shift) |
SkScan_AAAPath.cpp 184 fRow = fMask.fImage + (y - fMask.fBounds.fTop) * fMask.fRowBytes - fMask.fBounds.fLeft;
233 SkASSERT(x >= fMask.fBounds.fLeft -1);
238 SkASSERT(x >= fMask.fBounds.fLeft -1);
249 SkASSERT(x >= fMask.fBounds.fLeft -1);
260 SkASSERT(x >= fMask.fBounds.fLeft -1);
305 int fLeft;
358 fRealBlitter->blitAntiH(fLeft, fCurrY, fRuns.fAlpha, fRuns.fRuns);
392 fLeft = left;
416 x -= fLeft;
444 x -= fLeft;
    [all...]
SkGlyph.h 152 int16_t fTop, fLeft;
  /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/
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/skqp/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/skqp/src/pathops/
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...]
  /external/skqp/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...]
  /external/icu/icu4c/source/io/
uprintf.h 45 UBool fLeft; /* - flag */
  /external/pdfium/fpdfsdk/
cba_annotiterator.cpp 148 float fLeft = -1.0f;
151 if (fLeft < 0) {
153 fLeft = rcAnnot.left;
154 } else if (rcAnnot.left < fLeft) {
156 fLeft = rcAnnot.left;
  /external/pdfium/fpdfsdk/pwl/
cpwl_icon.cpp 111 float fLeft;
113 std::tie(fLeft, fBottom) = GetIconPosition();
129 return {(fPlateWidth - fImageFactWidth) * fLeft,
  /external/pdfium/xfa/fwl/theme/
cfwl_widgettp.cpp 186 float fLeft =
193 path.MoveTo(CFX_PointF(fLeft, fTop + 1));
194 path.LineTo(CFX_PointF(fLeft + 4, fTop + 5));
195 path.LineTo(CFX_PointF(fLeft + 8, fTop + 1));
196 path.LineTo(CFX_PointF(fLeft + 7, fTop));
197 path.LineTo(CFX_PointF(fLeft + 4, fTop + 3));
198 path.LineTo(CFX_PointF(fLeft + 1, fTop));
202 path.MoveTo(CFX_PointF(fLeft, fTop + 4));
203 path.LineTo(CFX_PointF(fLeft + 4, fTop));
204 path.LineTo(CFX_PointF(fLeft + 8, fTop + 4))
    [all...]
  /external/skia/include/core/
SkRegion.h 186 return this->quickContains(r.fLeft, r.fTop, r.fRight, r.fBottom);
203 fBounds.fLeft <= left && fBounds.fTop <= top &&
369 int fLeft, fRight;
SkRect.h 30 int32_t fLeft;
38 When equal to or less than fLeft, SkIRect is empty.
88 result in fLeft greater than fRight, or fTop greater than fBottom.
90 @param l integer stored in fLeft
104 @param x stored in fLeft
116 Call sort() to reverse fLeft and fRight if needed.
118 @return fLeft
120 int32_t left() const { return fLeft; }
130 Call sort() to reverse fLeft and fRight if needed.
144 and sort() to reverse fLeft and fRight if needed
    [all...]
  /external/skqp/include/core/
SkRegion.h 186 return this->quickContains(r.fLeft, r.fTop, r.fRight, r.fBottom);
203 fBounds.fLeft <= left && fBounds.fTop <= top &&
369 int fLeft, fRight;

Completed in 638 milliseconds

1 2