MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / StandardASCII

Method StandardASCII

scintilla/src/Document.cxx:1457–1465  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1455}
1456
1457void 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
1467bool Document::MatchesWordOptions(bool word, bool wordStart, int pos, int length) {
1468 return (!word && !wordStart) ||

Callers 1

CaseFolderForEncodingMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected