Lines Matching full:superview
851 NSView *superview = [self superview];
852 if (!superview || ![self window])
856 [notificationCenter removeObserver:self name:NSViewFrameDidChangeNotification object:superview];
857 [notificationCenter removeObserver:self name:NSViewBoundsDidChangeNotification object:superview];
1169 NSPoint origin = [[self superview] bounds].origin;
1448 if ([[self superview] mouse:point inRect:[self frame]])
1583 NSPoint locationForHitTest = [[contentView superview] convertPoint:[event locationInWindow] fromView:nil];
2300 // this view can be removed from it's superview, even though
2312 // this view can be removed from it's superview, even though
2859 NSView *superview = [self superview];
2860 if (!superview || ![self window])
2864 [notificationCenter addObserver:self selector:@selector(_frameOrBoundsChanged) name:NSViewFrameDidChangeNotification object:superview];
2865 [notificationCenter addObserver:self selector:@selector(_frameOrBoundsChanged) name:NSViewBoundsDidChangeNotification object:superview];
2901 if ([self superview] != nil)
2905 if ([self superview] && [self _isUsingAcceleratedCompositing]) {
2922 // FIXME: Some of these calls may not work because this view may be already removed from it's superview.
2942 _private->lastScrollPosition = [[self superview] bounds].origin;
3161 ASSERT([[self superview] isKindOfClass:[WebClipView class]]);
3163 [(WebClipView *)[self superview] setAdditionalClip:rect];
3185 [(WebClipView *)[self superview] resetAdditionalClip];
3189 [(WebClipView *)[self superview] resetAdditionalClip];
3249 if (!([[self superview] isKindOfClass:[WebClipView class]]))
3252 WebClipView *clipView = (WebClipView *)[self superview];