Lines Matching refs:rText

2789 void lclAppendDigit( ByteString& rText, sal_Int32 nDigit )  in lclAppendDigit()  argument
2793 case 0: rText.UTF8_APPEND( UTF8_TH_0 ); break; in lclAppendDigit()
2794 case 1: rText.UTF8_APPEND( UTF8_TH_1 ); break; in lclAppendDigit()
2795 case 2: rText.UTF8_APPEND( UTF8_TH_2 ); break; in lclAppendDigit()
2796 case 3: rText.UTF8_APPEND( UTF8_TH_3 ); break; in lclAppendDigit()
2797 case 4: rText.UTF8_APPEND( UTF8_TH_4 ); break; in lclAppendDigit()
2798 case 5: rText.UTF8_APPEND( UTF8_TH_5 ); break; in lclAppendDigit()
2799 case 6: rText.UTF8_APPEND( UTF8_TH_6 ); break; in lclAppendDigit()
2800 case 7: rText.UTF8_APPEND( UTF8_TH_7 ); break; in lclAppendDigit()
2801 case 8: rText.UTF8_APPEND( UTF8_TH_8 ); break; in lclAppendDigit()
2802 case 9: rText.UTF8_APPEND( UTF8_TH_9 ); break; in lclAppendDigit()
2811 void lclAppendPow10( ByteString& rText, sal_Int32 nDigit, sal_Int32 nPow10 ) in lclAppendPow10() argument
2814 lclAppendDigit( rText, nDigit ); in lclAppendPow10()
2817 case 2: rText.UTF8_APPEND( UTF8_TH_1E2 ); break; in lclAppendPow10()
2818 case 3: rText.UTF8_APPEND( UTF8_TH_1E3 ); break; in lclAppendPow10()
2819 case 4: rText.UTF8_APPEND( UTF8_TH_1E4 ); break; in lclAppendPow10()
2820 case 5: rText.UTF8_APPEND( UTF8_TH_1E5 ); break; in lclAppendPow10()
2826 void lclAppendBlock( ByteString& rText, sal_Int32 nValue ) in lclAppendBlock() argument
2831 lclAppendPow10( rText, nValue / 100000, 5 ); in lclAppendBlock()
2836 lclAppendPow10( rText, nValue / 10000, 4 ); in lclAppendBlock()
2841 lclAppendPow10( rText, nValue / 1000, 3 ); in lclAppendBlock()
2846 lclAppendPow10( rText, nValue / 100, 2 ); in lclAppendBlock()
2856 lclAppendDigit( rText, nTen ); in lclAppendBlock()
2858 rText.UTF8_APPEND( UTF8_TH_20 ); in lclAppendBlock()
2859 rText.UTF8_APPEND( UTF8_TH_10 ); in lclAppendBlock()
2862 rText.UTF8_APPEND( UTF8_TH_11 ); in lclAppendBlock()
2864 lclAppendDigit( rText, nOne ); in lclAppendBlock()