Differences From Artifact [c927bb8870]:
- File src/OFXMLProcessingInstructions.m — part of check-in [c7f0229795] at 2020-01-02 01:51:34 on branch trunk — Update copyright (user: js, size: 3301) [annotate] [blame] [check-ins using] [more...]
To Artifact [5705c589f5]:
- File
src/OFXMLProcessingInstructions.m
— part of check-in
[0ddaac3f5b]
at
2020-11-05 00:24:29
on branch trunk
— Avoid -[allocMemoryWithSize:] for temporary memory
-[allocMemoryWithSize:] has book keeping overhead that is unnecessary
for temporary memory. (user: js, size: 3273) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
87 88 89 90 91 92 93 | processingInstructions = object; return [processingInstructions->_processingInstructions isEqual: _processingInstructions]; } | | | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
processingInstructions = object;
return [processingInstructions->_processingInstructions
isEqual: _processingInstructions];
}
- (unsigned long)hash
{
return _processingInstructions.hash;
}
- (OFString *)stringValue
{
return @"";
|
| ︙ | ︙ | |||
113 114 115 116 117 118 119 |
- (OFString *)XMLStringWithIndentation: (unsigned int)indentation
level: (unsigned int)level
{
OFString *ret;
if (indentation > 0 && level > 0) {
| < | | | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
- (OFString *)XMLStringWithIndentation: (unsigned int)indentation
level: (unsigned int)level
{
OFString *ret;
if (indentation > 0 && level > 0) {
char *whitespaces = of_malloc((level * indentation) + 1, 1);
memset(whitespaces, ' ', level * indentation);
whitespaces[level * indentation] = 0;
@try {
ret = [OFString stringWithFormat:
@"%s<?%@?>", whitespaces, _processingInstructions];
} @finally {
free(whitespaces);
}
} else
ret = [OFString stringWithFormat: @"<?%@?>",
_processingInstructions];
return ret;
}
|
| ︙ | ︙ |