Lines Matching refs:edits
22 ByteSink &sink, Edits *edits, UErrorCode &errorCode) { in appendChange() argument
52 if (edits != nullptr) { in appendChange()
53 edits->addReplace(length, s8Length); in appendChange()
61 ByteSink &sink, Edits *edits, UErrorCode &errorCode) { in appendChange() argument
67 return appendChange((int32_t)(limit - s), s16, s16Length, sink, edits, errorCode); in appendChange()
71 ByteSinkUtil::appendCodePoint(int32_t length, UChar32 c, ByteSink &sink, Edits *edits) { in appendCodePoint() argument
75 if (edits != nullptr) { in appendCodePoint()
76 edits->addReplace(length, s8Length); in appendCodePoint()
98 ByteSink &sink, uint32_t options, Edits *edits) { in appendNonEmptyUnchanged() argument
100 if (edits != nullptr) { in appendNonEmptyUnchanged()
101 edits->addUnchanged(length); in appendNonEmptyUnchanged()
110 ByteSink &sink, uint32_t options, Edits *edits, in appendUnchanged() argument
119 appendNonEmptyUnchanged(s, length, sink, options, edits); in appendUnchanged()