Searched refs:newStartIndex (Results 1 - 1 of 1) sorted by path

/macosx-10.9.5/CF-855.17/
H A DCFString.c4378 CFIndex newStartIndex; local
4386 newStartIndex = 0;
4389 while (CFStringFindWithOptions(string, trimString, CFRangeMake(newStartIndex, length - newStartIndex), kCFCompareAnchored, &range)) {
4390 newStartIndex = range.location + range.length;
4393 if (newStartIndex < length) {
4397 length -= newStartIndex;
4399 while (CFStringFindWithOptions(string, trimString, CFRangeMake(newStartIndex, length), kCFCompareAnchored|kCFCompareBackwards, &range)) {
4400 length = range.location - newStartIndex;
4403 memmove(contents, contents + newStartIndex * charSiz
4411 CFIndex newStartIndex; local
[all...]

Completed in 210 milliseconds