Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

141                   UChar *dest, int32_t destCapacity,
150 UChar *dest, int32_t destCapacity,
157 UChar *dest, int32_t destCapacity,
166 UChar *dest, int32_t destCapacity,
175 UChar *dest, int32_t destCapacity,
185 UChar *dest, int32_t destCapacity,
199 uint8_t *dest, int32_t destCapacity,
206 uint8_t *dest, int32_t destCapacity,
216 uint8_t *dest, int32_t destCapacity,
232 * If length < destCapacity then NUL-terminate.
233 * If length == destCapacity then do not terminate but set U_STRING_NOT_TERMINATED_WARNING.
234 * If length > destCapacity then do not terminate but set U_BUFFER_OVERFLOW_ERROR.
236 * @param dest Destination buffer, can be NULL if destCapacity==0.
237 * @param destCapacity Number of UChars available at dest.
243 u_terminateUChars(UChar *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
250 u_terminateChars(char *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
257 u_terminateUChar32s(UChar32 *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
264 u_terminateWChars(wchar_t *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);