Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/include/fxedit/
Dfxet_list.h36 class CLST_Rect : public CPDF_Rect {
38 CLST_Rect() { left = top = right = bottom = 0.0f; } in CLST_Rect() function
40 CLST_Rect(FX_FLOAT other_left, in CLST_Rect() function
50 CLST_Rect(const CPDF_Rect& rect) { in CLST_Rect() function
57 ~CLST_Rect() {} in ~CLST_Rect()
61 const CLST_Rect operator=(const CPDF_Rect& rect) {
70 FX_BOOL operator==(const CLST_Rect& rect) const {
71 return FXSYS_memcmp(this, &rect, sizeof(CLST_Rect)) == 0;
74 FX_BOOL operator!=(const CLST_Rect& rect) const {
75 return FXSYS_memcmp(this, &rect, sizeof(CLST_Rect)) != 0;
[all …]
/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_list.cpp40 void CFX_ListItem::SetRect(const CLST_Rect& rect) { in SetRect()
44 CLST_Rect CFX_ListItem::GetRect() const { in GetRect()
138 pListItem->SetRect(CLST_Rect(0.0f, fPosY, 0.0f, fPosY + fListItemHeight)); in ReArrange()
143 SetContentRect(CLST_Rect(0.0f, 0.0f, 0.0f, fPosY)); in ReArrange()
178 CLST_Rect rcListItem = pListItem->GetRect(); in GetItemIndex()