Home
last modified time | relevance | path

Searched refs:mnX (Results 1 – 25 of 56) sorted by relevance

123

/trunk/main/basegfx/inc/basegfx/tuple/
H A Db2i64tuple.hxx54 : mnX(0), in B2I64Tuple()
69 : mnX( fX ), in B2I64Tuple()
79 : mnX( rTup.mnX ), in B2I64Tuple()
101 mnX = fX; in setX()
133 mnX += rTup.mnX; in operator +=()
140 mnX -= rTup.mnX; in operator -=()
147 mnX /= rTup.mnX; in operator /=()
154 mnX *= rTup.mnX; in operator *=()
161 mnX *= t; in operator *=()
168 mnX /= t; in operator /=()
[all …]
H A Db2ituple.hxx55 : mnX(0), in B2ITuple()
70 : mnX( fX ), in B2ITuple()
80 : mnX( rTup.mnX ), in B2ITuple()
102 mnX = fX; in setX()
134 mnX += rTup.mnX; in operator +=()
141 mnX -= rTup.mnX; in operator -=()
148 mnX /= rTup.mnX; in operator /=()
155 mnX *= rTup.mnX; in operator *=()
162 mnX *= t; in operator *=()
169 mnX /= t; in operator /=()
[all …]
H A Db3i64tuple.hxx55 : mnX(0), in B3I64Tuple()
75 : mnX(nX), in B3I64Tuple()
86 : mnX( rTup.mnX ), in B3I64Tuple()
115 mnX = nX; in setX()
153 mnX += rTup.mnX; in operator +=()
161 mnX -= rTup.mnX; in operator -=()
169 mnX /= rTup.mnX; in operator /=()
177 mnX *= rTup.mnX; in operator *=()
185 mnX *= t; in operator *=()
193 mnX /= t; in operator /=()
[all …]
H A Db3ituple.hxx54 : mnX(0), in B3ITuple()
74 : mnX(nX), in B3ITuple()
85 : mnX( rTup.mnX ), in B3ITuple()
114 mnX = nX; in setX()
152 mnX += rTup.mnX; in operator +=()
160 mnX -= rTup.mnX; in operator -=()
168 mnX /= rTup.mnX; in operator /=()
176 mnX *= rTup.mnX; in operator *=()
184 mnX *= t; in operator *=()
192 mnX /= t; in operator /=()
[all …]
/trunk/main/basegfx/source/vector/
H A Db2ivector.cxx34 mnX = rVec.getX(); in operator =()
42 return hypot( mnX, mnY ); in getLength()
47 return((mnX * rVec.mnX) + (mnY * rVec.mnY)); in scalar()
52 return(mnX * rVec.getY() - mnY * rVec.getX()); in cross()
57 return atan2(double( mnX * rVec.getY() - mnY * rVec.getX()), in angle()
58 double( mnX * rVec.getX() + mnY * rVec.getY())); in angle()
68 mnX = fround( rMat.get(0,0)*mnX + in operator *=()
70 mnY = fround( rMat.get(1,0)*mnX + in operator *=()
89 mnX = fround( mnX*fLen ); in setLength()
H A Db3ivector.cxx33 mnX = fround( rMat.get(0,0)*mnX + rMat.get(0,1)*mnY + rMat.get(0,2)*mnZ ); in operator *=()
34 mnY = fround( rMat.get(1,0)*mnX + rMat.get(1,1)*mnY + rMat.get(1,2)*mnZ ); in operator *=()
35 mnZ = fround( rMat.get(2,0)*mnX + rMat.get(2,1)*mnY + rMat.get(2,2)*mnZ ); in operator *=()
/trunk/main/basegfx/inc/basegfx/vector/
H A Db3ivector.hxx95 mnX *= rPnt.mnX; in operator *=()
105 mnX *= t; in operator *=()
116 mnX = rVec.getX(); in operator =()
140 double fLen((mnX * mnX) + (mnY * mnY)); in getXYLength()
152 double fLen((mnX * mnZ) + (mnY * mnZ)); in getXZLength()
188 mnX = fround(mnX*fLen); in setLength()
209 return ((mnX * rVec.mnX) + (mnY * rVec.mnY) + (mnZ * rVec.mnZ)); in scalar()
H A Db2ivector.hxx92 mnX *= rPnt.mnX; in operator *=()
101 mnX *= t; in operator *=()
/trunk/main/vcl/aqua/source/gdi/
H A Dsalbmp.cxx396 sal_uInt32 mnX; member in ImplPixelFormat4
406 mnX += nPixel; in SkipPixel()
413 mnX = 0; in StartLine()
419 mnX++; in ReadPixel()
428 mnX++; in WritePixel()
437 sal_uInt32 mnX; member in ImplPixelFormat1
451 mnX = 0; in StartLine()
456 mnX++; in ReadPixel()
463 pData[ mnX >> 3 ] |= 1 << ( 7 - ( mnX & 7 ) ); in WritePixel()
465 pData[ mnX >> 3 ] &= ~( 1 << ( 7 - ( mnX & 7 ) ) ); in WritePixel()
[all …]
H A Dsalgdi.cxx739 long nX1 = pPtAry->mnX; in getBoundRect()
745 if( pPtAry[n].mnX < nX1 ) in getBoundRect()
746 nX1 = pPtAry[n].mnX; in getBoundRect()
747 else if( pPtAry[n].mnX > nX2 ) in getBoundRect()
748 nX2 = pPtAry[n].mnX; in getBoundRect()
763 o_fX = static_cast<float>(i_pIn->mnX ) + 0.5; in alignLinePoint()
831 CGContextMoveToPoint( mrContext, pPtAry->mnX, pPtAry->mnY ); in drawPolygon()
834 CGContextAddLineToPoint( mrContext, pPtAry->mnX, pPtAry->mnY ); in drawPolygon()
915 CGContextMoveToPoint( mrContext, pPtAry->mnX, pPtAry->mnY ); in drawPolyPolygon()
918 CGContextAddLineToPoint( mrContext, pPtAry->mnX, pPtAry->mnY ); in drawPolyPolygon()
/trunk/main/basebmp/inc/basebmp/
H A Dpolypolygonrenderer.hxx62 sal_Int64 mnX; member
70 mnX(0), in Vertex()
79 mnX( toFractional( basegfx::fround(rPt1.getX()) )), in Vertex()
106 return rLHS.mnX < rRHS.mnX; in operator ()()
112 return pLHS->mnX < pRHS->mnX; in operator ()()
255 rV1.mnX < nClipX2_frac && in renderClippedPolyPolygon()
256 rV2.mnX > nClipX1_frac ) in renderClippedPolyPolygon()
262 detail::toRoundedInteger(rV1.mnX) ))); in renderClippedPolyPolygon()
266 detail::toRoundedInteger(rV2.mnX) ))); in renderClippedPolyPolygon()
280 rV1.mnX += rV1.mnXDelta; in renderClippedPolyPolygon()
[all …]
/trunk/main/filter/source/graphicfilter/icgm/
H A Dbitmap.cxx54 …if ( ( rDesc.mpBitmap = new Bitmap( Size( rDesc.mnX, rDesc.mnY ), (sal_uInt16)rDesc.mnDstBitsPerPi… in ImplGetBitmap()
61 nxCount = rDesc.mnX + 1; // +1 because we are using prefix decreasing in ImplGetBitmap()
250 rDesc.mnX = mpCGM->ImplGetUI( nPrecision ); in ImplGetDimensions()
275 rDesc.mnScanSize = rDesc.mnX; in ImplGetDimensions()
296 if ( ( rDesc.mnX || rDesc.mnY ) == 0 ) in ImplGetDimensions()
300 rDesc.mnScanSize = ( ( rDesc.mnX * rDesc.mnDstBitsPerPixel + 7 ) >> 3 ); in ImplGetDimensions()
343 rDest.mpBitmap->CopyPixel( Rectangle( Point( 0, rDest.mnY ), Size( rSource.mnX, rSource.mnY ) ), in ImplInsert()
344 Rectangle( Point( 0, 0 ), Size( rSource.mnX, rSource.mnY ) ), rSource.mpBitmap ); in ImplInsert()
358 rDest.mpBitmap->CopyPixel( Rectangle( Point( 0, rDest.mnY ), Size( rSource.mnX, rSource.mnY ) ), in ImplInsert()
359 Rectangle( Point( 0, 0 ), Size( rSource.mnX, rSource.mnY ) ), rSource.mpBitmap ); in ImplInsert()
/trunk/main/vcl/source/gdi/
H A Dregband.cxx111 pPointCopy->mnX = pPoint->mnX; in ImplRegionBand()
186 Union( pRegionBandPoint->mnX, pRegionBandPoint->mpNextBandPoint->mnX ); in ProcessPoints()
217 mpFirstBandPoint->mnX = nX; in InsertPoint()
240 pRegionBandPoint->mnX = nX; in InsertPoint()
282 if ( nX <= pRegionBandPoint->mnX ) in InsertPoint()
285 pNewRegionBandPoint->mnX = nX; in InsertPoint()
307 pNewRegionBandPoint->mnX = nX; in InsertPoint()
H A Dsalgdilayout.cxx209 pPtAry2[j].mnX = pOutDevRef->GetOutOffXPixel() + (pPtAry[i].mnX - devX); in mirror()
219 pPtAry2[j].mnX = devX + (pPtAry[i].mnX - pOutDevRef->GetOutOffXPixel()); in mirror()
233 …pPtAry2[j].mnX = pPtAry[i].mnX - pOutDevRef->GetOutputWidthPixel() + devX - pOutDevRef->GetOutOffX… in mirror()
243 …pPtAry2[j].mnX = pOutDevRef->GetOutputWidthPixel() - (pPtAry[i].mnX - devX) + pOutDevRef->GetOutOf… in mirror()
253 pPtAry2[j].mnX = w-1-pPtAry[i].mnX; in mirror()
/trunk/main/basegfx/source/point/
H A Db2ipoint.cxx34 mnX = rPoint.getX(); in operator =()
42 rMat.get(0, 0) * mnX + in operator *=()
46 rMat.get(1, 0) * mnX + in operator *=()
54 rMat.get(2, 0) * mnX + in operator *=()
65 mnX = fround(fTempX); in operator *=()
H A Db3ipoint.cxx35 rMat.get(0, 0) * mnX + in operator *=()
40 rMat.get(1, 0) * mnX + in operator *=()
45 rMat.get(2, 0) * mnX + in operator *=()
54 rMat.get(3, 0) * mnX + in operator *=()
67 mnX = fround(fTempX); in operator *=()
/trunk/main/vcl/inc/
H A Dsalwtype.hxx114 long mnX; // X-Position (Pixel, TopLeft-Output) member
172 long mnX; // X-Position (Pixel, TopLeft-Output) member
182 …: mnTime( 0 ), mnX( 0 ), mnY( 0 ), mnDelta( 0 ), mnNotchDelta( 0 ), mnScrollLines( 0 ), mnCode( 0 … in SalWheelMouseEvent()
189 long mnX; // X-Position (Pixel, TopLeft-Output) member
212 long mnX; // Cursor-X-Position to upper left corner of frame member
302 long mnX; member
/trunk/main/vcl/unx/headless/
H A Dsvpgdi.cxx349 aPoly.append( B2DPoint( pPtAry->mnX, pPtAry->mnY ), nPoints ); in drawPolyLine()
351 aPoly.setB2DPoint( i, B2DPoint( pPtAry[i].mnX, pPtAry[i].mnY ) ); in drawPolyLine()
363 aPoly.append( B2DPoint( pPtAry->mnX, pPtAry->mnY ), nPoints ); in drawPolygon()
365 aPoly.setB2DPoint( i, B2DPoint( pPtAry[i].mnX, pPtAry[i].mnY ) ); in drawPolygon()
394 aPoly.append( B2DPoint( pPoints->mnX, pPoints->mnY ), nPoints ); in drawPolyPolygon()
396 aPoly.setB2DPoint( i, B2DPoint( pPoints[i].mnX, pPoints[i].mnY ) ); in drawPolyPolygon()
581 aPoly.append( B2DPoint( pPtAry->mnX, pPtAry->mnY ), nPoints ); in invert()
583 aPoly.setB2DPoint( i, B2DPoint( pPtAry[i].mnX, pPtAry[i].mnY ) ); in invert()
/trunk/main/basegfx/inc/basegfx/point/
H A Db3ipoint.hxx95 mnX *= rPnt.mnX; in operator *=()
105 mnX *= t; in operator *=()
116 mnX = rVec.getX(); in operator =()
H A Db2ipoint.hxx91 mnX *= rPnt.mnX; in operator *=()
100 mnX *= t; in operator *=()
/trunk/main/vcl/source/window/
H A Dsyswin.cxx729 aState.mnX = rData.GetX(); in SetWindowStateData()
754 ImplMoveToScreen( aState.mnX, aState.mnY, aState.mnWidth, aState.mnHeight, pWindow ); in SetWindowStateData()
772 if( abs(g.nX-aState.mnX) < 2 && abs(g.nY-aState.mnY) < 5 ) in SetWindowStateData()
775 …if( (unsigned long) (aState.mnX + displacement + aState.mnWidth + g.nRightDecoration) > (unsigned … in SetWindowStateData()
779 … aState.mnX = g.nLeftDecoration ? g.nLeftDecoration : 10; // should result in (0,0) in SetWindowStateData()
782 …(unsigned long) (aState.mnX + displacement + aState.mnWidth + g.nRightDecoration) > (unsigned long… in SetWindowStateData()
791 aState.mnX += displacement; in SetWindowStateData()
886 rData.SetX( aState.mnX ); in GetWindowStateData()
/trunk/main/vcl/inc/vcl/
H A Dsyswin.hxx88 int mnX; member in WindowStateData
101 mnValidMask = mnX = mnY = mnWidth = mnHeight = mnState = 0; in WindowStateData()
108 void SetX( int nX ) { mnX = nX; } in SetX()
109 int GetX() const { return mnX; } in GetX()
/trunk/main/vcl/aqua/source/window/
H A Dsalobj.cxx42 mnX( 0 ), in AquaSalObject()
160 mnX = nX; in SetPosSize()
178 NSRect aClipViewRect = NSMakeRect( mnX, mnY, mnWidth, mnHeight); in setClippedPosSize()
H A Dsalframeview.mm598 aEvent.mnX = static_cast<long>(aPt.x) - pDispatchFrame->maGeometry.nX;
605 aEvent.mnX = pDispatchFrame->maGeometry.nWidth-1-aEvent.mnX;
759 aEvent.mnX = static_cast<long>(aPt.x) - mpFrame->maGeometry.nX;
767 aEvent.mnX = mpFrame->maGeometry.nWidth-1-aEvent.mnX;
816 aEvent.mnX = static_cast<long>(aPt.x) - mpFrame->maGeometry.nX;
823 aEvent.mnX = mpFrame->maGeometry.nWidth-1-aEvent.mnX;
876 aEvent.mnX = static_cast<long>(aPt.x) - mpFrame->maGeometry.nX;
883 aEvent.mnX = mpFrame->maGeometry.nWidth-1-aEvent.mnX;
1683 rect.origin.x = aPosEvent.mnX + mpFrame->maGeometry.nX;
/trunk/main/vcl/unx/gtk/window/
H A Dgtkframe.cxx1624 moveWindow( pState->mnX, pState->mnY ); in SetWindowState()
1634 m_aRestorePosSize = Rectangle( Point( pState->mnX, pState->mnY ), in SetWindowState()
1695 pState->mnX = m_aRestorePosSize.Left(); in GetWindowState()
1711 pState->mnX = maGeometry.nX; in GetWindowState()
2641 aEvent.mnX = (long)pEvent->x_root - pThis->maGeometry.nX; in signalButton()
2674 aEvent.mnX = pThis->maGeometry.nWidth-1-aEvent.mnX; in signalButton()
2726 aEvent.mnX = (sal_uLong)pSEvent->x; in signalScroll()
2738 aEvent.mnX = pThis->maGeometry.nWidth-1-aEvent.mnX; in signalScroll()
2751 aEvent.mnX = (long)pEvent->x_root - pThis->maGeometry.nX; in signalMotion()
2761 aEvent.mnX = pThis->maGeometry.nWidth-1-aEvent.mnX; in signalMotion()
[all …]

Completed in 120 milliseconds

123