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

/macosx-10.9.5/CF-855.17/
H A DCFString.c4122 void CFStringAppendCharacters(CFMutableStringRef str, const UniChar *chars, CFIndex appendedLength) { argument
4125 __CFAssertIsNotNegative(appendedLength);
4127 CF_OBJC_FUNCDISPATCHV(__kCFStringTypeID, void, (NSMutableString *)str, appendCharacters:chars length:(NSUInteger)appendedLength);
4133 __CFStringChangeSize(str, CFRangeMake(strLength, 0), appendedLength, true);
4134 memmove((UniChar *)__CFStrContents(str) + strLength, chars, appendedLength * sizeof(UniChar));
4138 for (idx = 0; isASCII && idx < appendedLength; idx++) isASCII = (chars[idx] < 0x80);
4139 __CFStringChangeSize(str, CFRangeMake(strLength, 0), appendedLength, !isASCII);
4141 memmove((UniChar *)__CFStrContents(str) + strLength, chars, appendedLength * sizeof(UniChar));
4144 for (idx = 0; idx < appendedLength; idx++) contents[idx] = (uint8_t)chars[idx];
4150 void __CFStringAppendBytes(CFMutableStringRef str, const char *cStr, CFIndex appendedLength, CFStringEncodin argument
[all...]
H A DForFoundationOnly.h225 CF_EXPORT void __CFStringAppendBytes(CFMutableStringRef str, const char *cStr, CFIndex appendedLength, CFStringEncoding encoding);

Completed in 299 milliseconds