Lines Matching defs:cc
44 int32_t cc = 0;
50 cc++;
53 cc++;
56 while (cc < len) {
57 if (str[cc] == '.' || str[cc] == 'E' || str[cc] == 'e' ||
61 if (!FXSYS_isDecimalDigit(str[cc])) {
64 nIntegral = nIntegral * 10 + str[cc] - '0';
65 cc++;
71 if (cc < len && str[cc] == '.') {
72 cc++;
73 while (cc < len) {
74 fraction += fraction_scales[scale] * (str[cc] - '0');
76 cc++;
77 if (cc == len) {
81 str[cc] == 'E' || str[cc] == 'e') {
84 if (!FXSYS_isDecimalDigit(str[cc])) {
90 if (cc < len && (str[cc] == 'E' || str[cc] == 'e')) {
91 cc++;
92 if (cc < len) {
93 if (str[cc] == '+') {
94 cc++;
95 } else if (str[cc] == '-') {
97 cc++;
100 while (cc < len) {
101 if (str[cc] == '.' || !FXSYS_isDecimalDigit(str[cc])) {
104 nExponent = nExponent * 10 + str[cc] - '0';
105 cc++;