OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CLST_Rect
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/fpdfsdk/include/fxedit/
fxet_list.h
36
class
CLST_Rect
: public CPDF_Rect {
38
CLST_Rect
() { left = top = right = bottom = 0.0f; }
40
CLST_Rect
(FX_FLOAT other_left,
50
CLST_Rect
(const CPDF_Rect& rect) {
57
~
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/
fxet_list.cpp
40
void CFX_ListItem::SetRect(const
CLST_Rect
& rect) {
44
CLST_Rect
CFX_ListItem::GetRect() const {
138
pListItem->SetRect(
CLST_Rect
(0.0f, fPosY, 0.0f, fPosY + fListItemHeight));
143
SetContentRect(
CLST_Rect
(0.0f, 0.0f, 0.0f, fPosY));
178
CLST_Rect
rcListItem = pListItem->GetRect();
Completed in 1001 milliseconds