Lines Matching refs:n

84 	double n = nValue;  in ImplCalcLongValue()  local
86 n *= 10; in ImplCalcLongValue()
87 return n; in ImplCalcLongValue()
92 double n = nValue; in ImplCalcDoubleValue() local
94 n /= 10; in ImplCalcDoubleValue()
95 return n; in ImplCalcDoubleValue()
518 sal_Int16 n = sal_Int16(); in setProperty() local
519 if ( Value >>= n ) in setProperty()
520 ((PushButton*)pButton)->SetState( (TriState)n ); in setProperty()
861 void VCLXCheckBox::setState( short n ) throw(::com::sun::star::uno::RuntimeException) in setState() argument
869 switch ( n ) in setState()
974 sal_Int16 n = sal_Int16(); in setProperty() local
975 if ( Value >>= n ) in setProperty()
976 setState( n ); in setProperty()
1139 sal_Int16 n = sal_Int16(); in setProperty() local
1140 if ( Value >>= n ) in setProperty()
1142 sal_Bool b = n ? sal_True : sal_False; in setProperty()
1597 for ( sal_uInt16 n = nCount; n; ) in removeItems() local
1598 pBox->RemoveEntry( nPos + (--n) ); in removeItems()
1631 for ( sal_uInt16 n = nEntries; n; ) in getItems() local
1633 --n; in getItems()
1634 aSeq.getArray()[n] = ::rtl::OUString( pBox->GetEntry( n ) ); in getItems()
1658 for ( sal_uInt16 n = 0; n < nSelEntries; n++ ) in getSelectedItemsPos() local
1659 aSeq.getArray()[n] = pBox->GetSelectEntryPos( n ); in getSelectedItemsPos()
1685 for ( sal_uInt16 n = 0; n < nSelEntries; n++ ) in getSelectedItems() local
1686 aSeq.getArray()[n] = ::rtl::OUString( pBox->GetSelectEntry( n ) ); in getSelectedItems()
1718 for ( sal_uInt16 n = (sal_uInt16)aPositions.getLength(); n; ) in selectItemsPos() local
1720 sal_uInt16 nPos = (sal_uInt16) aPositions.getConstArray()[--n]; in selectItemsPos()
1896 sal_Int16 n = sal_Int16(); in setProperty() local
1897 if ( Value >>= n ) in setProperty()
1898 pListBox->SetDropDownLineCount( n ); in setProperty()
1916 for ( sal_uInt16 n = pListBox->GetEntryCount(); n; ) in setProperty() local
1917 pListBox->SelectEntryPos( --n, sal_False ); in setProperty()
1976 for ( sal_uInt16 n = 0; n < nItems; n++ ) in getProperty() local
1977 pStrings[n] = pListBox->GetEntry( n ); in getProperty()
3085 void VCLXScrollBar::setValue( sal_Int32 n ) throw(::com::sun::star::uno::RuntimeException) in setValue() argument
3091 pScrollBar->DoScroll( n ); in setValue()
3115 void VCLXScrollBar::setMaximum( sal_Int32 n ) throw(::com::sun::star::uno::RuntimeException) in setMaximum() argument
3121 pScrollBar->SetRangeMax( n ); in setMaximum()
3132 void VCLXScrollBar::setMinimum( sal_Int32 n ) throw(::com::sun::star::uno::RuntimeException) in setMinimum() argument
3138 pScrollBar->SetRangeMin( n ); in setMinimum()
3149 void VCLXScrollBar::setLineIncrement( sal_Int32 n ) throw(::com::sun::star::uno::RuntimeException) in setLineIncrement() argument
3155 pScrollBar->SetLineSize( n ); in setLineIncrement()
3166 void VCLXScrollBar::setBlockIncrement( sal_Int32 n ) throw(::com::sun::star::uno::RuntimeException) in setBlockIncrement() argument
3172 pScrollBar->SetPageSize( n ); in setBlockIncrement()
3183 void VCLXScrollBar::setVisibleSize( sal_Int32 n ) throw(::com::sun::star::uno::RuntimeException) in setVisibleSize() argument
3189 pScrollBar->SetVisibleSize( n ); in setVisibleSize()
3200 void VCLXScrollBar::setOrientation( sal_Int32 n ) throw(::com::sun::star::uno::RuntimeException) in setOrientation() argument
3209 if ( n == ::com::sun::star::awt::ScrollBarOrientation::HORIZONTAL ) in setOrientation()
3223 sal_Int32 n = 0; in getOrientation() local
3229 n = ::com::sun::star::awt::ScrollBarOrientation::HORIZONTAL; in getOrientation()
3231 n = ::com::sun::star::awt::ScrollBarOrientation::VERTICAL; in getOrientation()
3233 return n; in getOrientation()
3274 sal_Int32 n = 0; in setProperty() local
3275 if ( Value >>= n ) in setProperty()
3276 setValue( n ); in setProperty()
3285 sal_Int32 n = 0; in setProperty() local
3286 if ( Value >>= n ) in setProperty()
3289 setMaximum( n ); in setProperty()
3291 setMinimum( n ); in setProperty()
3300 sal_Int32 n = 0; in setProperty() local
3301 if ( Value >>= n ) in setProperty()
3302 setLineIncrement( n ); in setProperty()
3310 sal_Int32 n = 0; in setProperty() local
3311 if ( Value >>= n ) in setProperty()
3312 setBlockIncrement( n ); in setProperty()
3320 sal_Int32 n = 0; in setProperty() local
3321 if ( Value >>= n ) in setProperty()
3322 setVisibleSize( n ); in setProperty()
3330 sal_Int32 n = 0; in setProperty() local
3331 if ( Value >>= n ) in setProperty()
3332 setOrientation( n ); in setProperty()
3473 long n = p->GetSettings().GetStyleSettings().GetScrollBarSize(); in implGetMinimumSize() local
3474 return ::com::sun::star::awt::Size( n, n ); in implGetMinimumSize()
3719 sal_Int16 n = sal_Int16(); in setProperty() local
3720 if ( Value >>= n ) in setProperty()
3721 pEdit->SetEchoChar( n ); in setProperty()
3726 sal_Int16 n = sal_Int16(); in setProperty() local
3727 if ( Value >>= n ) in setProperty()
3728 pEdit->SetMaxTextLen( n ); in setProperty()
3972 for ( sal_uInt16 n = 0; n < aItems.getLength(); n++ ) in addItems() local
3974 pBox->InsertEntry( aItems.getConstArray()[n], nP ); in addItems()
3992 for ( sal_uInt16 n = nCount; n; ) in removeItems() local
3993 pBox->RemoveEntry( nPos + (--n) ); in removeItems()
4026 for ( sal_uInt16 n = nEntries; n; ) in getItems() local
4028 --n; in getItems()
4029 aSeq.getArray()[n] = pBox->GetEntry( n ); in getItems()
4067 sal_Int16 n = sal_Int16(); in setProperty() local
4068 if ( Value >>= n ) in setProperty()
4069 pComboBox->SetDropDownLineCount( n ); in setProperty()
4074 sal_Int16 n = sal_Int16(); in setProperty() local
4075 if ( Value >>= n ) in setProperty()
4076 pComboBox->EnableAutocomplete( n != 0 ); in setProperty()
4137 for ( sal_uInt16 n = 0; n < nItems; n++ ) in getProperty() local
4138 pStrings[n] = pComboBox->GetEntry( n ); in getProperty()
4559 sal_Int32 n = 0; variable
4560 if ( Value >>= n )
4561 setDate( n );
4567 sal_Int32 n = 0; variable
4568 if ( Value >>= n )
4569 setMin( n );
4574 sal_Int32 n = 0; variable
4575 if ( Value >>= n )
4576 setMax( n );
4581 sal_Int16 n = sal_Int16(); variable
4582 if ( Value >>= n )
4583 ((DateField*)GetWindow())->SetExtDateFormat( (ExtDateFieldFormat) n );
5052 sal_Int32 n = 0; in setProperty() local
5053 if ( Value >>= n ) in setProperty()
5054 setTime( n ); in setProperty()
5060 sal_Int32 n = 0; in setProperty() local
5061 if ( Value >>= n ) in setProperty()
5062 setMin( n ); in setProperty()
5067 sal_Int32 n = 0; in setProperty() local
5068 if ( Value >>= n ) in setProperty()
5069 setMax( n ); in setProperty()
5074 sal_Int16 n = sal_Int16(); in setProperty() local
5075 if ( Value >>= n ) in setProperty()
5076 ((TimeField*)GetWindow())->SetExtFormat( (ExtTimeFieldFormat) n ); in setProperty()
5347 double n = getValue(); in setDecimalDigits() local
5349 setValue( n ); in setDecimalDigits()
5410 sal_Int16 n = sal_Int16(); in setProperty() local
5411 if ( Value >>= n ) in setProperty()
5412 setDecimalDigits( n ); in setProperty()
5660 sal_Int16 n = 0; in setProperty() local
5661 if ( Value >>= n ) in setProperty()
5662 setDecimalDigits( n ); in setProperty()
5942 double n = getValue(); in setDecimalDigits() local
5944 setValue( n ); in setDecimalDigits()
6005 sal_Int16 n = sal_Int16(); in setProperty() local
6006 if ( Value >>= n ) in setProperty()
6007 setDecimalDigits( n ); in setProperty()