reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
152 if (target >= targetEnd) { 164 *target++ = UNI_REPLACEMENT_CHAR; 167 *target++ = (UTF16)ch; /* normal case */ 173 *target++ = UNI_REPLACEMENT_CHAR; 177 if (target + 1 >= targetEnd) { 182 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); 183 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); 187 *targetStart = target;