| 1455 | } |
| 1456 | |
| 1457 | void CaseFolderTable::StandardASCII() { |
| 1458 | for (size_t iChar=0; iChar<sizeof(mapping); iChar++) { |
| 1459 | if (iChar >= 'A' && iChar <= 'Z') { |
| 1460 | mapping[iChar] = static_cast<char>(iChar - 'A' + 'a'); |
| 1461 | } else { |
| 1462 | mapping[iChar] = static_cast<char>(iChar); |
| 1463 | } |
| 1464 | } |
| 1465 | } |
| 1466 | |
| 1467 | bool Document::MatchesWordOptions(bool word, bool wordStart, int pos, int length) { |
| 1468 | return (!word && !wordStart) || |
no outgoing calls
no test coverage detected