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

/macosx-10.9.5/CF-855.17/
H A DCFString.c3773 static void __CFStringGetLineOrParagraphBounds(CFStringRef string, CFRange range, CFIndex *lineBeginIndex, CFIndex *lineEndIndex, CFIndex *contentsEndIndex, Boolean includeLineEndings) { argument
3783 if (lineBeginIndex) {
3809 *lineBeginIndex = start;
3850 void CFStringGetLineBounds(CFStringRef string, CFRange range, CFIndex *lineBeginIndex, CFIndex *lineEndIndex, CFIndex *contentsEndIndex) { argument
3851 CF_OBJC_FUNCDISPATCHV(__kCFStringTypeID, void, (NSString *)string, getLineStart:(NSUInteger *)lineBeginIndex end:(NSUInteger *)lineEndIndex contentsEnd:(NSUInteger *)contentsEndIndex forRange:NSMakeRange(range.location, range.length));
3852 __CFStringGetLineOrParagraphBounds(string, range, lineBeginIndex, lineEndIndex, contentsEndIndex, true);
H A DCFString.h504 lineBeginIndex: index of first character in line
507 Thus, lineEndIndex - lineBeginIndex is the number of chars in the line, including the line separators
508 contentsEndIndex - lineBeginIndex is the number of chars in the line w/out the line separators
511 void CFStringGetLineBounds(CFStringRef theString, CFRange range, CFIndex *lineBeginIndex, CFIndex *lineEndIndex, CFIndex *contentsEndIndex);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfstring.py240 lineBeginIndex, lineEndIndex, contentsEndIndex = CFStringGetLineBounds(
242 self.assertEquals(lineBeginIndex, 0)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfstring.py228 lineBeginIndex, lineEndIndex, contentsEndIndex = CFStringGetLineBounds(
230 self.assertEqual(lineBeginIndex, 0)

Completed in 419 milliseconds