Home | History | Annotate | Download | only in parser

Lines Matching defs:cc

19   int cc = 0;
22 while (FXSYS_iswspace(str[cc]) && cc < len)
23 cc++;
25 if (cc >= len)
28 while (cc < len) {
29 if (str[cc] == ',' || !FXSYS_isDecimalDigit(str[cc]))
32 r = r * 10 + str[cc] - '0';
33 cc++;
35 if (cc < len && str[cc] == ',') {
36 cc++;
37 while (FXSYS_iswspace(str[cc]) && cc < len)
38 cc++;
40 while (cc < len) {
41 if (str[cc] == ',' || !FXSYS_isDecimalDigit(str[cc]))
44 g = g * 10 + str[cc] - '0';
45 cc++;
47 if (cc < len && str[cc] == ',') {
48 cc++;
49 while (FXSYS_iswspace(str[cc]) && cc < len)
50 cc++;
52 while (cc < len) {
53 if (str[cc] == ',' || !FXSYS_isDecimalDigit(str[cc]))
56 b = b * 10 + str[cc] - '0';
57 cc++;