Home | History | Annotate | Download | only in Framework

Lines Matching full:nil

34     if ( self != nil ) {
39 ptrBuffer[idx] = nil;
48 if ( self != nil ) {
53 ptrBuffer[idx] = nil;
85 if ( anObject == nil ) anObject = [NSNull null];
108 userInfo:nil];
109 return nil;
114 obj = nil;
121 if ( anObject == nil ) anObject = [NSNull null];
122 if ( anObject == nil ) {
123 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"Attempt to insert nil objectAtIndex" userInfo:nil];
126 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to insertObjectAtIndex past end" userInfo:nil];
144 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to insert removeObjectAtIndex past end" userInfo:nil];
160 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to removeLastObject from 0" userInfo:nil];
165 ptrBuffer[count] = nil;
172 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to removeAllObjects from 0" userInfo:nil];
180 ptrBuffer[i] = nil;
188 if ( obj == nil ) {
192 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to replace object past end" userInfo:nil];
226 // In either case, state->itemsPtr MUST be a valid array (non-nil). This sample takes approach #1, using stackbuf to store results.