Home
last modified time | relevance | path

Searched refs:CLST_Rect (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/fpdfsdk/fxedit/
Dfxet_list.h19 class CLST_Rect : public CFX_FloatRect {
21 CLST_Rect() { left = top = right = bottom = 0.0f; } in CLST_Rect() function
23 CLST_Rect(FX_FLOAT other_left, in CLST_Rect() function
33 explicit CLST_Rect(const CFX_FloatRect& rect) { in CLST_Rect() function
40 ~CLST_Rect() {} in ~CLST_Rect()
44 const CLST_Rect operator=(const CFX_FloatRect& rect) {
53 bool operator==(const CLST_Rect& rect) const {
54 return FXSYS_memcmp(this, &rect, sizeof(CLST_Rect)) == 0;
57 bool operator!=(const CLST_Rect& rect) const { return !(*this == rect); }
71 const CLST_Rect operator+=(const CFX_PointF& point) {
[all …]
Dfxet_list.cpp36 void CFX_ListItem::SetRect(const CLST_Rect& rect) { in SetRect()
40 CLST_Rect CFX_ListItem::GetRect() const { in GetRect()
380 return InnerToOuter(CLST_Rect(rcItem)); in GetItemRectInternal()
590 pListItem->SetRect(CLST_Rect(0.0f, fPosY, 0.0f, fPosY + fListItemHeight)); in ReArrange()
595 SetContentRect(CLST_Rect(0.0f, 0.0f, 0.0f, fPosY)); in ReArrange()
637 CLST_Rect rcListItem = pListItem->GetRect(); in GetItemIndex()