Home | History | Annotate | Download | only in Plugins

Lines Matching full:_views

121     _views = [[NSMutableArray alloc] init];
133 [_views release];
165 if ([_views count] > 0)
166 LOG(Plugins, "starting WebKit plugins : %@", [_views description]);
168 int i, count = [_views count];
170 id aView = [_views objectAtIndex:i];
187 if ([_views count] > 0) {
188 LOG(Plugins, "stopping WebKit plugins: %@", [_views description]);
191 int i, count = [_views count];
193 [self stopOnePlugin:[_views objectAtIndex:i]];
205 if (![_views containsObject:view]) {
206 [_views addObject:view];
245 if ([_views containsObject:view]) {
257 [_views removeObject:view];
285 if ([_views count] > 0) {
286 LOG(Plugins, "destroying WebKit plugins: %@", [_views description]);
291 int i, count = [_views count];
293 id aView = [_views objectAtIndex:i];
304 [_views makeObjectsPerformSelector:@selector(removeFromSuperviewWithoutNeedingDisplay)];
305 [_views release];
306 _views = nil;