Lines Matching refs:strf
235 const wchar_t* strf = wsDatePattern.c_str();
239 if (strf[ccf] == '\'') {
240 WideString wsLiteral = GetLiteralText(strf, &ccf, lenf);
250 if (!wsDateSymbols.Contains(strf[ccf])) {
251 if (strf[ccf] != str[*cc])
260 symbol += strf[ccf++];
261 while (ccf < lenf && strf[ccf] == symbol[0])
262 symbol += strf[ccf++];
354 const wchar_t* strf = wsTimePattern.c_str();
360 if (strf[ccf] == '\'') {
361 WideString wsLiteral = GetLiteralText(strf, &ccf, lenf);
371 if (!wsTimeSymbols.Contains(strf[ccf])) {
372 if (strf[ccf] != str[*cc])
381 symbol += strf[ccf++];
382 while (ccf < lenf && strf[ccf] == symbol[0])
383 symbol += strf[ccf++];
570 const wchar_t* strf = wsDatePattern.c_str();
574 if (strf[ccf] == '\'') {
575 wsResult += GetLiteralText(strf, &ccf, lenf);
579 if (!wsDateSymbols.Contains(strf[ccf])) {
580 wsResult += strf[ccf++];
586 symbol += strf[ccf++];
587 while (ccf < lenf && strf[ccf] == symbol[0])
588 symbol += strf[ccf++];
633 const wchar_t* strf = wsTimePattern.c_str();
644 if (strf[ccf] == '\'') {
645 wsResult += GetLiteralText(strf, &ccf, lenf);
649 if (!wsTimeSymbols.Contains(strf[ccf])) {
650 wsResult += strf[ccf++];
656 symbol += strf[ccf++];
657 while (ccf < lenf && strf[ccf] == symbol[0])
658 symbol += strf[ccf++];
1164 const wchar_t* strf = wsNumFormat.c_str();
1188 switch (strf[ccf]) {
1190 WideString wsLiteral = GetLiteralTextReverse(strf, &ccf);
1210 if (strf[ccf] == 'z' || str[cc] != ' ') {
1222 if (str[cc] == '+' || (strf[ccf] == 'S' && str[cc] == ' ')) {
1276 if (ccf - 1 >= 0 && ((strf[ccf] == 'R' && strf[ccf - 1] == 'C') ||
1277 (strf[ccf] == 'r' && strf[ccf - 1] == 'c'))) {
1278 if (strf[ccf] == 'R' && str[cc] == ' ') {
1291 if (ccf - 1 >= 0 && ((strf[ccf] == 'B' && strf[ccf - 1] == 'D') ||
1292 (strf[ccf] == 'b' && strf[ccf - 1] == 'd'))) {
1293 if (strf[ccf] == 'B' && str[cc] == ' ') {
1337 if (str[cc] == strf[ccf])
1346 if (strf[ccf] != str[cc])
1367 switch (strf[ccf]) {
1369 WideString wsLiteral = GetLiteralText(strf, &ccf, lenf);
1389 if (strf[ccf] == 'z' || str[cc] != ' ') {
1401 if (str[cc] == '+' || (strf[ccf] == 'S' && str[cc] == ' ')) {
1452 if (ccf + 1 < lenf && ((strf[ccf] == 'C' && strf[ccf + 1] == 'R') ||
1453 (strf[ccf] == 'c' && strf[ccf + 1] == 'r'))) {
1454 if (strf[ccf] == 'C' && str[cc] == ' ') {
1465 if (ccf + 1 < lenf && ((strf[ccf] == 'D' && strf[ccf + 1] == 'B') ||
1466 (strf[ccf] == 'd' && strf[ccf + 1] == 'b'))) {
1467 if (strf[ccf] == 'D' && str[cc] == ' ') {
1492 while (ccf < lenf && strf[ccf] == '8')
1510 if (str[cc] == strf[ccf])
1519 if (strf[ccf] != str[cc])
1870 const wchar_t* strf = wsNumFormat.c_str();
1887 switch (strf[ccf]) {
1889 GetLiteralText(strf, &ccf, dot_index_f);
1954 switch (strf[ccf]) {
2021 if (ccf - 1 >= 0 && strf[ccf - 1] == 'c') {
2030 if (ccf - 1 >= 0 && strf[ccf - 1] == 'C') {
2037 if (ccf - 1 >= 0 && strf[ccf - 1] == 'd') {
2046 if (ccf - 1 >= 0 && strf[ccf - 1] == 'D') {
2074 *wsOutput = GetLiteralTextReverse(strf, &ccf) + *wsOutput;
2078 wsOutput->InsertAtFront(strf[ccf]);
2113 if (strf[dot_index_f] == 'V') {
2115 } else if (strf[dot_index_f] == '.') {
2118 else if (strf[dot_index_f + 1] == '9' || strf[dot_index_f + 1] == 'Z')
2125 switch (strf[ccf]) {
2127 *wsOutput += GetLiteralText(strf, &ccf, lenf);
2175 if (ccf + 1 < lenf && strf[ccf + 1] == 'r') {
2184 if (ccf + 1 < lenf && strf[ccf + 1] == 'R') {
2191 if (ccf + 1 < lenf && strf[ccf + 1] == 'b') {
2200 if (ccf + 1 < lenf && strf[ccf + 1] == 'B') {
2211 while (ccf < lenf && strf[ccf] == '8')