Lines Matching refs:target
760 * to calculate the size of a target buffer for conversion from Unicode.
1102 * target does not fit in available buffers.
1111 * (1.) the target buffer is full, or (2.) a failing error is returned from the
1125 * Call this function repeatedly, updating the target pointers with
1126 * the next empty chunk of target in case of a
1131 * @param target I/O parameter. Input : Points to the beginning of the buffer to copy
1133 * to <TT>target</TT>.
1134 * @param targetLimit the pointer just after last of the <TT>target</TT> buffer
1138 * of allocated cells as <TT>target</TT>. Will fill in offsets from target to source pointer
1139 * e.g: <TT>offsets[3]</TT> is equal to 6, it means that the <TT>target[3]</TT> was a result of transcoding <TT>source[6]</TT>
1148 * <code>U_BUFFER_OVERFLOW_ERROR</code> will be set if the target is full and there is
1149 * still data to be written to the target.
1158 char **target,
1170 * target does not fit in available buffers.
1180 * (1.) the target buffer is full, or (2.) a failing error is returned from the
1194 * Call this function repeatedly, updating the target pointers with
1195 * the next empty chunk of target in case of a
1200 * @param target I/O parameter. Input : Points to the beginning of the buffer to copy
1202 * @param targetLimit the pointer just after the end of the <TT>target</TT> buffer
1206 * of allocated cells as <TT>target</TT>. Will fill in offsets from target to source pointer
1207 * e.g: <TT>offsets[3]</TT> is equal to 6, it means that the <TT>target[3]</TT> was a result of transcoding <TT>source[6]</TT>
1216 * <code>U_BUFFER_OVERFLOW_ERROR</code> will be set if the target is full and there is
1217 * still data to be written to the target.
1227 UChar **target,
1410 * the target buffer
1418 * - the entire source text has been converted successfully to the target buffer
1419 * - a target buffer overflow occurred (U_BUFFER_OVERFLOW_ERROR)
1440 * char *target;
1454 * target=u8;
1456 * &target, u8+capacity,
1465 * return (int32_t)(target-u8);
1470 * to the target using ucnv_fromUnicode().
1473 * @param target I/O parameter, same as for ucnv_fromUChars().
1474 * Input: *target points to the beginning of the target buffer.
1475 * Output: *target points to the first unit after the last char written.
1476 * @param targetLimit Pointer to the first unit after the target buffer.
1485 * conversion from the pivot buffer to the target buffer.
1486 * @param pivotTarget I/O parameter, same as target in ucnv_toUChars() for
1499 * U_BUFFER_OVERFLOW_ERROR always refers to the target buffer
1503 * the pivot-to-target conversion.
1516 char **target, const char *targetLimit,
1543 * the target buffer
1547 * - the entire source text has been converted successfully to the target buffer
1548 * and either the target buffer is terminated with a single NUL byte
1550 * - a target buffer overflow occurred (U_BUFFER_OVERFLOW_ERROR)
1556 * from the UTF-16 pivot buffer to the target.
1559 * @param target Pointer to the output buffer.
1560 * @param targetCapacity Capacity of the target, in bytes.
1581 char *target,
1594 * The pivot-to-target conversion uses a purely algorithmic converter
1604 * of the complete output even if it does not fit into the target buffer;
1607 * @param algorithmicType UConverterType constant identifying the desired target
1614 * @param target Pointer to the output buffer.
1615 * @param targetCapacity Capacity of the target, in bytes.
1635 char *target, int32_t targetCapacity,
1647 * The pivot-to-target conversion uses the cnv converter parameter.
1656 * of the complete output even if it does not fit into the target buffer;
1660 * from the UTF-16 pivot buffer to the target.
1666 * @param target Pointer to the output buffer.
1667 * @param targetCapacity Capacity of the target, in bytes.
1687 char *target, int32_t targetCapacity,
1922 * @param cnv The converter representing the target codepage.