Lines Matching refs:rStr

33                             const ::rtl::OUString& 	rStr,   in lcl_skipSpaces()
37 sal_Unicode(' ') == rStr[io_rPos] ) in lcl_skipSpaces()
44 const ::rtl::OUString& rStr, in lcl_skipSpacesAndCommas()
48 && (sal_Unicode(' ') == rStr[io_rPos] || sal_Unicode(',') == rStr[io_rPos])) in lcl_skipSpacesAndCommas()
54 bool lcl_getDoubleChar(double& o_fRetval, sal_Int32& io_rPos, const ::rtl::OUString& rStr) in lcl_getDoubleChar() argument
56 sal_Unicode aChar( rStr[io_rPos] ); in lcl_getDoubleChar()
62 sNumberString.append(rStr[io_rPos]); in lcl_getDoubleChar()
63 aChar = rStr[++io_rPos]; in lcl_getDoubleChar()
69 sNumberString.append(rStr[io_rPos]); in lcl_getDoubleChar()
70 aChar = rStr[++io_rPos]; in lcl_getDoubleChar()
76 sNumberString.append(rStr[io_rPos]); in lcl_getDoubleChar()
77 aChar = rStr[++io_rPos]; in lcl_getDoubleChar()
83 sNumberString.append(rStr[io_rPos]); in lcl_getDoubleChar()
84 aChar = rStr[++io_rPos]; in lcl_getDoubleChar()
90 sNumberString.append(rStr[io_rPos]); in lcl_getDoubleChar()
91 aChar = rStr[++io_rPos]; in lcl_getDoubleChar()
96 sNumberString.append(rStr[io_rPos]); in lcl_getDoubleChar()
97 aChar = rStr[++io_rPos]; in lcl_getDoubleChar()
103 sNumberString.append(rStr[io_rPos]); in lcl_getDoubleChar()
104 aChar = rStr[++io_rPos]; in lcl_getDoubleChar()
124 const ::rtl::OUString& rStr, in lcl_importDoubleAndSpaces()
127 if( !lcl_getDoubleChar(o_fRetval, io_rPos, rStr) ) in lcl_importDoubleAndSpaces()
130 lcl_skipSpacesAndCommas(io_rPos, rStr, nLen); in lcl_importDoubleAndSpaces()
137 const ::rtl::OUString& rStr, in lcl_importNumberAndSpaces()
140 sal_Unicode aChar( rStr[io_rPos] ); in lcl_importNumberAndSpaces()
145 sNumberString.append(rStr[io_rPos]); in lcl_importNumberAndSpaces()
146 aChar = rStr[++io_rPos]; in lcl_importNumberAndSpaces()
151 sNumberString.append(rStr[io_rPos]); in lcl_importNumberAndSpaces()
152 aChar = rStr[++io_rPos]; in lcl_importNumberAndSpaces()
158 lcl_skipSpacesAndCommas(io_rPos, rStr, nLen); in lcl_importNumberAndSpaces()
167 const ::rtl::OUString& rStr, in lcl_skipNumber()
172 while(io_rPos < nLen && lcl_isOnNumberChar(rStr, io_rPos, bSignAllowed, true)) in lcl_skipNumber()
179 void lcl_skipDouble(sal_Int32& io_rPos, const ::rtl::OUString& rStr) in lcl_skipDouble() argument
181 sal_Unicode aChar( rStr[io_rPos] ); in lcl_skipDouble()
186 aChar = rStr[++io_rPos]; in lcl_skipDouble()
192 aChar = rStr[++io_rPos]; in lcl_skipDouble()
198 aChar = rStr[++io_rPos]; in lcl_skipDouble()
204 aChar = rStr[++io_rPos]; in lcl_skipDouble()
210 aChar = rStr[++io_rPos]; in lcl_skipDouble()
215 aChar = rStr[++io_rPos]; in lcl_skipDouble()
221 aChar = rStr[++io_rPos]; in lcl_skipDouble()
226 void lcl_putNumberCharWithSpace( ::rtl::OUStringBuffer& rStr, in lcl_putNumberCharWithSpace() argument
234 const sal_Int32 aLen( rStr.getLength() ); in lcl_putNumberCharWithSpace()
237 if( lcl_isOnNumberChar(rStr.charAt(aLen - 1), false, true) && in lcl_putNumberCharWithSpace()
240 rStr.append( sal_Unicode(' ') ); in lcl_putNumberCharWithSpace()
244 lcl_putNumberChar(rStr, fValue); in lcl_putNumberCharWithSpace()