reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
571 if (target >= targetEnd) { 583 *target++ = UNI_REPLACEMENT_CHAR; 586 *target++ = (UTF16)ch; /* normal case */ 594 *target++ = UNI_REPLACEMENT_CHAR; 598 if (target + 1 >= targetEnd) { 603 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); 604 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); 608 *targetStart = target;