Lines Matching refs:_completions
68 [_completions release];
126 int numberToShow = [_completions count];
140 float width = ceilf([[_completions objectAtIndex:i] sizeWithAttributes:attributes].width);
196 [_completions release];
197 _completions = [checker completionsForPartialWordRange:NSMakeRange(0, [prefixStr length]) inString:prefixStr language:nil inSpellDocumentWithTag:[_view spellCheckerDocumentTag]];
198 [_completions retain];
200 if (!_completions || [_completions count] == 0) {
202 } else if ([_completions count] == 1) {
203 [self _insertMatch:[_completions objectAtIndex:0]];
270 if (selectedRow < (int)[_completions count] - 1) {
303 ASSERT(selectedRow < (int)[_completions count]);
304 [self _insertMatch:[_completions objectAtIndex:selectedRow]];
315 return [_completions count];
320 return [_completions objectAtIndex:row];