Lines Matching refs:aSiz
1509 void SdrPage::SetSize(const Size& aSiz) in SetSize() argument
1513 if(aSiz.Width() != nWdt) in SetSize()
1515 nWdt = aSiz.Width(); in SetSize()
1519 if(aSiz.Height() != nHgt) in SetSize()
1521 nHgt = aSiz.Height(); in SetSize()
1544 Size aSiz(GetSize()); in SetOrientation() local
1545 if (aSiz.Width()!=aSiz.Height()) { in SetOrientation()
1546 if ((eOri==ORIENTATION_PORTRAIT) == (aSiz.Width()>aSiz.Height())) { in SetOrientation()
1547 SetSize(Size(aSiz.Height(),aSiz.Width())); in SetOrientation()
1556 Size aSiz(GetSize()); in GetOrientation() local
1557 if (aSiz.Width()>aSiz.Height()) eRet=ORIENTATION_LANDSCAPE; in GetOrientation()