Searched refs:curLength (Results 1 - 1 of 1) sorted by last modified time

/macosx-10.9.5/CF-855.17/
H A DCFString.c823 CFIndex curLength = curContents ? __CFStrLength2(str, curContents) : 0; local
828 newLength = curLength + insertLength - deleteRanges[0].length;
831 newLength = curLength + insertLength * numDeleteRanges;
875 Boolean allocNewBuffer = (newCapacity != curCapacity) || (curLength > 0 && !oldIsUnicode && newIsUnicode); /* We alloc new buffer if oldIsUnicode != newIsUnicode because the contents have to be copied */
901 rearrangeBlocks(newContentsBody, curLength, newCharSize, deleteRanges, numDeleteRanges, insertLength);
903 copyBlocks(curContentsBody, newContentsBody, curLength, oldIsUnicode, newIsUnicode, deleteRanges, numDeleteRanges, insertLength);
906 copyBlocks(curContentsBody, newContentsBody, curLength, oldIsUnicode, newIsUnicode, deleteRanges, numDeleteRanges, insertLength);

Completed in 157 milliseconds