Searched defs:view (Results 176 - 200 of 332) sorted by relevance

1234567891011>>

/external/webkit/Tools/DumpRenderTree/win/
H A DAccessibilityControllerWin.cpp89 COMPtr<IWebView> view; local
90 if (FAILED(frame->webView(&view)))
93 COMPtr<IWebViewPrivate> viewPrivate(Query, view);
H A DEditingDelegate.cpp374 /* [in] */ IWebView* view,
373 checkSpellingOfString( IWebView* view, LPCTSTR text, int length, int* misspellingLocation, int* misspellingLength) argument
/external/webkit/Tools/QtTestBrowser/
H A Dwebpage.cpp87 QObject* view = parent(); local
89 QVariant value = view->property("keyboardModifiers");
204 return loader.createWidget(classId, view());
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_unittest.cc141 TestingAutocompleteEditView view; local
144 AutocompleteEditModel model(&view, &controller, &profile);
/external/chromium/chrome/browser/chromeos/frame/
H A Dbrowser_view.cc77 views::View* view) {
78 ::BrowserViewLayout::ViewAdded(host, view);
79 switch (view->GetID()) {
81 status_area_ = static_cast<chromeos::StatusAreaView*>(view);
138 // considered title bar area of client view.
415 // Create a browser view for chromeos.
416 BrowserView* view; local
418 view = new chromeos::PanelBrowserView(browser);
420 view = new chromeos::BrowserView(browser);
421 BrowserFrame::Create(view, browse
76 ViewAdded(views::View* host, views::View* view) argument
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dexisting_user_controller.cc264 CaptchaView* view = local
266 view->Init();
267 view->set_delegate(this);
269 GetNativeWindow(), gfx::Rect(), view);
402 PasswordChangedView* view = new PasswordChangedView(this, false); local
405 view);
/external/chromium/chrome/browser/chromeos/notifications/
H A Dballoon_view.cc47 // Top, Right margin for notification control view.
55 // overlays on top of renderer view.
61 explicit NotificationControlView(BalloonViewImpl* view) argument
62 : balloon_view_(view),
95 // The control view will never be resized, so just layout once.
218 AddChildView(html_contents_->view());
259 html_contents_->view()->SetBounds(0, 0, size.width(), size.height());
261 RenderWidgetHostView* view = html_contents_->render_view_host()->view(); local
262 if (view)
347 RenderWidgetHostView* view = html_contents_->render_view_host()->view(); local
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_chrome_cookie_view.cc449 GtkChromeCookieView* view = GTK_CHROME_COOKIE_VIEW( local
451 BuildWidgets(view, editable_expiration);
452 g_signal_connect(view, "realize", G_CALLBACK(InitStyles), NULL);
453 return GTK_WIDGET(view);
/external/chromium/chrome/browser/ui/views/bubble/
H A Dbubble_border.cc198 void BubbleBorder::Paint(const views::View& view, gfx::Canvas* canvas) const { argument
216 const int bottom = view.height() - insets.bottom() + b_height;
218 const int right = view.width() - insets.right() + r_width;
228 arrow_offset = view.width() - arrow_offset - 1;
231 arrow_offset = view.height() - arrow_offset - 1;
426 void BubbleBackground::Paint(gfx::Canvas* canvas, views::View* view) const {
427 // The border of this view creates an anti-aliased round-rect region for the
436 gfx::Rect bounds(view->GetContentsBounds());
/external/chromium/chrome/browser/ui/views/download/
H A Ddownload_shelf_view.cc30 // Max number of download views we'll contain. Any time a view is added and
34 // Padding from left edge and first download view.
70 // Sets size->width() to view's preferred width + size->width().s
71 // Sets size->height() to the max of the view's preferred height and
73 void AdjustSize(views::View* view, gfx::Size* size) { argument
74 gfx::Size view_preferred = view->GetPreferredSize();
131 void DownloadShelfView::AddDownloadView(DownloadItemView* view) { argument
136 DCHECK(view);
137 download_views_.push_back(view);
138 AddChildView(view);
147 DownloadItemView* view = new DownloadItemView( local
163 RemoveDownloadView(View* view) argument
204 OpenedDownload(DownloadItemView* view) argument
420 SchedulePaintForDownloadItem(views::View* view) argument
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dfirst_run_bubble.cc49 // Base class for implementations of the client view which appears inside the
50 // first run bubble. It is a dialog-ish view, but is not a true dialog.
478 FirstRunBubbleViewBase* view = NULL; local
482 view = new FirstRunOEMBubbleView(bubble, profile);
485 view = new FirstRunBubbleView(bubble, profile);
488 view = new FirstRunMinimalBubbleView(bubble, profile);
493 bubble->set_view(view);
495 parent, position_relative_to, arrow_location, view, bubble);
496 bubble->GetFocusManager()->AddFocusChangeListener(view);
497 view
[all...]
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dtab_contents_view_touch.cc48 // Make sure to remove any stored view we may still have in the ViewStorage.
50 // It is possible the view went away before us, so we only do this if the
51 // view is registered.
75 if (render_widget_host->view()) {
76 // During testing, the view will already be set up in most cases to the
77 // test view, so we don't want to clobber it with a real one. To verify that
79 // view twice), we check for the RVH Factory, which will be set when we're
82 return render_widget_host->view();
91 RenderWidgetHostViewViews* view = local
93 AddChildView(view);
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGame.java21 import android.view.KeyEvent;
22 import android.view.MotionEvent;
23 import android.view.WindowManager;
483 public void setSurfaceView(GLSurfaceView view) { argument
484 mSurfaceView = view;
/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...]

Completed in 553 milliseconds

1234567891011>>