Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

122                   UChar *dest, int32_t destCapacity,
131 UChar *dest, int32_t destCapacity,
138 UChar *dest, int32_t destCapacity,
147 UChar *dest, int32_t destCapacity,
156 UChar *dest, int32_t destCapacity,
166 UChar *dest, int32_t destCapacity,
180 uint8_t *dest, int32_t destCapacity,
187 uint8_t *dest, int32_t destCapacity,
197 uint8_t *dest, int32_t destCapacity,
213 * If length < destCapacity then NUL-terminate.
214 * If length == destCapacity then do not terminate but set U_STRING_NOT_TERMINATED_WARNING.
215 * If length > destCapacity then do not terminate but set U_BUFFER_OVERFLOW_ERROR.
217 * @param dest Destination buffer, can be NULL if destCapacity==0.
218 * @param destCapacity Number of UChars available at dest.
224 u_terminateUChars(UChar *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
231 u_terminateChars(char *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
238 u_terminateUChar32s(UChar32 *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);
245 u_terminateWChars(wchar_t *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode);