Searched refs:view (Results 276 - 300 of 774) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebKit/wx/
H A DWebView.cpp524 if (!frame || !frame->view())
527 frame->view()->setTransparent(transparent);
536 if (!frame || !frame->view())
539 return frame->view()->isTransparent();
668 if (!frame || !frame->view())
687 frame->view()->updateLayoutAndStyleIfNeededRecursive();
688 frame->view()->paint(&gc, paintRect);
706 frame->view()->resize(event.GetSize());
707 frame->view()->adjustViewSize();
730 if (!frame || !frame->view())
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKPrintingView.h60 - (id)initWithFrameProxy:(WebKit::WebFrameProxy*)frame view:(NSView *)wkView;
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp551 if (m_mainFrame->coreFrame()->view())
552 m_mainFrame->coreFrame()->view()->updateLayoutAndStyleIfNeededRecursive();
568 frame->view()->resize(viewSize);
569 frame->view()->setNeedsLayout();
580 frame->view()->setActualVisibleContentRect(rect);
592 frame->view()->setDelegatesScrolling(false);
593 frame->view()->setUseFixedLayout(false);
594 frame->view()->setPaintsEntireContents(false);
596 frame->view()->setDelegatesScrolling(true);
597 frame->view()
1212 FrameView* view = coreFrame->view(); local
1598 FrameView* view = m_page->mainFrame()->view(); local
[all...]
/external/webkit/Tools/DumpRenderTree/qt/
H A DEventSenderQt.cpp71 m_page->view()->installEventFilter(this);
377 WebCore::WebViewGraphicsBased* view = qobject_cast<WebCore::WebViewGraphicsBased*>(m_page->view()); local
378 if (view)
379 sendEvent(view->graphicsView(), &ctxEvent);
382 sendEvent(m_page->view(), &ctxEvent);
541 sendEvent(m_page->view(), event);
556 postEvent(m_page->view(), ev);
572 QApplication::postEvent(m_page->view(), drtEvent);
583 if (watched != m_page->view())
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.h119 /* [in] */ IWebView *view,
126 /* [in] */ IWebView *view,
133 /* [in] */ IWebView *view,
162 /* [in] */ IWebView *view) { return E_NOTIMPL; }
118 ignoreWordInSpellDocument( IWebView *view, BSTR word) argument
132 checkGrammarOfString( IWebView *view, LPCTSTR text, int length, IEnumWebGrammarDetails **grammarDetails, int *badGrammarLocation, int *badGrammarLength) argument
161 closeSpellDocument( IWebView *view) argument
/external/webkit/Tools/MiniBrowser/qt/
H A DBrowserView.cpp59 QGraphicsWKView* BrowserView::view() const function in class:BrowserView
/external/webkit/Tools/MiniBrowser/win/
H A DBrowserWindow.h46 const BrowserView& view() const { return m_browserView; } function in class:BrowserWindow
/external/chromium/chrome/browser/tab_contents/
H A Dtab_contents_view_gtk.cc92 gtk_widget_set_name(expanded_, "chrome-tab-contents-view");
136 if (render_widget_host->view()) {
137 // During testing, the view will already be set up in most cases to the
138 // test view, so we don't want to clobber it with a real one. To verify that
140 // view twice), we check for the RVH Factory, which will be set when we're
143 return render_widget_host->view();
146 RenderWidgetHostViewGtk* view = local
148 view->InitAsChild();
149 gfx::NativeView content_view = view->native_view();
164 return view;
308 RenderWidgetHostView* view = NULL; local
[all...]
/external/chromium/chrome/browser/ui/cocoa/tabs/
H A Dtab_window_controller.h16 // This assumes that there will be a view in the nib, connected to
48 // view is the proper content area in the overlay
120 // Move a given tab view to the location of the current placeholder. If there is
127 - (void)moveTabView:(NSView*)view
140 // Return the view of the selected tab.
169 - (void)detachTabView:(NSView*)view;
/external/chromium/chrome/browser/ui/views/
H A Dbrowser_bubble.h10 #include "views/view.h"
19 // Class assumes that RTL related mirroring is done by the view.
41 // Note that the bubble will size itself to the preferred size of |view| plus
42 // insets of bubble border. |view| is the embedded view, |frame| is widget
48 BrowserBubble(views::View* view,
78 // The contained view.
79 views::View* view() const { return view_; } function in class:BrowserBubble
92 // Resize the bubble to fit the view.
118 // The view tha
[all...]
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_view_layout.h37 // Returns the minimum size of the browser view.
47 // Tests to see if the specified |point| (in nonclient view's coordinates)
56 virtual void ViewAdded(views::View* host, views::View* view);
57 virtual void ViewRemoved(views::View* host, views::View* view);
/external/llvm/lib/CodeGen/
H A DEdgeBundles.cpp24 ViewEdgeBundles("view-edge-bundles", cl::Hidden,
55 view();
72 /// view - Visualize the annotated bipartite CFG with Graphviz.
73 void EdgeBundles::view() const { function in class:EdgeBundles
/external/llvm/test/Bindings/Ocaml/
H A Dext_exc.ml7 * want the let _ bindings executed, see http://caml.inria.fr/mantis/view.php?id=4166 *)
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/XME/
H A Dxme.c79 CARD8 view; member in struct:__anon10548
88 CARD8 view; member in struct:__anon10549
309 int XiGMiscQueryResolutions(Display *dpy, int screen, int view, int *pactive, XiGMiscResolutionInfo **presolutions) argument
321 req->view = view;
353 void XiGMiscChangeResolution(Display *dpy, int screen, int view, int width, int height, int refresh) argument
363 req->view = view;
/external/v8/tools/
H A Dprofile_view.js41 * Builds a profile view for the specified call tree.
45 * of self weights for a bottom up view is needed.
70 var view = this.createView(head);
71 return view;
76 * Factory method for a profile view.
79 * @return {ProfileView} Profile view.
87 * Factory method for a profile view node.
95 * @param {ProfileView.Node} head Profile view head.
96 * @return {ProfileView.Node} Profile view node.
118 * Sorts the profile view usin
[all...]
/external/webkit/Source/WebCore/dom/
H A DWheelEvent.h41 float rawDeltaX, float rawDeltaY, Granularity granularity, PassRefPtr<AbstractView> view,
46 granularity, view, screenX, screenY, pageX, pageY,
40 create(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY, Granularity granularity, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
/external/webkit/Source/WebCore/platform/mac/
H A DScrollViewMac.mm166 NSView *view = documentView();
167 [view setNeedsDisplayInRect:rect];
169 [[view window] displayIfNeeded];
170 [[view window] flushWindowIfNeeded];
/external/webkit/Source/WebCore/plugins/qt/
H A DPluginContainerQt.cpp64 PluginContainerQt::PluginContainerQt(PluginView* view, QWidget* parent) argument
66 , m_pluginView(view)
/external/webkit/Source/WebKit/mac/Carbon/
H A DCarbonWindowAdapter.mm258 // but apparently when scrolling, the AppKit view system draws directly.
365 // Set the frame rectangle of the border view and this window from the Carbon window's structure region bounds.
376 // Set the content view's frame rect from the Carbon window's content region bounds.
425 // Make the window the first responder, so that no view is the key view.
436 // Now, if the view we're focusing is in a HIWebView, find the
442 NSView *view = (NSView *)firstResponder;
443 while (view) {
444 viewRef = [HIViewAdapter getHIViewForNSView:view];
447 view
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKView.cpp41 RefPtr<WebView> view = WebView::create(rect, toImpl(contextRef), toImpl(pageGroupRef), parentWindow); local
42 return toAPI(view.release().releaseRef());
/external/webkit/Tools/WebKitLauncher/
H A DWebKitNightlyEnablerSparkle.m54 NSView *view;
55 while ((view = [e nextObject])) {
56 if (![view isKindOfClass:[NSButton class]])
59 NSButton *button = (NSButton *)view;
/external/webkit/Source/WebCore/rendering/
H A DRenderLayer.cpp251 ASSERT(renderer()->view());
252 return renderer()->view()->compositor();
338 RenderView* view = renderer()->view(); local
339 ASSERT(view);
342 ASSERT(!view->layoutStateEnabled());
350 if (view && !view->printing()) {
490 RenderView* view = renderer->view(); local
1379 RenderView* view = renderer()->view(); local
1792 RenderView* view = renderer()->view(); local
1804 RenderView* view = renderer()->view(); local
1815 RenderView* view = renderer()->view(); local
1826 RenderView* view = renderer()->view(); local
1853 RenderView* view = renderer()->view(); local
2217 RenderView* view = renderer()->view(); local
2300 RenderView* view = renderer()->view(); local
3438 RenderView* view = renderer()->view(); local
3489 RenderView* view = renderer()->view(); local
3670 RenderView* view = renderer()->view(); local
4008 RenderView* view = renderer()->view(); local
4027 RenderView* view = renderer()->view(); local
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DEditorClientAndroid.cpp234 if (!frame || !frame->view())
236 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view());
242 if (!frame || !frame->view())
244 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view());
255 if (!frame || !frame->view())
257 WebViewCore* webViewCore = WebViewCore::getWebViewCore(frame->view());
/external/webkit/Source/WebKit/chromium/src/
H A DWebDevToolsAgentImpl.cpp85 static void inspectedViewClosed(WebViewImpl* view) argument
88 s_instance->m_frozenViews.remove(view);
115 WebViewImpl* view = WebViewImpl::fromPage(*it); local
116 m_frozenViews.add(view);
117 views.append(view);
118 view->setIgnoreInputEvents(true);
133 // The view was not closed during the dispatch.
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_view_single.c378 (sd->backing_store, 0, 0, sd->view.w, sd->view.h);
379 evas_object_move(clip, sd->view.x, sd->view.y);
381 w = sd->view.w;
382 h = sd->view.h;
485 Evas_Coord w = sd->view.w * scale;
486 Evas_Coord h = sd->view.h * scale;
491 if (sd->view.w > 0 && sd->view
[all...]

Completed in 548 milliseconds

<<11121314151617181920>>