Home
last modified time | relevance | path

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

123

/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/basegfx/inc/basegfx/point/
H A Db2ipoint.hxx91 mnX *= rPnt.mnX; in operator *=()
100 mnX *= t; in operator *=()
H A Db3ipoint.hxx95 mnX *= rPnt.mnX; in operator *=()
105 mnX *= t; in operator *=()
116 mnX = rVec.getX(); in operator =()
/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/inc/basegfx/vector/
H A Db2ivector.hxx92 mnX *= rPnt.mnX; in operator *=()
101 mnX *= t; in operator *=()
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()
/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/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/filter/source/flash/
H A Dswfexporter.cxx634 pShapeInfo->mnX = aBoundRect.X; in exportShape()
693 …mpWriter->placeShape( pShapeInfo->mnID, _uInt16(nPlaceDepth++), pShapeInfo->mnX, pShapeInfo->mnY ); in exportShape()
H A Dswfexporter.hxx67 sal_Int32 mnX; member in swf::ShapeInfo
93 mnID(0), mnX(0), mnY(0), in ShapeInfo()
/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()
H A Dbitmap.hxx49 sal_uInt32 mnX, mnY; member in CGMBitmapDescriptor
/trunk/main/sc/source/filter/excel/
H A Dxechart.cxx131 return rStrm << rRect.mnX << rRect.mnY << rRect.mnWidth << rRect.mnHeight; in operator <<()
367 aRect.mnX = CalcChartXFromHmm( rRect.X ); in CalcChartRectFromHmm()
1254 rFrameRect.mnX = maData.maRect.mnX - nDefPosX; in ConvertTitle()
2317 rFramePos.maRect.mnX = maData.maRect.mnX = CalcChartXFromHmm( aLegendPos.X ); in Convert()
3086 maData.maRect.mnX = 262; in XclExpChAxesSet()
3308 maRect.mnX = maRect.mnY = 0; in XclExpChChart()
H A Dxichart.cxx147 return rStrm >> rRect.mnX >> rRect.mnY >> rRect.mnWidth >> rRect.mnHeight; in operator >>()
332 CalcHmmFromChartX( rRect.mnX ), in CalcHmmFromChartRect()
450 maData.maRect.mnX = rStrm.ReadInt16(); rStrm.Ignore( 2 ); in ReadChFramePos()
1187 ((rPosData.maRect.mnX != 0) || (rPosData.maRect.mnY != 0)) && in ConvertTitlePosition()
1203 CalcHmmFromChartX( maData.maRect.mnX ), in ConvertTitlePosition()
2523 CalcRelativeFromChartX( pFramePos->maRect.mnX ), in CreateLegend()
H A Dxlchart.cxx73 mnX( 0 ), in XclChRectangle()
/trunk/main/sc/source/filter/inc/
H A Dxlchart.hxx757 sal_Int32 mnX; /// X position of the object in 1/4000 of chart width. member
/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()
H A Dsalgdiutils.cxx264 CGpoints[i].x = (float)(pPtAry[i].mnX); in makeCGptArray()
/trunk/main/vcl/aqua/source/window/
H A Dsalframe.cxx589 aStateRect.origin.x = float(pState->mnX); in SetWindowState()
676 pState->mnX = long(aStateRect.origin.x); in GetWindowState()

Completed in 165 milliseconds

123