Lines Matching refs:aRect

1174 				uno::Sequence< sal_Int32 > aRect(4);
1176 aRect[0] = pRect->left;
1177 aRect[1] = pRect->top;
1178 aRect[2] = pRect->right;
1179 aRect[3] = pRect->bottom;
1181 aArgs[nInd].Value <<= aRect;
1201 uno::Sequence< sal_Int32 > aRect;
1202 if ( ( aArgs[nInd].Value >>= aRect ) && aRect.getLength() == 4 )
1204 pRect->left = aRect[0];
1205 pRect->top = aRect[1];
1206 pRect->right = aRect[2];
1207 pRect->bottom = aRect[3];
1228 uno::Sequence< sal_Int32 > aRect; in GetDocumentBorder() local
1229 if ( ( aArgs[nInd].Value >>= aRect ) && aRect.getLength() == 4 ) in GetDocumentBorder()
1231 pRect->left = aRect[0]; in GetDocumentBorder()
1232 pRect->top = aRect[1]; in GetDocumentBorder()
1233 pRect->right = aRect[2]; in GetDocumentBorder()
1234 pRect->bottom = aRect[3]; in GetDocumentBorder()
1315 HRESULT DocumentHolder::SetContRects(LPCRECT aRect) in SetContRects() argument
1331 aRect->right - aRect->left, in SetContRects()
1332 aRect->bottom - aRect->top, in SetContRects()
1342 HRESULT DocumentHolder::SetObjectRects(LPCRECT aRect, LPCRECT aClip) in SetObjectRects() argument
1344 ((LPRECT)aRect)->left -= m_aBorder.left; in SetObjectRects()
1345 ((LPRECT)aRect)->right += m_aBorder.right; in SetObjectRects()
1346 ((LPRECT)aRect)->top -= m_aBorder.top; in SetObjectRects()
1347 ((LPRECT)aRect)->bottom += m_aBorder.bottom; in SetObjectRects()
1354 m_pCHatchWin->RectsSet((LPRECT)aRect, (LPRECT)aClip); in SetObjectRects()
1360 aRect->right - aRect->left, in SetObjectRects()
1361 aRect->bottom - aRect->top, in SetObjectRects()
1469 RECT aRect; in setDockingAreaSpace() local
1470 GetClientRect(m_hWndxWinCont,&aRect); in setDockingAreaSpace()
1473 aRect.right,BorderSpace.Y); in setDockingAreaSpace()
1474 HRGN hrgn2 = CreateRectRgn(aRect.right-BorderSpace.Width,0,aRect.right,aRect.bottom); in setDockingAreaSpace()
1477 hrgn2 = CreateRectRgn(0,aRect.bottom-BorderSpace.Height,aRect.right,aRect.bottom); in setDockingAreaSpace()
1480 hrgn2 = CreateRectRgn(0,0,BorderSpace.X,aRect.bottom); in setDockingAreaSpace()