Searched defs:fRight (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/skia/include/views/animated/
H A DSkBorderView.h23 SkScalar getRight() const { return fRight; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side member in class:SkBorderView
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsRect.h13 double fLeft, fTop, fRight, fBottom; member in struct:SkDRect
22 if (fRight < pt.fX) {
23 fRight = pt.fX;
31 return approximately_between(fLeft, pt.fX, fRight)
36 SkASSERT(fLeft <= fRight);
38 SkASSERT(r->fLeft <= r->fRight);
40 return r->fLeft <= fRight && fLeft <= r->fRight && r->fTop <= fBottom && fTop <= r->fBottom;
44 fLeft = fRight = pt.fX;
49 return fRight
[all...]
/external/skia/include/gpu/
H A DGrRect.h15 int16_t fLeft, fTop, fRight, fBottom; member in struct:GrIRect16
23 int width() const { return fRight - fLeft; }
26 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
33 fRight = SkToS16(r.fRight);
/external/skia/include/views/animated/
H A DSkBorderView.h23 SkScalar getRight() const { return fRight; }
34 SkScalar fLeft, fRight, fTop, fBottom; //margin on each side member in class:SkBorderView
/external/skia/src/pathops/
H A DSkPathOpsRect.h13 double fLeft, fTop, fRight, fBottom; member in struct:SkDRect
22 if (fRight < pt.fX) {
23 fRight = pt.fX;
31 return approximately_between(fLeft, pt.fX, fRight)
36 SkASSERT(fLeft <= fRight);
38 SkASSERT(r->fLeft <= r->fRight);
40 return r->fLeft <= fRight && fLeft <= r->fRight && r->fTop <= fBottom && fTop <= r->fBottom;
44 fLeft = fRight = pt.fX;
49 return fRight
[all...]
/external/chromium_org/skia/ext/
H A Dskia_utils_win.cc18 SK_COMPILE_ASSERT(offsetof(RECT, right) == offsetof(SkIRect, fRight), o3);
22 SK_COMPILE_ASSERT(sizeof(RECT().right) == sizeof(SkIRect().fRight), o7); member in namespace:__anon10683
/external/chromium_org/third_party/skia/include/gpu/
H A DGrRect.h15 int16_t fLeft, fTop, fRight, fBottom; member in struct:GrIRect16
35 int width() const { return fRight - fLeft; }
38 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
45 fRight = right;
52 fRight = SkToS16(r.fRight);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLNameAllocator.cpp130 fRight(right) {
132 SkASSERT(fRight.get());
144 if (fLeft->end() + 1 == fRight->first()) {
145 // It closed the gap between fLeft and fRight; merge.
147 fRight.reset(fRight->removeLeftmostContiguousRange(&removedCount));
149 if (NULL == fRight.get()) {
156 // There is guaranteed to be a gap between fLeft and fRight, and the
158 SkASSERT(fLeft->end() + 1 < fRight->first());
166 return fRight
267 SkAutoTUnref<SparseNameRange> fRight; member in class:GrGLNameAllocator::SparseNameTree
[all...]
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_ListCtrl.cpp79 FX_FLOAT fRight = pChild->GetItemRightMargin(); local
81 fRet += pChild->GetItemHeight(fLimitWidth - fBorderWidth* 2 - fLeft - fRight);
111 FX_FLOAT fRight = pChild->GetItemRightMargin(); local
121 FX_FLOAT fItemHeight = pChild->GetItemHeight(fWidth - fLeft - fRight);
122 pChild->Move(CPDF_Rect(fLeft, fy-fItemHeight, fWidth - fRight, fy), TRUE, FALSE);
H A DPWL_ScrollBar.cpp1019 FX_FLOAT fLeft,fRight,fTop,fBottom; local
1025 fRight = TrueToFace(m_sData.fScrollPos + m_sData.fClientWidth);
1027 if (fRight - fLeft < PWL_SCROLLBAR_POSBUTTON_MINWIDTH)
1028 fRight = fLeft + PWL_SCROLLBAR_POSBUTTON_MINWIDTH;
1030 if (fRight > rcPosArea.right)
1032 fRight = rcPosArea.right;
1033 fLeft = fRight - PWL_SCROLLBAR_POSBUTTON_MINWIDTH;
1038 fRight ,
/external/skia/src/gpu/gl/
H A DGrGLNameAllocator.cpp130 fRight(right) {
132 SkASSERT(fRight.get());
144 if (fLeft->end() + 1 == fRight->first()) {
145 // It closed the gap between fLeft and fRight; merge.
147 fRight.reset(fRight->removeLeftmostContiguousRange(&removedCount));
149 if (NULL == fRight.get()) {
156 // There is guaranteed to be a gap between fLeft and fRight, and the
158 SkASSERT(fLeft->end() + 1 < fRight->first());
166 return fRight
267 SkAutoTUnref<SparseNameRange> fRight; member in class:GrGLNameAllocator::SparseNameTree
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkRect.h21 int32_t fLeft, fTop, fRight, fBottom; member in struct:SkIRect
61 int right() const { return fRight; }
72 int width() const { return fRight - fLeft; }
87 int centerX() const { return (fRight + fLeft) >> 1; }
101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
105 SK_MaxS32 == fRight &&
118 SkIsS16(fRight) && SkIsS16(fBottom);
128 fRight = right;
139 fRight = x + width;
148 fRight
[all...]
H A DSkRegion.h185 return this->quickContains(r.fLeft, r.fTop, r.fRight, r.fBottom);
203 fBounds.fRight >= right && fBounds.fBottom >= bottom;
360 int fLeft, fRight; member in class:SkRegion::Spanerator
/external/skia/include/core/
H A DSkRect.h21 int32_t fLeft, fTop, fRight, fBottom; member in struct:SkIRect
61 int right() const { return fRight; }
72 int width() const { return fRight - fLeft; }
87 int centerX() const { return (fRight + fLeft) >> 1; }
101 bool isEmpty() const { return fLeft >= fRight || fTop >= fBottom; }
105 SK_MaxS32 == fRight &&
118 SkIsS16(fRight) && SkIsS16(fBottom);
128 fRight = right;
139 fRight = x + width;
148 fRight
[all...]
H A DSkRegion.h185 return this->quickContains(r.fLeft, r.fTop, r.fRight, r.fBottom);
203 fBounds.fRight >= right && fBounds.fBottom >= bottom;
360 int fLeft, fRight; member in class:SkRegion::Spanerator
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_ap.cpp719 FX_FLOAT fRight = rect.right; local
730 sAppStream << fLeft << " " << fBottom << " " << fRight - fLeft << " " << fTop - fBottom << " re\n";
732 << fRight - fLeft - fWidth * 2 << " " << fTop - fBottom - fWidth * 2 << " re\n";
743 sAppStream << fRight - fWidth / 2 << " " << fTop - fWidth / 2 << " l\n";
744 sAppStream << fRight - fWidth / 2 << " " << fBottom + fWidth / 2 << " l\n";
755 sAppStream << fRight - fHalfWidth << " " << fTop - fHalfWidth << " l\n";
756 sAppStream << fRight - fHalfWidth * 2 << " " << fTop - fHalfWidth * 2 << " l\n";
763 sAppStream << fRight - fHalfWidth << " " << fTop - fHalfWidth << " m\n";
764 sAppStream << fRight - fHalfWidth << " " << fBottom + fHalfWidth << " l\n";
767 sAppStream << fRight
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkAAClip.cpp482 fBounds.fRight -= riteZeros;
845 int w = r.fRight - r.fLeft;
1247 fBuilder->addRun(fLeft, y - 1, 0, fRight - fLeft);
1258 fRight = builder->getBounds().fRight;
1333 if (right > fRight) {
1335 localCount -= right - fRight;
1352 int fRight; member in class:SkAAClip::BuilderBlitter
1459 fBoundsRight = bounds.fRight;
1461 fRight
1495 int fRight; member in class:RowIter
[all...]
/external/skia/src/core/
H A DSkAAClip.cpp442 fBounds.fRight -= riteZeros;
777 int w = r.fRight - r.fLeft;
1179 fBuilder->addRun(fLeft, y - 1, 0, fRight - fLeft);
1190 fRight = builder->getBounds().fRight;
1265 if (right > fRight) {
1267 localCount -= right - fRight;
1284 int fRight; member in class:SkAAClip::BuilderBlitter
1391 fBoundsRight = bounds.fRight;
1393 fRight
1427 int fRight; member in class:RowIter
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1893 float fRight = aDistance[aRight[iRight]]; local
1894 if( fLeft<fRight ){
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c126161 float fRight = aDistance[aRight[iRight]]; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c146646 RtreeDValue fRight = aDistance[aRight[iRight]]; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c146678 RtreeDValue fRight = aDistance[aRight[iRight]]; local
[all...]

Completed in 8408 milliseconds