Lines Matching defs:CFStringGetLength

1808     CFIndex replacementLength = CFStringGetLength(replacement);
1842 CFIndex replacementLength = CFStringGetLength(replacement);
1929 CFIndex CFStringGetLength(CFStringRef str) {
2105 length = CFStringGetLength(str);
2505 CFIndex str2Len = CFStringGetLength(string2);
2847 return CFStringCompareWithOptions(string, str2, CFRangeMake(0, CFStringGetLength(string)), options);
2852 CFIndex findStrLen = CFStringGetLength(stringToFind);
3341 if (CFStringFindWithOptions(string, stringToFind, CFRangeMake(0, CFStringGetLength(string)), compareOptions, &foundRange)) {
3349 return CFStringFindWithOptions(string, prefix, CFRangeMake(0, CFStringGetLength(string)), kCFCompareAnchored, NULL);
3353 return CFStringFindWithOptions(string, suffix, CFRangeMake(0, CFStringGetLength(string)), kCFCompareAnchored|kCFCompareBackwards, NULL);
3529 CFIndex length = CFStringGetLength(string);
3701 if ((rangeToSearch.location + rangeToSearch.length > CFStringGetLength(theString)) || (rangeToSearch.length == 0)) return false;
3881 numChars = CFStringGetLength(separatorString) * (stringCount - 1);
3884 numChars += CFStringGetLength(otherString);
3892 separatorNumByte = CFStringGetLength(separatorString) * (canBeEightbit ? sizeof(uint8_t) : sizeof(UniChar));
3900 CFStringGetCharacters(separatorString, CFRangeMake(0, CFStringGetLength(separatorString)), (UniChar *)bufPtr);
3913 CFIndex otherLength = CFStringGetLength(otherString);
3938 CFIndex length = CFStringGetLength(string);
3982 length = CFStringGetLength(string);
4053 CFStringInitInlineBuffer(str, &buf, CFRangeMake(0, CFStringGetLength(str)));
4064 CFStringInitInlineBuffer(str, &buf, CFRangeMake(0, CFStringGetLength(str)));
4346 padStringLength = CFStringGetLength(padString);
5076 CFIndex length = CFStringGetLength(theString);
5445 CFStringRef newPattern = CFStringCreateWithSubstring(NULL, pattern, CFRangeMake(1, CFStringGetLength(pattern)-1));
5491 if (spec->type == CFFormatLongType && hasPrecision && CFStringGetLength(localizedNumberString) < width) {
5498 CFStringPad(finalStr, CFSTR(" "), width - CFStringGetLength(localizedNumberString), 0);
5782 formatLen = CFStringGetLength(formatString);