Lines Matching refs:sal_Int64

59 void PercentField::SetRefValue(sal_Int64 nValue)  in SetRefValue()
61 sal_Int64 nRealValue = GetRealValue(eOldUnit); in SetRefValue()
79 sal_Int64 nOldValue; in ShowPercent()
83 sal_Int64 nAktWidth, nPercent; in ShowPercent()
100 MetricField::SetMin(Max(static_cast< sal_Int64 >(1), nPercent)); in ShowPercent()
118 sal_Int64 nOldPercent = GetValue(FUNIT_CUSTOM); in ShowPercent()
143 void PercentField::SetValue(sal_Int64 nNewValue, FieldUnit eInUnit) in SetValue()
150 void PercentField::SetPrcntValue(sal_Int64 nNewValue, FieldUnit eInUnit) in SetPrcntValue()
158 sal_Int64 nPercent, nAktWidth; in SetPrcntValue()
165 sal_Int64 nValue = Convert(nNewValue, eInUnit, eOldUnit); in SetPrcntValue()
177 void PercentField::SetUserValue( sal_Int64 nNewValue, FieldUnit eInUnit ) in SetUserValue()
185 sal_Int64 nPercent, nAktWidth; in SetUserValue()
192 sal_Int64 nValue = Convert(nNewValue, eInUnit, eOldUnit); in SetUserValue()
205 void PercentField::SetBaseValue(sal_Int64 nNewValue, FieldUnit eInUnit) in SetBaseValue()
217 sal_Int64 PercentField::GetValue( FieldUnit eOutUnit ) in GetValue()
226 void PercentField::SetMin(sal_Int64 nNewMin, FieldUnit eInUnit) in SetMin()
236 sal_Int64 nPercent = Convert(nNewMin, eInUnit, FUNIT_CUSTOM); in SetMin()
237 MetricField::SetMin(Max( static_cast< sal_Int64 >(1), nPercent)); in SetMin()
245 void PercentField::SetMax(sal_Int64 nNewMax, FieldUnit eInUnit) in SetMax()
261 sal_Int64 PercentField::NormalizePercent(sal_Int64 nValue) in NormalizePercent()
275 sal_Int64 PercentField::DenormalizePercent(sal_Int64 nValue) in DenormalizePercent()
281 sal_Int64 nFactor = ImpPower10(nOldDigits); in DenormalizePercent()
304 sal_Int64 PercentField::ImpPower10( sal_uInt16 n ) in ImpPower10()
307 sal_Int64 nValue = 1; in ImpPower10()
319 sal_Int64 PercentField::GetRealValue(FieldUnit eOutUnit) in GetRealValue()
331 sal_Int64 PercentField::Convert(sal_Int64 nValue, FieldUnit eInUnit, FieldUnit eOutUnit) in Convert()
341 sal_Int64 nTwipValue = (nRefValue * nValue + 50) / 100; in Convert()
352 sal_Int64 nAktWidth; in Convert()