Home | History | Annotate | Download | only in Plugins

Lines Matching refs:_views

127     _views = [[NSMutableArray alloc] init];
139 [_views release];
174 if ([_views count] > 0)
175 LOG(Plugins, "starting WebKit plugins : %@", [_views description]);
177 int count = [_views count];
179 id aView = [_views objectAtIndex:i];
196 if ([_views count] > 0) {
197 LOG(Plugins, "stopping WebKit plugins: %@", [_views description]);
200 int viewsCount = [_views count];
202 [self stopOnePlugin:[_views objectAtIndex:i]];
235 if (![_views containsObject:view]) {
236 [_views addObject:view];
284 if ([_views containsObject:view] || [_viewsNotInDocument containsObject:view]) {
286 if ([_views containsObject:view]) {
299 [_views removeObject:view];
330 if ([_views count] > 0) {
331 LOG(Plugins, "destroying WebKit plugins: %@", [_views description]);
336 int viewsCount = [_views count];
338 id aView = [_views objectAtIndex:i];
356 [_views makeObjectsPerformSelector:@selector(removeFromSuperviewWithoutNeedingDisplay)];
357 [_views release];
358 _views = nil;