Searched refs:otherRange (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/CF-855.17/
H A DCFArray.h674 @param otherRange The range within the otherArray from which to add
690 void CFArrayAppendArray(CFMutableArrayRef theArray, CFArrayRef otherArray, CFRange otherRange);
H A DCFArray.c1103 void CFArrayAppendArray(CFMutableArrayRef array, CFArrayRef otherArray, CFRange otherRange) { argument
1104 __CFArrayValidateRange(otherArray, otherRange, __PRETTY_FUNCTION__);
1106 for (CFIndex idx = otherRange.location; idx < otherRange.location + otherRange.length; idx++) {
H A DCFUniChar.c543 uint8_t otherRange = (isInverted ? (uint8_t)0 : (uint8_t)0xFF); local
552 *(((uint8_t *&)bitmap)++) = ((idx >= (0x20 / 8) && (idx < (0x80 / 8))) ? asciiRange : otherRange);
554 *((uint8_t *)bitmap++) = ((idx >= (0x20 / 8) && (idx < (0x80 / 8))) ? asciiRange : otherRange);
H A DCFString.c3566 CFRange otherRange; local
3569 otherRange.location = currentIndex = range.location;
3597 range.length += otherRange.location - range.location;
3601 otherRange = range;
3602 currentIndex = otherRange.location + otherRange.length;
3623 otherRange = _CFStringInlineBufferGetComposedRange(&stringBuffer, currentIndex, type, bmpBitmap, csetType);
3624 currentIndex = otherRange.location + otherRange.length;
3625 } while ((otherRange
[all...]

Completed in 125 milliseconds