Searched defs:view (Results 226 - 250 of 369) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/editing/
H A DSpellingCorrectionController.cpp363 FrameView* view = m_frame->view(); local
364 return view ? view->contentsToWindow(IntRect(range->boundingRect())) : FloatRect();
/external/webkit/Source/WebCore/page/
H A DFrame.h110 FrameView* view() const;
295 inline FrameView* Frame::view() const function in class:WebCore::Frame
H A DPrintContext.cpp63 if (!m_frame->document() || !m_frame->view() || !m_frame->document()->renderer())
71 RenderView* view = toRenderView(m_frame->document()->renderer()); local
73 bool isHorizontal = view->style()->isHorizontalWritingMode();
79 pageWidth = view->docWidth();
83 pageHeight = view->docHeight();
106 if (!m_frame->document() || !m_frame->view() || !m_frame->document()->renderer())
109 RenderView* view = toRenderView(m_frame->document()->renderer());
111 IntRect docRect = view->documentRect();
116 bool isHorizontal = view->style()->isHorizontalWritingMode();
127 if (view
[all...]
/external/webkit/Source/WebCore/platform/
H A DScrollbar.cpp393 ScrollView* view = parent(); local
394 if (view && !rect.isEmpty() && !view->windowResizerRect().isEmpty()) {
395 IntRect resizerRect = view->convertFromContainingWindow(view->windowResizerRect());
414 if (view)
415 view->adjustScrollbarsAvoidingResizerCount(m_overlapsResizer ? 1 : -1);
/external/webkit/Source/WebCore/plugins/
H A Dnpapi.cpp35 // The plugin view is always the ndata of the instance,. Sometimes, plug-ins will call an instance-specific function
36 // with a NULL instance. To workaround this, call the last plug-in view that made a call to a plug-in.
37 // Currently, the current plug-in view is only set before NPP_New in PluginView::start.
109 PluginView* view = pluginViewForInstance(instance); local
111 if (!view)
114 return view->userAgent();
139 PluginView* view = pluginViewForInstance(instance); local
141 if (!view)
/external/webkit/Source/WebCore/rendering/
H A DRenderView.h68 // Repaint the view, and all composited layers that intersect the given absolute rectangle.
164 // Notifications that this view became visible in a window, or will be
274 LayoutStateMaintainer(RenderView* view, RenderBox* root, IntSize offset, bool disableState = false, int pageHeight = 0, bool pageHeightChanged = false, ColumnInfo* colInfo = 0) argument
275 : m_view(view)
285 LayoutStateMaintainer(RenderView* view) argument
286 : m_view(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/gtk/webkit/
H A Dwebkitwebinspector.cpp66 * g_signal_connect (G_OBJECT (inspector), "inspect-web-view", G_CALLBACK(create_gtk_window_around_it), NULL);
130 * WebKitWebInspector::inspect-web-view:
135 * to inspect a web view. The application which is interested in
147 webkit_web_inspector_signals[INSPECT_WEB_VIEW] = g_signal_new("inspect-web-view",
164 * #WebKitWebInspector::inspect-web-view.
227 * #WebKitWebInspector::inspect-web-view will be emmited again, when the user
265 * WebKitWebInspector:web-view:
272 g_param_spec_object("web-view",
429 * application, by handling the #WebKitWebInspector::inspect-web-view signal. This means
496 FrameView* view local
546 FrameView* view = frame->view(); local
[all...]
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.cpp193 HRESULT STDMETHODCALLTYPE DOMUIEvent::view( function in class:DOMUIEvent
209 /* [in] */ IDOMWindow* /*view*/,
354 /* [in] */ IDOMWindow* /*view*/,
468 /* [in] */ IDOMWindow* /*view*/,
722 /* [in] */ IDOMWindow* /*view*/,
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.cpp50 QGraphicsWKViewPrivate(QGraphicsWKView* view);
178 // find the view which has the focus:
350 QWidget* view = 0; local
355 view = views.at(i);
359 if (!view)
360 view = views.value(0, 0);
362 if (view)
363 menu->setParent(view, menu->windowFlags());
364 menu->exec(view->mapToGlobal(menu->pos()));
380 QGraphicsWKViewPrivate::QGraphicsWKViewPrivate(QGraphicsWKView* view) argument
[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/WebKitTestRunner/
H A DTestController.cpp82 PlatformWebView* view = static_cast<TestController*>(const_cast<void*>(clientInfo))->mainWebView(); local
83 return view->windowFrame();
88 PlatformWebView* view = static_cast<TestController*>(const_cast<void*>(clientInfo))->mainWebView(); local
89 view->setWindowFrame(frame);
94 PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo)); local
95 return view->windowFrame();
100 PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo)); local
101 view->setWindowFrame(frame);
125 const PlatformWebView* view = static_cast<const PlatformWebView*>(clientInfo); local
126 delete view;
131 PlatformWebView* view = new PlatformWebView(WKPageGetContext(oldPage), WKPageGetPageGroup(oldPage)); local
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DTestCaseEditController.java45 private JPanel view = new JPanel(); field in class:TestCaseEditController
198 view.setLayout(new BorderLayout());
199 view.setBorder(BorderFactory.createEmptyBorder());
200 view.setOpaque(false);
201 view.add(toolbar, BorderLayout.WEST);
202 view.add(scroll, BorderLayout.CENTER);
203 view.add(paneDetail, BorderLayout.EAST);
357 return view;
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_win.cc75 // This task enqueues a mouse event on the event loop, so that the view
79 MouseEventTask(views::View* view, argument
83 : view_(view), type_(type), point_(point), flags_(flags) {}
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_utils.cc329 gfx::NativeView view) {
343 views::NativeWidget::GetNativeWidgetForNativeView(view);
355 bookmark_pasteboard_helper_mac::StartDrag(profile, nodes, view);
327 DragBookmarks(Profile* profile, const std::vector<const BookmarkNode*>& nodes, gfx::NativeView view) argument
/external/chromium/chrome/browser/chromeos/login/
H A Dbackground_view.cc171 BackgroundView** view) {
177 *view = new BackgroundView();
178 (*view)->Init(background_url);
180 if ((*view)->ScreenSaverEnabled())
181 (*view)->ShowScreenSaver();
183 window->SetContentsView(*view);
185 (*view)->UpdateWindowType();
191 LoginUtils::Get()->SetBackgroundView(*view);
196 void BackgroundView::CreateModalPopup(views::WindowDelegate* view) { argument
198 GetNativeWindow(), gfx::Rect(), view);
168 CreateWindowContainingView( const gfx::Rect& bounds, const GURL& background_url, BackgroundView** view) argument
[all...]
H A Deula_view.cc103 // A simple LayoutManager that causes the associated view's one child to be
500 TpmInfoView* view = new TpmInfoView(&tpm_password_); local
501 view->Init();
504 view);
515 // view calls Layout().
H A Dnew_user_view.cc265 void NewUserView::AddChildView(View* view) { argument
268 if (view == languages_menubutton_) {
272 views::View::AddChildViewAt(view, languages_menubutton_order_);
273 } else if (view == sign_in_button_) {
277 views::View::AddChildViewAt(view, sign_in_button_order_);
279 views::View::AddChildView(view);
347 // Sets the bounds of the view, using x and y as the origin.
349 // of the view, unless force_width is true in which case it is always used.
352 views::View* view, int x, int y, int width, bool force_width) {
353 gfx::Size pref_size = view
351 setViewBounds( views::View* view, int x, int y, int width, bool force_width) argument
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dwm_overview_controller.cc369 RenderWidgetHostView* view = local
371 if (view && view->GetRenderWidgetHost() == current_renderer_host_) {
537 RenderWidgetHostView* view = local
539 if (view && view->GetRenderWidgetHost() == renderer) {
/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/views/notifications/
H A Dballoon_view.cc160 // because CloseNow on linux/views destroys the view hierachy
200 RenderWidgetHostView* view = html_contents_->render_view_host()->view(); local
201 if (view)
202 view->SetSize(contents_rect.size());
246 RenderWidgetHostView* view = html_contents_->render_view_host()->view(); local
247 if (view)
248 view->SetSize(contents_rect.size());
323 html_container_->SetContentsView(html_contents_->view());
[all...]
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dtab_contents_view_gtk.cc42 // Called when the content view gtk widget is tabbed to, or after the call to
115 // Make sure to remove any stored view we may still have in the ViewStorage.
117 // It is possible the view went away before us, so we only do this if the
118 // view is registered.
156 // We need to own the widget in order to attach/detach the native view
163 if (render_widget_host->view()) {
164 // During testing, the view will already be set up in most cases to the
165 // test view, so we don't want to clobber it with a real one. To verify that
167 // view twice), we check for the RVH Factory, which will be set when we're
170 return render_widget_host->view();
179 RenderWidgetHostViewGtk* view = local
[all...]
/external/chromium/chrome/browser/ui/views/tabs/
H A Dbase_tab_strip.cc531 views::View* view = GetEventHandlerForPoint(local_point); local
532 if (!view)
535 // Walk up the view hierarchy until we find a tab, or the TabStrip.
536 while (view && view != this && view->GetID() != VIEW_ID_TAB)
537 view = view->parent();
539 return view && view
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dmediaplayer_ui.cc83 // The handler for Javascript messages related to the "mediaplayer" view.
534 chromeos::PanelBrowserView* view = local
537 view->SetCreatorView(creatorview);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dsessionmessages.cc897 void WriteSessionView(const SessionView& view, XmlElements* elems) { argument
899 for (it = view.view_requests.begin(); it != view.view_requests.end(); it++) {

Completed in 1233 milliseconds

1234567891011>>