Lines Matching refs:k

2443                 xub_StrLen k;                       // Nenner:  in GetOutputString()  local
2444 bRes |= ImpNumberFill(sDiv, fNumber, k, j, nIx, NF_SYMBOLTYPE_FRAC); in GetOutputString()
2462 bRes |= ImpNumberFill(sFrac, fNumber, k, j, nIx, NF_SYMBOLTYPE_FRACBLANK); in GetOutputString()
2477 k = sStr.Len(); // hinter letzter Ziffer in GetOutputString()
2478 bRes |= ImpNumberFillWithThousands(sStr, fNumber, k, j, nIx, in GetOutputString()
2535 xub_StrLen k; // position in ExpStr in GetOutputString() local
2536 bRes |= ImpNumberFill(ExpStr, fNumber, k, j, nIx, NF_SYMBOLTYPE_EXP); in GetOutputString()
2539 while (nZeros < k && ExpStr.GetChar(nZeros) == '0') in GetOutputString()
2563 k = sStr.Len(); // hinter letzter Ziffer in GetOutputString()
2564 bRes |= ImpNumberFillWithThousands(sStr,fNumber, k,j,nIx, in GetOutputString()
3472 xub_StrLen k; in ImpGetNumberOutput() local
3532 k = sStr.Len(); // hinter letzter Ziffer in ImpGetNumberOutput()
3548 sStr.Insert( (sal_Unicode) 0x1B, k /*++*/ ); in ImpGetNumberOutput()
3549 sStr.Insert(rInfo.sStrArray[j].GetChar(1),k); in ImpGetNumberOutput()
3554 /*k = */ InsertBlanks( sStr,k,rInfo.sStrArray[j].GetChar(1) ); in ImpGetNumberOutput()
3559 sStr.Insert(rInfo.sStrArray[j],k); in ImpGetNumberOutput()
3563 sStr.Insert(rInfo.sStrArray[j],k); in ImpGetNumberOutput()
3573 k--; in ImpGetNumberOutput()
3574 if ( sStr.GetChar(k) != '0' ) in ImpGetNumberOutput()
3583 sStr.SetChar( k, '-' ); in ImpGetNumberOutput()
3588 sStr.SetChar( k, ' ' ); in ImpGetNumberOutput()
3592 sStr.Erase(k,1); in ImpGetNumberOutput()
3598 sStr.Insert(rScan.GetCurAbbrev(), k); in ImpGetNumberOutput()
3605 sStr.Insert(sNum, k); in ImpGetNumberOutput()
3615 bRes |= ImpNumberFillWithThousands(sStr, fNumber, k, j, nIx, // ggfs Auffuellen mit . in ImpGetNumberOutput()
3634 xub_StrLen k, // position within string in ImpNumberFillWithThousands() argument
3660 sStr.Insert(rInfo.sStrArray[j],k); in ImpNumberFillWithThousands()
3661 if ( k == 0 ) in ImpNumberFillWithThousands()
3668 sStr.Insert( (sal_Unicode) 0x1B, k/*++*/ ); in ImpNumberFillWithThousands()
3669 sStr.Insert(rInfo.sStrArray[j].GetChar(1),k); in ImpNumberFillWithThousands()
3674 /*k = */ InsertBlanks( sStr,k,rInfo.sStrArray[j].GetChar(1) ); in ImpNumberFillWithThousands()
3694 if (k > 0) in ImpNumberFillWithThousands()
3695 sStr.Insert(rInfo.sStrArray[j],k); in ImpNumberFillWithThousands()
3724 sStr.Insert(' ',k); in ImpNumberFillWithThousands()
3727 sStr.Insert(rInfo.sStrArray[j],k); in ImpNumberFillWithThousands()
3742 if (k > 0) in ImpNumberFillWithThousands()
3743 k--; in ImpNumberFillWithThousands()
3756 if (nDigitCount == nDigCnt && k > 0) in ImpNumberFillWithThousands()
3758 ImpDigitFill(sStr, 0, k, nIx, nDigitCount, aGrouping); in ImpNumberFillWithThousands()
3764 sStr.Insert(rScan.GetCurAbbrev(), k); in ImpNumberFillWithThousands()
3771 sStr.Insert(sNum, k); in ImpNumberFillWithThousands()
3780 k = k + nLeadingStringChars; // MSC converts += to int and then warns, so ... in ImpNumberFillWithThousands()
3781 if (k > nLeadingStringChars) in ImpNumberFillWithThousands()
3782 ImpDigitFill(sStr, nLeadingStringChars, k, nIx, nDigitCount, aGrouping); in ImpNumberFillWithThousands()
3789 xub_StrLen& k, // position within string in ImpDigitFill() argument
3797 while (k > nStart) in ImpDigitFill()
3801 sStr.Insert( rThousandSep, k ); in ImpDigitFill()
3805 k--; in ImpDigitFill()
3809 k = nStart; in ImpDigitFill()
3814 xub_StrLen& k, // position within string in ImpNumberFill() argument
3820 k = sStr.Len(); // behind last digit in ImpNumberFill()
3832 sStr.Insert( sal_Unicode(0x1B), k++ ); in ImpNumberFill()
3833 sStr.Insert(rInfo.sStrArray[j].GetChar(1),k); in ImpNumberFill()
3838 k = InsertBlanks( sStr,k,rInfo.sStrArray[j].GetChar(1) ); in ImpNumberFill()
3851 if ( bDoThousands && k > 0 ) in ImpNumberFill()
3853 sStr.Insert(rInfo.sStrArray[j],k); in ImpNumberFill()
3864 if (k > 0) in ImpNumberFill()
3865 k--; in ImpNumberFill()
3882 sStr.Insert(rScan.GetCurAbbrev(), k); in ImpNumberFill()
3889 sStr.Insert(sNum, k); in ImpNumberFill()
3894 sStr.Insert(rInfo.sStrArray[j],k); in ImpNumberFill()