Differences From Artifact [6c2ca9fc8b]:
- File
generators/unicode/TableGenerator.h
— part of check-in
[149874777c]
at
2023-08-23 16:01:21
on branch trunk
— Remove incomplete NFD/NFKD support
It has been moved to the "unicode-normalization" branch until it is
ready. (user: js, size: 1403) [annotate] [blame] [check-ins using] [more...]
To Artifact [68e11922ac]:
- File generators/unicode/TableGenerator.h — part of check-in [8939cbdb52] at 2023-01-06 09:04:02 on branch trunk — Update copyright (user: js, size: 1725) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | + + + + + + + |
OFHTTPClientDelegate>
{
OFHTTPClient *_HTTPClient;
OFUnichar _uppercaseTable[0x110000];
OFUnichar _lowercaseTable[0x110000];
OFUnichar _titlecaseTable[0x110000];
OFUnichar _caseFoldingTable[0x110000];
OFString *_decompositionTable[0x110000];
OFString *_decompositionCompatTable[0x110000];
char _uppercaseTableUsed[0x1100];
char _lowercaseTableUsed[0x1100];
char _titlecaseTableUsed[0x1100];
char _caseFoldingTableUsed[0x1100];
char _decompositionTableUsed[0x1100];
char _decompositionCompatTableUsed[0x1100];
size_t _uppercaseTableSize;
size_t _lowercaseTableSize;
size_t _titlecaseTableSize;
size_t _caseFoldingTableSize;
size_t _decompositionTableSize;
size_t _decompositionCompatTableSize;
enum {
stateUnicodeData,
stateCaseFolding
} _state;
}
- (void)parseUnicodeData: (OFHTTPResponse *)response;
- (void)parseCaseFolding: (OFHTTPResponse *)response;
- (void)applyDecompositionRecursivelyForTable: (OFString *[0x110000])table;
- (void)writeFiles;
- (void)writeTablesToFile: (OFString *)path;
- (void)writeHeaderToFile: (OFString *)path;
@end
|