Lines Matching refs:origin

154     maGeometry.nX = static_cast<int>(aVisibleRect.origin.x + aVisibleRect.size.width / 10);  in initWindowAndView()
155 maGeometry.nY = static_cast<int>(aVisibleRect.origin.y + aVisibleRect.size.height / 10); in initWindowAndView()
170 maGeometry.nX = static_cast<int>(aVisibleRect.origin.x); in initWindowAndView()
171 maGeometry.nY = static_cast<int>(aVisibleRect.origin.y); in initWindowAndView()
227 io_rRect.origin.y = maScreenRect.size.height - (io_rRect.origin.y+io_rRect.size.height); in CocoaToVCL()
229 io_rRect.origin.y = maGeometry.nHeight - (io_rRect.origin.y+io_rRect.size.height); in CocoaToVCL()
235 io_rRect.origin.y = maScreenRect.size.height - (io_rRect.origin.y+io_rRect.size.height); in VCLToCocoa()
237 io_rRect.origin.y = maGeometry.nHeight - (io_rRect.origin.y+io_rRect.size.height); in VCLToCocoa()
589 aStateRect.origin.x = float(pState->mnX); in SetWindowState()
591 aStateRect.origin.y = float(pState->mnY); in SetWindowState()
676 pState->mnX = long(aStateRect.origin.x); in GetWindowState()
677 pState->mnY = long(aStateRect.origin.y); in GetWindowState()
715 if( aCurScreen.origin.x != aNewScreen.origin.x || in SetScreenNumber()
716 aCurScreen.origin.y != aNewScreen.origin.y ) in SetScreenNumber()
719 aFrameRect.origin.x += aNewScreen.origin.x - aCurScreen.origin.x; in SetScreenNumber()
720 aFrameRect.origin.y += aNewScreen.origin.y - aCurScreen.origin.y; in SetScreenNumber()
764 if( aScreenRect.origin.x < aNewContentRect.origin.x ) in ShowFullScreen()
766 … aNewContentRect.size.width += aNewContentRect.origin.x - aScreenRect.origin.x; in ShowFullScreen()
767 aNewContentRect.origin.x = aScreenRect.origin.x; in ShowFullScreen()
769 if( aScreenRect.origin.y < aNewContentRect.origin.y ) in ShowFullScreen()
771 … aNewContentRect.size.height += aNewContentRect.origin.y - aScreenRect.origin.y; in ShowFullScreen()
772 aNewContentRect.origin.y = aScreenRect.origin.y; in ShowFullScreen()
774 …if( aScreenRect.origin.x + aScreenRect.size.width > aNewContentRect.origin.x + aNewContentRect.siz… in ShowFullScreen()
775 …aNewContentRect.size.width = aScreenRect.origin.x + aScreenRect.size.width - aNewContentRect.origi… in ShowFullScreen()
776 …if( aScreenRect.origin.y + aScreenRect.size.height > aNewContentRect.origin.y + aNewContentRect.si… in ShowFullScreen()
777 …aNewContentRect.size.height = aScreenRect.origin.y + aScreenRect.size.height - aNewContentRect.ori… in ShowFullScreen()
1413 aContentRect.origin.x = nX + aParentContentRect.origin.x; in SetPosSize()
1415 aContentRect.origin.y = nY + aParentContentRect.origin.y; in SetPosSize()
1458 rRect.nLeft = static_cast<long>(aRect.origin.x); in GetWorkArea()
1459 rRect.nTop = static_cast<long>(aRect.origin.y); in GetWorkArea()
1460 rRect.nRight = static_cast<long>(aRect.origin.x + aRect.size.width - 1); in GetWorkArea()
1461 rRect.nBottom = static_cast<long>(aRect.origin.y + aRect.size.height - 1); in GetWorkArea()
1658 maGeometry.nX = static_cast<int>(aContentRect.origin.x); in UpdateFrameGeometry()
1659 maGeometry.nY = static_cast<int>(aContentRect.origin.y); in UpdateFrameGeometry()
1661 …aGeometry.nLeftDecoration = static_cast<unsigned int>(aContentRect.origin.x - aFrameRect.origin.x); in UpdateFrameGeometry()
1662 …maGeometry.nRightDecoration = static_cast<unsigned int>((aFrameRect.origin.x + aFrameRect.size.wid… in UpdateFrameGeometry()
1663 (aContentRect.origin.x + aContentRect.size.width)); in UpdateFrameGeometry()
1665 …maGeometry.nTopDecoration = static_cast<unsigned int>(aContentRect.origin.y - aFrameRect.origin.y); in UpdateFrameGeometry()
1666 …maGeometry.nBottomDecoration = static_cast<unsigned int>((aFrameRect.origin.y + aFrameRect.size.he… in UpdateFrameGeometry()
1667 (aContentRect.origin.y + aContentRect.size.height)); in UpdateFrameGeometry()
1760 …maClippingRects.push_back( CGRectMake(aRect.origin.x, aRect.origin.y, aRect.size.width, aRect.size… in UnionClipRegion()