| /trunk/main/vcl/source/control/ | 
| H A D | longcurr.cxx | 325 	mnMax				= 0x7FFFFFFF;  in ImpInit()326 	mnMax			   *= 0x7FFFFFFF;  in ImpInit()
 410 	if ( nNewValue > mnMax )  in SetUserValue()
 411 		nNewValue = mnMax;  in SetUserValue()
 441 		if ( nTempValue > mnMax )  in GetValue()
 442 			nTempValue = mnMax;  in GetValue()
 496 	mnMax = nNewMax;  in SetMax()
 600 	mnLast		 = mnMax;  in LongCurrencyField()
 617 	mnLast		 = mnMax;  in LongCurrencyField()
 694 	if ( nValue > mnMax )  in Up()
 [all …]
 
 | 
| H A D | field.cxx | 450         if ( nTempVal > mnMax )  in ImplNumericReformat()492     mnLast              = mnMax;  in ImplInit()
 560     mnMax = nNewMax;  in SetMax()
 619     if ( nNewValue > mnMax )  in ImplSetUserValue()
 620         nNewValue = mnMax;  in ImplSetUserValue()
 649         if ( nTempValue > mnMax )  in GetValue()
 740     if ( nValue > mnMax )  in FieldUp()
 741         nValue = mnMax;  in FieldUp()
 1618     if ( nTempValue > mnMax )  in GetValue()
 1619         nTempValue = (double)mnMax;  in GetValue()
 [all …]
 
 | 
| /trunk/main/tools/source/memtools/ | 
| H A D | multisel.cxx | 878     , mnMax( i_nMaxNumber )  in StringRangeEnumerator()888     if( mnMax >= 0 && i_nValue > mnMax )  in checkValue()
 905             i_nLast = mnMax;  in insertRange()
 910             if( i_nFirst > mnMax )  in insertRange()
 911                 i_nFirst = mnMax;  in insertRange()
 914             if( i_nLast > mnMax )  in insertRange()
 915                 i_nLast = mnMax;  in insertRange()
 962         if( mnMin >= 0 && mnMax >= 0 )  in setRange()
 964             insertRange( mnMin, mnMax, mnMin != mnMax, ! i_bStrict );  in setRange()
 
 | 
| /trunk/main/vcl/inc/vcl/ | 
| H A D | salnativewidgets.hxx | 310 		long			mnMax;  member in ScrollbarValue325             mnMin = 0; mnMax = 0; mnCur = 0; mnVisibleSize = 0;  in ScrollbarValue()
 336 		long			mnMax;  member in SliderValue
 343 		, mnMin( 0 ), mnMax( 0 ), mnCur( 0 ), mnThumbState( 0 )  in SliderValue()
 
 | 
| H A D | longcurr.hxx | 49 	BigInt					mnMax;  member in LongCurrencyFormatter74 	BigInt					GetMax() const { return mnMax; }  in GetMax()
 
 | 
| H A D | field.hxx | 157     sal_Int64               mnMax;  member in NumericFormatter193     sal_Int64               GetMax() const { return mnMax; }  in GetMax()
 
 | 
| /trunk/main/tools/inc/tools/ | 
| H A D | multisel.hxx | 124     sal_Int32                                              mnMax;  member in StringRangeEnumerator155     StringRangeEnumerator() : mnCount( 0 ), mnMin( -1 ), mnMax( -1 ), mnOffset( -1 ) {}  in StringRangeEnumerator()
 168     sal_Int32 getMax() const { return mnMax; }  in getMax()
 169     void setMax( sal_Int32 i_nMaxValue ) { mnMax = i_nMaxValue; }  in setMax()
 
 | 
| /trunk/main/oox/source/ole/ | 
| H A D | axcontrol.cxx | 698     mnMax( 32767 ),  in ComCtlScrollBarModel()712 …rConv.convertScrollBar( rPropMap, mnMin, mnMax, mnPosition, mnSmallChange, mnLargeChange, mbAwtMod…  in convertProperties()
 718     rInStrm >> mnScrollBarFlags >> mnLargeChange >> mnSmallChange >> mnMin >> mnMax >> mnPosition;  in importControlData()
 1345     mnMax( 100 ),  in AxSpinButtonModel()
 1383     aReader.readIntProperty< sal_Int32 >( mnMax );  in importBinaryModel()
 1397     sal_Int32 nMin = ::std::min( mnMin, mnMax );  in convertProperties()
 1398     sal_Int32 nMax = ::std::max( mnMin, mnMax );  in convertProperties()
 1422     mnMax( 32767 ),  in AxScrollBarModel()
 1463     aReader.readIntProperty< sal_Int32 >( mnMax );  in importBinaryModel()
 1482     if( (mnPropThumb == AX_PROPTHUMB_ON) && (mnMin != mnMax) && (mnLargeChange > 0) )  in convertProperties()
 [all …]
 
 | 
| /trunk/main/padmin/source/ | 
| H A D | progress.hxx | 43 		int mnMax, mnMin;  member in padmin::ProgressDialog53 		void setRange( int nMin, int nMax ) { mnMin = nMin; mnMax = nMax; }  in setRange()
 
 | 
| H A D | progress.cxx | 48 		mnMax( nMax ),  in ProgressDialog()81 	maProgressBar.SetValue( nValue * 100 / ( mnMax - mnMin ) );  in setValue()
 
 | 
| /trunk/main/oox/source/xls/ | 
| H A D | drawingfragment.cxx | 557                 rAxModel.mnMax = pClientData->mnMax;  in createAndInsertClientXShape()567                 rAxModel.mnMax = pClientData->mnMax;  in createAndInsertClientXShape()
 
 | 
| H A D | worksheetfragment.cxx | 562     aModel.mnMax    = rAttribs.getInteger( XML_id, 0 );  in importBrk()685     rStrm >> aModel.mnColRow >> aModel.mnMin >> aModel.mnMax >> nManual;  in importBrk()
 
 | 
| /trunk/main/vcl/source/window/ | 
| H A D | printdlg.cxx | 2532     mnMax( i_nMax ),  in PrintProgressDialog()2538     if( mnMax < 1 )  in PrintProgressDialog()
 2539         mnMax = 1;  in PrintProgressDialog()
 2585         mnMax = i_nMax;  in setProgress()
 2587     if( mnMax < 1 )  in setProgress()
 2588         mnMax = 1;  in setProgress()
 2591     aNewText = searchAndReplace( aNewText, "%n", 2, rtl::OUString::valueOf( mnMax ) );  in setProgress()
 2600     if( mnCur < mnMax )  in tick()
 2632                         static_cast<sal_uInt16>(10000*mnCur/mnMax),  in Paint()
 
 | 
| /trunk/main/svx/source/table/ | 
| H A D | tablehandles.cxx | 72 , mnMax( nMax )  in TableEdgeHdl()101 …( std::max( static_cast<sal_Int32>(mbHorizontal ? rDrag.GetDY() : rDrag.GetDX()), mnMin ), mnMax );  in GetValidDragOffset()
 
 | 
| H A D | tablehandles.hxx | 70 	sal_Int32 mnMin, mnMax;  member in sdr::table::TableEdgeHdl
 | 
| /trunk/main/oox/inc/oox/ole/ | 
| H A D | axcontrol.hxx | 411     sal_Int32           mnMax;              /// Maximum of the value range.  member in oox::ole::ComCtlScrollBarModel690     sal_Int32           mnMax;              /// Maximum of the value range.  member in oox::ole::AxSpinButtonModel
 717     sal_Int32           mnMax;              /// Maximum of the value range.  member in oox::ole::AxScrollBarModel
 
 | 
| /trunk/main/vcl/unx/kde4/ | 
| H A D | KDESalGraphics.cxx | 427 			if (sbVal->mnVisibleSize < sbVal->mnMax)  in drawNativeControl()438             option.maximum = sbVal->mnMax - sbVal->mnVisibleSize;  in drawNativeControl()
 541         option.maximum     = slVal->mnMax;  in drawNativeControl()
 
 | 
| /trunk/main/filter/source/msfilter/ | 
| H A D | msocximex.cxx | 5474     mnMax( 100 ),  in OCX_SpinButton()5517     if( mnBlockFlags & 0x00000040 )     rStrm >> mnMax;  in Read()
 5583     aTmp <<= mnMax;  in Import()
 5681     GetInt32Property( mnMax,       rPropSet, WW8_ASCII2STR( "SpinValueMax" ),    0x00000040 );  in WriteContents()
 5748     if( mnBlockFlags & 0x00000040 )     rStrm << mnMax;  in WriteData()
 5773     mnMax = 32767;  in OCX_ScrollBar()
 5815     aTmp <<= mnMax;  in Import()
 5913     GetInt32Property( mnMax,       rPropSet, WW8_ASCII2STR( "ScrollValueMax" ),  0x00000040 );  in WriteContents()
 
 | 
| /trunk/main/vcl/inc/ | 
| H A D | printdlg.hxx | 311         sal_Int32           mnMax;  member in vcl::PrintProgressDialog
 | 
| /trunk/main/oox/inc/oox/xls/ | 
| H A D | worksheethelper.hxx | 131     sal_Int32           mnMax;              /// End of limited break.  member
 | 
| /trunk/main/vcl/aqua/source/gdi/ | 
| H A D | salnativewidgets.cxx | 801                 aTrackDraw.max   = pSLVal->mnMax;;  in drawNativeControl()838                 aTrackDraw.max = pScrollbarVal->mnMax - pScrollbarVal->mnVisibleSize;  in drawNativeControl()
 
 | 
| /trunk/main/oox/inc/oox/vml/ | 
| H A D | vmlshape.hxx | 148     sal_Int32           mnMax;              /// Maximum value of spin buttons and scroll bars.  member
 | 
| /trunk/main/oox/source/vml/ | 
| H A D | vmlshape.cxx | 179     mnMax( 0 ),  in ClientData()
 | 
| H A D | vmlshapecontext.cxx | 216 …case VMLX_TOKEN( Max ):         mrClientData.mnMax = maElementText.toInt32();                     …  in onEndElement()
 | 
| /trunk/main/sc/source/filter/excel/ | 
| H A D | xiescher.cxx | 2481     mnMax( 100 ),  in XclImpTbxObjScrollableBase()2493 …rStrm >> mnValue >> mnMin >> mnMax >> mnStep >> mnPageStep >> mnOrient >> mnThumbWidth >> mnScroll…  in ReadSbs()
 2533     rPropSet.SetProperty< sal_Int32 >( CREATE_OUSTRING( "SpinValueMax" ), mnMax );  in DoProcessControl()
 2572     rPropSet.SetProperty< sal_Int32 >( CREATE_OUSTRING( "ScrollValueMax" ), mnMax );  in DoProcessControl()
 
 |