| /aoo41x/main/basegfx/inc/basegfx/tuple/ | 
| H A D | b2i64tuple.hxx | 54 			mnY(0)   in B2I64Tuple()69 			mnY( fY )   in B2I64Tuple()
 79 			mnY( rTup.mnY )   in B2I64Tuple()
 106 			mnY = fY;  in setY()
 133 			mnY += rTup.mnY;   in operator +=()
 140 			mnY -= rTup.mnY;   in operator -=()
 147 			mnY /= rTup.mnY;   in operator /=()
 154 			mnY *= rTup.mnY;   in operator *=()
 161 			mnY *= t;   in operator *=()
 168 			mnY /= t;   in operator /=()
 [all …]
 
 | 
| H A D | b2ituple.hxx | 56 			mnY(0)   in B2ITuple()71 			mnY( fY )   in B2ITuple()
 81 			mnY( rTup.mnY )   in B2ITuple()
 108 			mnY = fY;  in setY()
 135 			mnY += rTup.mnY;   in operator +=()
 142 			mnY -= rTup.mnY;   in operator -=()
 149 			mnY /= rTup.mnY;   in operator /=()
 156 			mnY *= rTup.mnY;   in operator *=()
 163 			mnY *= t;   in operator *=()
 170 			mnY /= t;   in operator /=()
 [all …]
 
 | 
| H A D | b3i64tuple.hxx | 55 			mnY(0),  in B3I64Tuple()75 			mnY(nY),  in B3I64Tuple()
 86 			mnY( rTup.mnY ),  in B3I64Tuple()
 120 			mnY = nY;  in setY()
 153 			mnY += rTup.mnY;   in operator +=()
 161 			mnY -= rTup.mnY;   in operator -=()
 169 			mnY /= rTup.mnY;   in operator /=()
 177 			mnY *= rTup.mnY;   in operator *=()
 185 			mnY *= t;   in operator *=()
 193 			mnY /= t;   in operator /=()
 [all …]
 
 | 
| H A D | b3ituple.hxx | 55 			mnY(0),  in B3ITuple()75 			mnY(nY),  in B3ITuple()
 86 			mnY( rTup.mnY ),  in B3ITuple()
 120 			mnY = nY;  in setY()
 153 			mnY += rTup.mnY;   in operator +=()
 161 			mnY -= rTup.mnY;   in operator -=()
 169 			mnY /= rTup.mnY;   in operator /=()
 177 			mnY *= rTup.mnY;   in operator *=()
 185 			mnY *= t;   in operator *=()
 193 			mnY /= t;   in operator /=()
 [all …]
 
 | 
| /aoo41x/main/filter/source/graphicfilter/icgm/ | 
| H A D | bitmap.cxx | 62 				nyCount = rDesc.mnY + 1;  in ImplGetBitmap()251 	rDesc.mnY = mpCGM->ImplGetUI( nPrecision );  in ImplGetDimensions()
 296 	if ( ( rDesc.mnX || rDesc.mnY ) == 0 )  in ImplGetDimensions()
 329 		mpCGM->mnParaSize += rDesc.mnScanSize * rDesc.mnY;  in ImplGetDimensions()
 342 		rDest.mpBitmap->Expand( 0, rSource.mnY );  in ImplInsert()
 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()
 357 		rDest.mpBitmap->Expand( 0, rSource.mnY );  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()
 [all …]
 
 | 
| /aoo41x/main/basegfx/inc/basegfx/vector/ | 
| H A D | b3ivector.hxx | 95 			mnY *= rPnt.mnY;   in operator *=()105 			mnY *= t;   in operator *=()
 116 			mnY = rVec.getY();   in operator =()
 139 			double fLen((mnX * mnX) + (mnY * mnY));  in getXYLength()
 151 			double fLen((mnX * mnZ) + (mnY * mnZ));  in getXZLength()
 163 			double fLen((mnY * mnY) + (mnZ * mnZ));  in getYZLength()
 188 				mnY = fround(mnY*fLen);  in setLength()
 208 			return ((mnX * rVec.mnX) + (mnY * rVec.mnY) + (mnZ * rVec.mnZ));  in scalar()
 
 | 
| H A D | b2ivector.hxx | 92 			mnY *= rPnt.mnY;   in operator *=()101 			mnY *= t;   in operator *=()
 
 | 
| /aoo41x/main/basegfx/source/vector/ | 
| H A D | b2ivector.cxx | 35 		mnY = rVec.getY();  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()
 69                       rMat.get(0,1)*mnY );  in operator *=()
 70 		mnY = fround( rMat.get(1,0)*mnX +  in operator *=()
 71                       rMat.get(1,1)*mnY );  in operator *=()
 90 			mnY = fround( mnY*fLen );  in setLength()
 
 | 
| H A D | b3ivector.cxx | 33 		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 *=()
 
 | 
| /aoo41x/main/basegfx/inc/basegfx/raster/ | 
| H A D | rasterconvert3d.hxx | 323 	    sal_Int32									mnY;  member in basegfx::RasterConversionLineEntry3D335 		    mnY(nY),  in RasterConversionLineEntry3D()
 350 		    if(mnY == rComp.mnY)  in operator <()
 355 		    return mnY < rComp.mnY;  in operator <()
 376 		    mnY += nStep;  in incrementRasterConversionLineEntry3D()
 401 	    sal_Int32 getY() const { return mnY; }  in getY()
 
 | 
| /aoo41x/main/basegfx/source/point/ | 
| H A D | b2ipoint.cxx | 35 		mnY = rPoint.getY();   in operator =()43 			rMat.get(0, 1) * mnY +   in operator *=()
 47 			rMat.get(1, 1) * mnY +   in operator *=()
 55 				rMat.get(2, 1) * mnY +   in operator *=()
 66 		mnY = fround(fTempY);  in operator *=()
 
 | 
| H A D | b3ipoint.cxx | 36 			rMat.get(0, 1) * mnY +  in operator *=()41 			rMat.get(1, 1) * mnY +  in operator *=()
 46 			rMat.get(2, 1) * mnY +  in operator *=()
 55 				rMat.get(3, 1) * mnY +   in operator *=()
 68 		mnY = fround(fTempY);  in operator *=()
 
 | 
| /aoo41x/main/vcl/inc/ | 
| H A D | salwtype.hxx | 115     long            mnY;            // Y-Position (Pixel, TopLeft-Output)  member173     long            mnY;            // Y-Position (Pixel, TopLeft-Output)  member
 182 …: mnTime( 0 ), mnX( 0 ), mnY( 0 ), mnDelta( 0 ), mnNotchDelta( 0 ), mnScrollLines( 0 ), mnCode( 0 …  in SalWheelMouseEvent()
 190     long            mnY;            // Y-Position (Pixel, TopLeft-Output)  member
 213     long            mnY;            // Cursor-Y-Position to upper left corner of frame  member
 303     long            mnY;  member
 
 | 
| /aoo41x/main/vcl/unx/headless/ | 
| H A D | svpgdi.cxx | 349         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()
 
 | 
| /aoo41x/main/basegfx/inc/basegfx/point/ | 
| H A D | b3ipoint.hxx | 95 			mnY *= rPnt.mnY;   in operator *=()105 			mnY *= t;   in operator *=()
 116 			mnY = rVec.getY();   in operator =()
 
 | 
| H A D | b2ipoint.hxx | 91 			mnY *= rPnt.mnY;   in operator *=()100 			mnY *= t;   in operator *=()
 
 | 
| /aoo41x/main/vcl/source/gdi/ | 
| H A D | salgdilayout.cxx | 210                         pPtAry2[j].mnY = pPtAry[i].mnY;  in mirror()220                         pPtAry2[j].mnY = pPtAry[i].mnY;  in mirror()
 234                         pPtAry2[j].mnY = pPtAry[i].mnY;  in mirror()
 244                         pPtAry2[j].mnY = pPtAry[i].mnY;  in mirror()
 254 			    pPtAry2[j].mnY = pPtAry[i].mnY;  in mirror()
 
 | 
| /aoo41x/main/vcl/inc/vcl/ | 
| H A D | syswin.hxx | 89     int                 mnY;  member in WindowStateData101                     mnValidMask = mnX = mnY = mnWidth = mnHeight = mnState = 0;  in WindowStateData()
 110     void         SetY( int nY ) { mnY = nY; }  in SetY()
 111     int          GetY() const { return mnY; }  in GetY()
 
 | 
| /aoo41x/main/vcl/source/window/ | 
| H A D | syswin.cxx | 730         aState.mnY                  = rData.GetY();  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()
 776 …(unsigned long) (aState.mnY + displacement + aState.mnHeight + g.nBottomDecoration) > (unsigned lo…  in SetWindowStateData()
 780                                 aState.mnY = displacement;  in SetWindowStateData()
 783 …(unsigned long) (aState.mnY + displacement + aState.mnHeight + g.nBottomDecoration) > (unsigned lo…  in SetWindowStateData()
 792                                 aState.mnY += displacement;  in SetWindowStateData()
 888                 rData.SetY( aState.mnY );  in GetWindowStateData()
 
 | 
| H A D | winproc.cxx | 1483     Point               aMousePos( rEvt.mnX, rEvt.mnY );  in ImplHandleWheelEvent()2044                                  pEvent->mnX, pEvent->mnY,  in ImplHandleSalMouseLeave()
 2054                                  pEvent->mnX, pEvent->mnY,  in ImplHandleSalMouseMove()
 2064                                  pEvent->mnX, pEvent->mnY,  in ImplHandleSalMouseButtonDown()
 2079                                  pEvent->mnX, pEvent->mnY,  in ImplHandleSalMouseButtonUp()
 2258         pEvt->mnY       = -1;  in ImplHandleSalExtTextInputPos()
 2265         pEvt->mnY       = aCursorRect.Top();  in ImplHandleSalExtTextInputPos()
 2387             aSalMouseEvent.mnY = pMouseEvt->GetPosPixel().Y();  in ImplWindowFrameProc()
 2407             aSalMouseEvent.mnY = pMouseEvt->GetPosPixel().Y();  in ImplWindowFrameProc()
 2424             aSalMouseEvent.mnY = pMouseEvt->GetPosPixel().Y();  in ImplWindowFrameProc()
 
 | 
| /aoo41x/main/vcl/aqua/source/window/ | 
| H A D | salobj.cxx | 43     mnY( 0 ),  in AquaSalObject()161     mnY = nY;  in SetPosSize()
 178     NSRect aClipViewRect = NSMakeRect( mnX, mnY, mnWidth, mnHeight);  in setClippedPosSize()
 
 | 
| /aoo41x/main/vcl/aqua/source/gdi/ | 
| H A D | salgdi.cxx | 741     long nY1 = pPtAry->mnY;  in getBoundRect()750         if( pPtAry[n].mnY < nY1 )  in getBoundRect()
 751             nY1 = pPtAry[n].mnY;  in getBoundRect()
 752         else if( pPtAry[n].mnY > nY2 )  in getBoundRect()
 753             nY2 = pPtAry[n].mnY;  in getBoundRect()
 764     o_fY = static_cast<float>(i_pIn->mnY ) + 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()
 
 | 
| /aoo41x/main/vcl/os2/source/window/ | 
| H A D | salframe.cxx | 413             pFrame->maState.mnY      = nScreenHeight - (aSWP.y+aSWP.cy)+nTopDeco;  in ImplSaveFrameState()1232 		pState->mnWidth,pState->mnHeight,pState->mnX,pState->mnY);  in SetWindowState()
 1261         nY = (int)pState->mnY - nTopDeco;  in SetWindowState()
 2381     aMouseEvt.mnY       = pFrame->mnHeight - (short)SHORT2FROMMP( nMP1 ) - 1;  in ImplHandleMouseMsg()
 2466                 aMouseEvt.mnY = aPt.y;  in ImplHandleMouseMsg()
 2516 		debug_printf("ImplHandleMouseMsg mouse %d,%d\n",aMouseEvt.mnX,aMouseEvt.mnY);  in ImplHandleMouseMsg()
 2562         aWheelEvt.mnY           	= aPt.y;  in ImplHandleWheelMsg()
 3402                 long nMinTop    = aEvt.mpPosAry[0].mnY;  in ImplHandleIMEOpenCandidate()
 3411                          (aEvt.mpPosAry[i].mnY < nMaxBottom-1) )  in ImplHandleIMEOpenCandidate()
 3417                         if ( aEvt.mpPosAry[i].mnY < nMinTop )  in ImplHandleIMEOpenCandidate()
 [all …]
 
 | 
| /aoo41x/main/writerfilter/source/dmapper/ | 
| H A D | WrapPolygonHandler.cxx | 175         mnY = nIntValue;  in lcl_attribute()195             awt::Point aPoint(mnX, mnY);  in lcl_sprm()
 
 | 
| /aoo41x/main/vcl/unx/generic/window/ | 
| H A D | salframe.cxx | 1680             pHints->y			= pState->mnY;  in SetWindowState()1688                                pState->mnX, pState->mnY,  in SetWindowState()
 1710                 aPosSize.setY (pState->mnY);  in SetWindowState()
 1789             maRestorePosSize.Top() = pState->mnY;  in SetWindowState()
 1834 	pState->mnY 	 = aPosSize.Top();  in GetWindowState()
 2920 		aMouseEvt.mnY		= pEvent->xcrossing.y;  in HandleMouseEvent()
 2932 		aMouseEvt.mnY		= pEvent->xmotion.y;  in HandleMouseEvent()
 3036 			aMouseEvt.mnY		= pEvent->xbutton.y;  in HandleMouseEvent()
 3078 			aWheelEvt.mnY			= pEvent->xbutton.y;  in HandleMouseEvent()
 3097 			 aMouseEvt.mnY <  nHeight_ && aMouseEvt.mnY >  -1 )  in HandleMouseEvent()
 
 |