Lines Matching refs:nMul
984 sal_Int64 nMul(1); in ImpSetUIUnit() local
1023 case FUNIT_TWIP : nMul=144; nUIUnitKomma--; break; // 1Twip = 1/1440" in ImpSetUIUnit()
1024 case FUNIT_POINT : nMul=72; break; // 1Pt = 1/72" in ImpSetUIUnit()
1025 case FUNIT_PICA : nMul=6; break; // 1Pica = 1/6" ? in ImpSetUIUnit()
1041 nMul *= 254; in ImpSetUIUnit()
1056 if(1 != nMul || 1 != nDiv) in ImpSetUIUnit()
1058 const Fraction aTemp(static_cast< long >(nMul), static_cast< long >(nDiv)); in ImpSetUIUnit()
1059 nMul = aTemp.GetNumerator(); in ImpSetUIUnit()
1067 nMul *= aUIScale.GetDenominator(); in ImpSetUIUnit()
1072 while(0 == (nMul % 10)) in ImpSetUIUnit()
1075 nMul /= 10; in ImpSetUIUnit()
1086 aUIUnitFact = Fraction(sal_Int32(nMul), sal_Int32(nDiv)); in ImpSetUIUnit()
1087 bUIOnlyKomma = (nMul == nDiv); in ImpSetUIUnit()
1385 sal_Int32 nMul(rVal.GetNumerator()); in TakePercentStr() local
1387 sal_Bool bNeg(nMul < 0); in TakePercentStr()
1392 if(nMul < 0) in TakePercentStr()
1393 nMul = -nMul; in TakePercentStr()
1398 nMul *= 100; in TakePercentStr()
1399 nMul += nDiv/2; in TakePercentStr()
1400 nMul /= nDiv; in TakePercentStr()
1402 rStr = UniString::CreateFromInt32(nMul); in TakePercentStr()