Lines Matching refs:io_rPos
32 void lcl_skipSpaces(sal_Int32& io_rPos, in lcl_skipSpaces() argument
36 while( io_rPos < nLen && in lcl_skipSpaces()
37 sal_Unicode(' ') == rStr[io_rPos] ) in lcl_skipSpaces()
39 ++io_rPos; in lcl_skipSpaces()
43 void lcl_skipSpacesAndCommas(sal_Int32& io_rPos, in lcl_skipSpacesAndCommas() argument
47 while(io_rPos < nLen in lcl_skipSpacesAndCommas()
48 && (sal_Unicode(' ') == rStr[io_rPos] || sal_Unicode(',') == rStr[io_rPos])) in lcl_skipSpacesAndCommas()
50 ++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()
123 sal_Int32& io_rPos, in lcl_importDoubleAndSpaces() argument
127 if( !lcl_getDoubleChar(o_fRetval, io_rPos, rStr) ) in lcl_importDoubleAndSpaces()
130 lcl_skipSpacesAndCommas(io_rPos, rStr, nLen); in lcl_importDoubleAndSpaces()
136 sal_Int32& io_rPos, in lcl_importNumberAndSpaces() argument
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()
166 void lcl_skipNumber(sal_Int32& io_rPos, in lcl_skipNumber() argument
172 while(io_rPos < nLen && lcl_isOnNumberChar(rStr, io_rPos, bSignAllowed, true)) in lcl_skipNumber()
175 ++io_rPos; 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()