Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

126              UChar *dest, int32_t destCapacity,
136 UChar *dest, int32_t destCapacity,
148 UChar *dest, int32_t destCapacity,
162 UChar *dest, int32_t destCapacity,
169 * If length < destCapacity then NUL-terminate.
170 * If length == destCapacity then do not terminate but set U_STRING_NOT_TERMINATED_WARNING.
171 * If length > destCapacity then do not terminate but set U_BUFFER_OVERFLOW_ERROR.
173 * @param dest Destination buffer, can be NULL if destCapacity==0.
174 * @param destCapacity Number of UChars available at dest.
181 u_terminateUChars(UChar *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
188 u_terminateChars(char *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
195 u_terminateUChar32s(UChar32 *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
202 u_terminateWChars(wchar_t *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);