HomeSort by relevance Sort by last modified time
    Searched full:documentview (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/clang/test/SemaObjC/
conditional-expr-8.m 21 NSView <WebDocumentView> *documentView;
22 NSView *coordinateView = s ? documentView : m_webView;
  /external/webkit/Source/WebCore/platform/mac/
ScrollViewMac.mm 52 NSView *ScrollView::documentView() const
55 return [scrollView() documentView];
63 NSView *parentView = documentView();
122 if (NSView* documentView = this->documentView())
123 return enclosingIntRect([documentView bounds]).size();
133 LOG(Frames, "%p %@ at w %d h %d\n", documentView(), [(id)[documentView() class] className], w, h);
135 [documentView() setFrameSize:tempSize];
152 [documentView() scrollPoint:tempPoint]
    [all...]
WebCoreView.m 50 NSView *view = [self documentView];
  /external/webkit/Source/WebKit/mac/WebView/
WebDynamicScrollBarsView.mm 131 [[self documentView] setNeedsLayout:YES];
132 [[self documentView] layout];
222 NSView *documentView = [self documentView];
223 NSRect documentRect = [documentView bounds];
229 [documentView scrollPoint:NSMakePoint(_private->scrollPositionExcludingOrigin.x + documentRect.origin.x, _private->scrollPositionExcludingOrigin.y + documentRect.origin.y)];
237 NSView *documentView = [self documentView];
242 if (!_private->suppressLayout && !_private->suppressScrollers && [documentView isKindOfClass:[WebHTMLView class]]) {
243 WebHTMLView* htmlView = (WebHTMLView*)documentView;
    [all...]
WebFrameView.mm 143 bool makeNewViewFirstResponder = [firstResponder isKindOfClass:[NSView class]] && [(NSView *)firstResponder isDescendantOf:[sv documentView]];
162 NSView <WebDocumentView> *documentView;
165 // same class as the desired documentView, then use it as the documentView instead
169 documentView = (NSView <WebDocumentView> *)[dataSourceRepresentation retain];
171 documentView = [[viewClass alloc] initWithFrame:[self bounds]];
173 documentView = nil;
175 [self _setDocumentView:documentView];
176 [documentView release];
178 return documentView;
    [all...]
WebFrame.mm 371 id documentView = [[webFrame frameView] documentView];
372 if ([documentView respondsToSelector:@selector(setDrawsBackground:)])
373 [documentView setDrawsBackground:drawsBackground];
374 if ([documentView respondsToSelector:@selector(setBackgroundColor:)])
375 [documentView setBackgroundColor:backgroundColor];
419 id documentView = [_private->webFrameView documentView];
422 if ([documentView isKindOfClass:[WebHTMLView class]])
426 if ([documentView conformsToProtocol:@protocol(WebDocumentText)]
    [all...]
WebFrameView.h 54 @method documentView
58 - (NSView <WebDocumentView> *)documentView;
WebViewEventHandling.mm 231 id documentView = [[[self _selectedOrMainFrame] frameView] documentView];
232 if ([documentView isKindOfClass:[WebHTMLView class]])
233 [documentView _setToolTip:toolTip];
WebView.mm     [all...]
WebPDFView.mm 278 NSView *PDFDocumentView = [PDFSubview documentView];
406 NSView *documentView = [PDFSubview documentView];
407 if (documentView) {
408 [documentView setNextKeyView:aView];
410 // We need to make the documentView be the next view in the keyview loop.
416 [super setNextKeyView: aView ? documentView : nil];
762 NSView *realDocView = [PDFSubview documentView];
773 NSView *realDocView = [PDFSubview documentView];
774 [[[realDocView enclosingScrollView] documentView] scrollPoint:p]
    [all...]
WebPDFRepresentation.mm 125 WebPDFView *view = (WebPDFView *)[[[dataSource webFrame] frameView] documentView];
  /packages/apps/Mms/src/org/w3c/dom/views/
AbstractView.java 22 * The source <code>DocumentView</code> of which this is an
25 public DocumentView getDocument();
DocumentView.java 16 * The <code>DocumentView</code> interface is implemented by
23 public interface DocumentView {
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFrameView.idl 56 @method documentView
59 - (NSView <WebDocumentView> *)documentView;
61 HRESULT documentView([out, retval] IWebDocumentView** view);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.mm 632 ? [[[m_webView mainFrame] frameView] documentView] : m_webView;
637 NSView *documentView = [clipView documentView];
638 [documentView scrollRectToVisible:[documentView convertRect:rect fromView:coordinateView]];
747 NSView *documentView = [[kit(node->document()->frame()) frameView] documentView];
748 if (![documentView isKindOfClass:[WebHTMLView class]])
751 WebHTMLView *webHTMLView = (WebHTMLView *)documentView;
765 NSView *documentView = [[kit(node->document()->frame()) frameView] documentView]
    [all...]
WebDragClient.mm 63 return (WebHTMLView*)[[kit(frame->page()->mainFrame()) frameView] documentView];
94 RetainPtr<WebHTMLView> htmlView = (WebHTMLView*)[[kit(frame) frameView] documentView];
WebFrameLoaderClient.mm 240 NSView <WebDocumentView> *view = [m_webFrame->_private->webFrameView documentView];
246 NSView <WebDocumentView> *view = [m_webFrame->_private->webFrameView documentView];
256 NSView <WebDocumentView> *thisDocumentView = [thisView documentView];
644 ASSERT([m_webFrame->_private->webFrameView documentView] != nil || ![getWebView(m_webFrame.get()) _usesDocumentViews]);
    [all...]
  /external/webkit/Source/WebCore/platform/android/
ScrollViewAndroid.cpp 42 WebKit's WebFrameView documentView and our NSScrollView subclass.
46 WebCoreFrameView. The WebCoreFrameView's documentView will also be
47 the scroll view's documentView.
49 The WebCoreFrameView's size is the frame size. The WebCoreFrameView's documentView
  /external/webkit/Tools/DumpRenderTree/mac/
PixelDumpSupportMac.mm 255 NSView *documentView = [[mainFrame frameView] documentView];
256 ASSERT([documentView conformsToProtocol:@protocol(WebDocumentSelection)]);
257 NSRect rect = [documentView convertRect:[(id <WebDocumentSelection>)documentView selectionRect] fromView:nil];
AccessibilityControllerMac.mm 47 id accessibilityObject = [[[mainFrame frameView] documentView] accessibilityHitTest:NSMakePoint(x, y)];
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultContextMenuDelegate.mm 149 ASSERT([[[webFrame frameView] documentView] conformsToProtocol:@protocol(WebDocumentText)]);
153 // be better not to include it in the menu if the documentView isn't a WebHTMLView, but that could break
161 NSString *selectedString = [(id <WebDocumentText>)[[webFrame frameView] documentView] selectedString];
  /external/webkit/Source/WebKit/mac/WebInspector/
WebNodeHighlighter.mm 60 NSView *view = [[[[[_inspectedWebView mainFrame] frameView] documentView] enclosingScrollView] contentView];
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebTextInputWindowController.m 70 scrollView.documentView = _inputTextView;
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginDatabase.mm 362 NSView <WebDocumentView> *documentView = [[webFrame frameView] documentView];
363 if ([documentView isKindOfClass:[WebHTMLView class]]) {
364 NSArray *subviews = [documentView subviews];
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKTextInputWindowController.mm 69 scrollView.documentView = _inputTextView;

Completed in 1035 milliseconds

1 2 3