Lines Matching refs:_private
47 #define KEY(x) (_private->identifier ? [_private->identifier stringByAppendingString:(x)] : (x))
221 _private = [[WebPreferencesPrivate alloc] init];
222 _private->IBCreatorID = [[WebPreferences _IBCreatorID] retain];
230 _private->values = [[NSMutableDictionary alloc] init];
231 _private->identifier = [anIdentifier copy];
232 _private->automaticallyDetectsCacheModel = YES;
234 [[self class] _setInstance:self forIdentifier:_private->identifier];
247 _private = [[WebPreferencesPrivate alloc] init];
248 _private->IBCreatorID = [[WebPreferences _IBCreatorID] retain];
249 _private->automaticallyDetectsCacheModel = YES;
267 _private->identifier = [identifier copy];
269 _private->values = [values mutableCopy]; // ensure dictionary is mutable
271 LOG(Encoding, "Identifier = %@, Values = %@\n", _private->identifier, _private->values);
279 WebPreferences *instance = [[self class] _getInstanceForIdentifier:_private->identifier];
284 [[self class] _setInstance:self forIdentifier:_private->identifier];
293 [encoder encodeObject:_private->identifier forKey:@"Identifier"];
294 [encoder encodeObject:_private->values forKey:@"Values"];
295 LOG (Encoding, "Identifier = %@, Values = %@\n", _private->identifier, _private->values);
300 [encoder encodeObject:_private->identifier];
301 [encoder encodeObject:_private->values];
406 [_private release];
412 return _private->identifier;
418 id o = [_private->values objectForKey:_key];
438 [_private->values setObject:value forKey:_key];
439 if (_private->autosaves)
455 [_private->values _webkit_setInt:value forKey:_key];
456 if (_private->autosaves)
472 [_private->values _webkit_setFloat:value forKey:_key];
473 if (_private->autosaves)
488 [_private->values _webkit_setBool:value forKey:_key];
489 if (_private->autosaves)
505 [_private->values _webkit_setLongLong:value forKey:_key];
506 if (_private->autosaves)
522 [_private->values _webkit_setUnsignedLongLong:value forKey:_key];
523 if (_private->autosaves)
758 _private->autosaves = flag;
763 return _private->autosaves;
962 return _private->automaticallyDetectsCacheModel;
967 _private->automaticallyDetectsCacheModel = automaticallyDetectsCacheModel;
1434 ASSERT(_private->numWebViews);
1435 if (--_private->numWebViews == 0)
1444 ++_private->numWebViews;