Lines Matching defs:target
126 * assemble the target item name from the source item name, an ID
131 char *target, int32_t capacity,
144 // build the target string
152 fprintf(stderr, "icupkg/makeTargetName(%s) target item name length %ld too long\n",
158 memcpy(target, itemName, treeLength);
159 memcpy(target+treeLength, id, idLength);
160 memcpy(target+treeLength+idLength, suffix, suffixLength+1); // +1 includes the terminating NUL
167 char target[200];
168 makeTargetName(itemName, id, idLength, suffix, target, (int32_t)sizeof(target), pErrorCode);
170 check(context, itemName, target);
174 /* assemble the target item name from the item's parent item name */