HomeSort by relevance Sort by last modified time
    Searched defs:fRight (Results 1 - 21 of 21) sorted by null

  /external/skia/include/views/animated/
SkBorderView.h 23 SkScalar getRight() const { return fRight; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side
  /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; }
45 fRight = right;
52 fRight = SkToS16(r.fRight);
GrTessellator.cpp 237 , fRight(nullptr)
250 Edge* fRight; // "
303 return activeEdges && (fLeft || fRight || activeEdges->fHead == this);
648 remove<Edge, &Edge::fLeft, &Edge::fRight>(edge, &edges->fHead, &edges->fTail);
654 Edge* next = prev ? prev->fRight : edges->fHead;
655 insert<Edge, &Edge::fLeft, &Edge::fRight>(edge, prev, next, &edges->fHead, &edges->fTail);
661 *right = v->fLastEdgeAbove->fRight;
680 for (next = edges->fHead; next != nullptr; next = next->fRight) {
    [all...]
  /external/skia/src/pathops/
SkPathOpsRect.h 13 double fLeft, fTop, fRight, fBottom;
18 fRight = SkTMax(fRight, 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/pdfium/xfa/src/fwl/src/theme/
pushbuttontp.cpp 40 FX_FLOAT fRight = rect.right();
45 strokePath.LineTo(fRight - PUSHBUTTON_SIZE_Corner, rect.top);
46 strokePath.LineTo(fRight, rect.top + PUSHBUTTON_SIZE_Corner);
47 strokePath.LineTo(fRight, fBottom - PUSHBUTTON_SIZE_Corner);
48 strokePath.LineTo(fRight - PUSHBUTTON_SIZE_Corner, fBottom);
scrollbartp.cpp 226 FX_FLOAT fRight = pRect->right();
230 path.AddRectangle(fRight - 1, pRect->top, 1, pRect->height);
242 FX_FLOAT x2 = bVert ? fRight - 1 : pRect->left;
formtp.cpp 283 FX_FLOAT fBottom, fRight;
285 fRight = pRect->right();
292 path.LineTo(fRight - 1, fBottom - 1);
293 path.LineTo(fRight - 1, pRect->top);
300 path.LineTo(fRight - 2, fBottom - 2);
301 path.LineTo(fRight - 2, pRect->top);
308 path.LineTo(fRight - 3, fBottom - 3);
309 path.LineTo(fRight - 3, pRect->top);
316 path.LineTo(fRight - 4, fBottom - 4);
317 path.LineTo(fRight - 4, pRect->top);
    [all...]
checkboxtp.cpp 113 FX_FLOAT fRight = pRect->right();
163 DrawAxialShading(pGraphics, pRect->left - 1, pRect->top - 1, fRight, fBottom,
277 FX_FLOAT fRight = pRtSign->right();
279 path.AddLine(pRtSign->left, pRtSign->top, fRight, fBottom);
280 path.AddLine(pRtSign->left, fBottom, fRight, pRtSign->top);
widgettp.cpp 299 FX_FLOAT fRight = pRect->right();
309 pathLT.LineTo(fRight - fHalfWidth, fTop);
310 pathLT.LineTo(fRight - fHalfWidth, fTop + fHalfWidth);
320 pathLT.LineTo(fRight - fWidth, fTop + fHalfWidth);
321 pathLT.LineTo(fRight - fWidth, fTop + fWidth);
330 pathRB.MoveTo(fRight - fHalfWidth, fTop + fHalfWidth);
331 pathRB.LineTo(fRight - fHalfWidth, fBottom - fHalfWidth);
334 pathRB.LineTo(fRight - fWidth, fBottom - fWidth);
335 pathRB.LineTo(fRight - fWidth, fTop + fHalfWidth);
336 pathRB.LineTo(fRight - fHalfWidth, fTop + fHalfWidth);
    [all...]
  /external/skia/platform_tools/android/apps/canvasproof/src/main/jni/
org_skia_canvasproof_GaneshPictureRenderer.cpp 109 jfieldID fLeft, fTop, fRight, fBottom;
111 : fLeft(nullptr), fTop(nullptr), fRight(nullptr), fBottom(nullptr) {}
118 fRight = env->GetFieldID(rectClass, "right", "I");
144 env->SetIntField(androidGraphicsRect, help.fRight, (jint)(iRect.right()));
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_ListCtrl.cpp 63 FX_FLOAT fRight = pChild->GetItemRightMargin();
66 fRight);
93 FX_FLOAT fRight = pChild->GetItemRightMargin();
100 FX_FLOAT fItemHeight = pChild->GetItemHeight(fWidth - fLeft - fRight);
101 pChild->Move(CPDF_Rect(fLeft, fy - fItemHeight, fWidth - fRight, fy),
PWL_ScrollBar.cpp 905 FX_FLOAT fLeft, fRight, fTop, fBottom;
910 fRight = TrueToFace(m_sData.fScrollPos + m_sData.fClientWidth);
912 if (fRight - fLeft < PWL_SCROLLBAR_POSBUTTON_MINWIDTH)
913 fRight = fLeft + PWL_SCROLLBAR_POSBUTTON_MINWIDTH;
915 if (fRight > rcPosArea.right) {
916 fRight = rcPosArea.right;
917 fLeft = fRight - PWL_SCROLLBAR_POSBUTTON_MINWIDTH;
920 rcPosButton = CPDF_Rect(fLeft, rcPosArea.bottom, fRight, rcPosArea.top);
    [all...]
  /external/skia/include/core/
SkRect.h 21 int32_t fLeft, fTop, fRight, fBottom;
61 int right() const { return fRight; }
72 int width() const { return fRight - fLeft; }
89 int centerX() const { return (fRight + fLeft) >> 1; }
103 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
107 SK_MaxS32 == fRight &&
120 SkIsS16(fRight) && SkIsS16(fBottom);
130 fRight = right;
141 fRight = x + width;
150 fRight = fBottom = SK_MaxS32
    [all...]
SkRegion.h 184 return this->quickContains(r.fLeft, r.fTop, r.fRight, r.fBottom);
202 fBounds.fRight >= right && fBounds.fBottom >= bottom;
359 int fLeft, fRight;
  /external/pdfium/xfa/src/fwl/src/basewidget/
fwl_scrollbarimp.cpp 450 FX_FLOAT fRight = m_rtThumb.right();
451 FX_FLOAT ix = (m_rtThumb.left + fRight) / 2;
  /external/pdfium/core/src/fpdfdoc/
doc_ap.cpp 807 FX_FLOAT fRight = rect.right;
818 sAppStream << fLeft << " " << fBottom << " " << fRight - fLeft << " "
821 << fRight - fLeft - fWidth * 2 << " "
837 sAppStream << fRight - fWidth / 2 << " " << fTop - fWidth / 2
839 sAppStream << fRight - fWidth / 2 << " " << fBottom + fWidth / 2
854 sAppStream << fRight - fHalfWidth << " " << fTop - fHalfWidth
856 sAppStream << fRight - fHalfWidth * 2 << " " << fTop - fHalfWidth * 2
866 sAppStream << fRight - fHalfWidth << " " << fTop - fHalfWidth
868 sAppStream << fRight - fHalfWidth << " " << fBottom + fHalfWidth
874 sAppStream << fRight - fHalfWidth * 2 << "
    [all...]
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_textlayout.cpp     [all...]
xfa_ffwidget.cpp     [all...]
  /external/skia/src/core/
SkAAClip.cpp 482 fBounds.fRight -= riteZeros;
845 int w = r.fRight - r.fLeft;
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1822 milliseconds