Home | History | Annotate | Download | only in parser

Lines Matching defs:cc

219     int cc = 0;
223 while (FXSYS_iswspace(str[cc]) && cc < len) {
224 cc++;
226 if (cc >= len) {
230 cc++;
233 cc++;
236 while (cc < len) {
237 if (str[cc] == '.' || !FXSYS_isDecimalDigit(str[cc]) ||
241 nIntegral = nIntegral * 10 + str[cc] - '0';
242 cc++;
248 if (cc < len && str[cc] == '.') {
249 cc++;
250 while (cc < len) {
251 fraction += fraction_scales[scale] * (str[cc] - '0');
253 cc++;
255 !FXSYS_isDecimalDigit(str[cc])) {
261 if (cc < len && (str[cc] == 'E' || str[cc] == 'e')) {
262 cc++;
263 if (cc < len) {
264 if (str[cc] == '+') {
265 cc++;
266 } else if (str[cc] == '-') {
268 cc++;
271 while (cc < len) {
272 if (str[cc] == '.' || !FXSYS_isDecimalDigit(str[cc])) {
275 nExponent = nExponent * 10 + str[cc] - '0';
276 cc++;
295 int32_t cc = 0;
299 while (FXSYS_iswspace(str[cc]) && cc < len) {
300 cc++;
302 if (cc >= len) {
306 cc++;
309 cc++;
312 while (cc < len) {
313 if (str[cc] == '.' || !FXSYS_isDecimalDigit(str[cc]) ||
317 nIntegral = nIntegral * 10 + str[cc] - '0';
318 cc++;
324 if (cc < len && str[cc] == '.') {
325 cc++;
326 while (cc < len) {
327 fraction += fraction_scales[scale] * (str[cc] - '0');
329 cc++;
331 !FXSYS_isDecimalDigit(str[cc])) {
337 if (cc < len && (str[cc] == 'E' || str[cc] == 'e')) {
338 cc++;
339 if (cc < len) {
340 if (str[cc] == '+') {
341 cc++;
342 } else if (str[cc] == '-') {
344 cc++;
347 while (cc < len) {
348 if (str[cc] == '.' || !FXSYS_isDecimalDigit(str[cc])) {
351 nExponent = nExponent * 10 + str[cc] - '0';
352 cc++;