Searched defs:view (Results 101 - 125 of 369) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage_p.h121 QGraphicsItem* view; member in class:QWKPagePrivate
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebPopupMenu.cpp97 void WebPopupMenu::show(const IntRect& rect, FrameView* view, int index) argument
110 IntRect pageCoordinates(view->contentsToWindow(rect.location()), rect.size());
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTextInputController.cpp231 WebView* view = getMainFrame() ? getMainFrame()->view() : 0; local
232 if (!view)
244 view->handleInputEvent(keyDown);
248 view->setComposition(text, underlines, 0, text.length());
/external/webkit/Tools/DumpRenderTree/gtk/
H A DTextInputController.cpp43 WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); local
44 if (!view)
64 DumpRenderTreeSupportGtk::setComposition(view, stringBuffer.get(), start, end);
71 WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); local
72 if (!view)
86 DumpRenderTreeSupportGtk::confirmComposition(view, stringBuffer.get());
93 WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); local
94 if (!view)
97 DumpRenderTreeSupportGtk::confirmComposition(view, 0);
103 WebKitWebView* view local
133 WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); local
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRunnerController.java62 private RunnerView view = new RunnerView(); field in class:RunnerController
94 return view;
98 view.initComponents();
103 view.tree.setModel(new RunnerTreeModel(suite));
104 view.tree.setCellRenderer(new RunnerTreeRenderer());
123 view.textArea.setText(result.toString());
H A DWorkSpaceController.java55 private final WorkSpaceView view = new WorkSpaceView(); field in class:WorkSpaceController
61 view.resultPane = (JPanel) runner.getView();
62 view.initComponents();
68 this.view.setTitle("gUnitEditor");
69 this.view.setVisible(true);
70 this.view.pack();
74 return view.paneEditor.getView();
78 this.view.tabEditors.addChangeListener(new TabChangeListener());
79 this.view.listRules.setListSelectionListener(new RuleListSelectionListener());
80 this.view
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractMapTest.java385 private void testNullsOnView(Collection<?> view) { argument
387 assertFalse(view.contains(null));
392 assertFalse(view.remove(null));
397 assertFalse(view.equals(setOfNull));
400 assertFalse(view.removeAll(setOfNull));
405 assertTrue(view.retainAll(setOfNull)); // destructive
/external/chromium/chrome/browser/automation/
H A Dtesting_automation_provider_views.cc15 #include "views/view.h"
22 // Helper class that waits until the focus has changed to a view other
23 // than the one with the provided view id.
129 views::View* view = root_view->GetViewByID(view_id); local
130 if (view) {
134 views::View::ConvertPointToScreen(view, &point);
136 views::View::ConvertPointToView(view, root_view, &point);
137 *bounds = view->GetContentsBounds();
/external/chromium/chrome/browser/chromeos/notifications/
H A Ddesktop_notifications_unittest.cc26 virtual void SetActiveView(BalloonViewImpl* view) {} argument
49 // Start with a normal balloon but mock out the view.
/external/chromium/chrome/browser/extensions/
H A Dextension_host.h39 // privileges available to extensions. It may have a view to be shown in the
49 // Enable DOM automation in created render view hosts.
57 void set_view(ExtensionView* view) { view_.reset(view); } argument
58 const ExtensionView* view() const { return view_.get(); } function in class:ExtensionHost
59 ExtensionView* view() { return view_.get(); } function in class:ExtensionHost
61 const ExtensionViewMac* view() const { return view_.get(); } function in class:ExtensionHost
62 ExtensionViewMac* view() { return view_.get(); } function in class:ExtensionHost
64 const ExtensionViewGtk* view() const { return view_.get(); } function in class:ExtensionHost
65 ExtensionViewGtk* view() { retur function in class:ExtensionHost
[all...]
/external/chromium/chrome/browser/
H A Dplatform_util_win.cc164 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { argument
165 return ::GetAncestor(view, GA_ROOT);
168 gfx::NativeView GetParent(gfx::NativeView view) { argument
169 return ::GetParent(view);
180 bool IsVisible(gfx::NativeView view) { argument
182 return ::IsWindowVisible(view) != 0;
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_popup_gtk.cc46 host_->view()->SetContainer(this);
123 host_->view()->native_view(),
148 ExtensionViewGtk* view,
153 view->render_view_host()->view()->SetSize(gfx::Size(width, height));
154 gtk_widget_set_size_request(view->native_view(), width, height);
172 return gfx::Rect(host_->view()->native_view()->allocation);
147 OnExtensionPreferredSizeChanged( ExtensionViewGtk* view, const gfx::Size& new_size) argument
/external/chromium/chrome/browser/ui/views/
H A Daccessible_pane_view.cc42 // Save the storage id to the last focused view. This would be used to request
43 // focus to the view when the traversal is ended.
62 // Set focus to the initial view. If it's a location bar, use a special
123 views::View* view = GetAncestorWithClassName(BrowserView::kViewClassName); local
124 if (view) {
125 BrowserView* browser_view = static_cast<BrowserView*>(view);
229 // directly focusing to a specific view (e.g., clicking on it).
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...]
H A Dchrome_views_delegate.cc120 views::View* view, ui::AccessibilityTypes::Event event_type) {
122 view, event_type);
119 NotifyAccessibilityEvent( views::View* view, ui::AccessibilityTypes::Event event_type) argument
H A Ddetachable_toolbar_view.cc27 views::View* view,
29 ui::ThemeProvider* tp = view->GetThemeProvider();
33 view->width(), view->height());
36 view->width(), view->height());
43 double* roundness, views::View* view) {
47 SkDoubleToScalar(view->width() - horizontal_padding - 0.5),
48 SkDoubleToScalar(view->height() - vertical_padding - 0.5));
55 DetachableToolbarView* view) {
25 PaintBackgroundAttachedMode( gfx::Canvas* canvas, views::View* view, const gfx::Point& background_origin) argument
40 CalculateContentArea( double animation_state, double horizontal_padding, double vertical_padding, SkRect* rect, double* roundness, views::View* view) argument
54 PaintHorizontalBorder(gfx::Canvas* canvas, DetachableToolbarView* view) argument
[all...]
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_instructions_view.cc42 View* view = GetChildViewAt(i); local
43 gfx::Size pref = view->GetPreferredSize();
44 int baseline = view->GetBaseline();
63 View* view = GetChildViewAt(i); local
64 gfx::Size pref = view->GetPreferredSize();
65 int baseline = view->GetBaseline();
72 view->SetBounds(x, y, view_width, pref.height());
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_popup.cc52 : BrowserBubble(host->view(),
64 host->view()->SetContainer(this);
71 // Listen for the containing view calling window.close();
102 host()->render_view_host()->view()->Focus();
110 lost_focus_to_child) // A child of this view got focus.
169 void ExtensionPopup::OnExtensionPreferredSizeChanged(ExtensionView* view) { argument
171 gfx::Size sz = view->GetPreferredSize();
172 view->SetBounds(view->x(), view
[all...]
H A Dextension_view.cc29 // This view needs to be focusable so it can act as the focused view for the
68 if (render_view_host()->view()) {
70 render_view_host()->view()->Show();
72 render_view_host()->view()->Hide();
80 RenderWidgetHostView* view = local
91 static_cast<RenderWidgetHostViewWin*>(view);
97 static_cast<RenderWidgetHostViewViews*>(view);
102 static_cast<RenderWidgetHostViewGtk*>(view);
109 host_->CreateRenderViewSoon(view);
[all...]
/external/chromium/chrome/browser/ui/views/infobars/
H A Dextension_infobar.cc33 // The horizontal margin between the menu and the Extension (HTML) view.
44 ExtensionView* extension_view = delegate->extension_host()->view();
54 GetDelegate()->extension_host()->view()->SetContainer(NULL);
66 GetDelegate()->extension_host()->view()->SetBounds(
84 AddChildView(extension_host->view());
109 void ExtensionInfoBar::OnExtensionMouseMove(ExtensionView* view) { argument
112 void ExtensionInfoBar::OnExtensionMouseLeave(ExtensionView* view) { argument
115 void ExtensionInfoBar::OnExtensionPreferredSizeChanged(ExtensionView* view) { argument
117 DCHECK_EQ(delegate->extension_host()->view(), view);
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Ddownloads_dom_handler.cc163 gfx::NativeView view = web_ui_->tab_contents()->GetNativeView(); local
164 download_util::DragDownload(file, icon, view);
/external/chromium/webkit/glue/
H A Ddom_operations.cc196 bool GetAllSavableResourceLinksForCurrentPage(WebView* view, argument
199 WebFrame* main_frame = view->mainFrame();
241 bool PauseAnimationAtTimeOnElementWithId(WebView* view, argument
245 WebFrame* web_frame = view->mainFrame();
262 bool PauseTransitionAtTimeOnElementWithId(WebView* view, argument
266 WebFrame* web_frame = view->mainFrame();
283 bool ElementDoesAutoCompleteForElementWithId(WebView* view, argument
285 WebFrame* web_frame = view->mainFrame();
298 int NumberOfActiveAnimations(WebView* view) { argument
299 WebFrame* web_frame = view
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseTriangularView.h69 EIGEN_STRONG_INLINE InnerIterator(const SparseTriangularView& view, Index outer) argument
70 : Base(view.nestedExpression(), outer), m_returnOne(false)
133 EIGEN_STRONG_INLINE ReverseInnerIterator(const SparseTriangularView& view, Index outer) argument
134 : Base(view.nestedExpression(), outer)
H A DSparseView.h61 InnerIterator(const SparseView& view, Index outer) : argument
62 IterBase(view.m_matrix, outer), m_view(view)
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc231 BView * view = SDL_Win->View(); local
232 view->AddChild(bview);

Completed in 559 milliseconds

1234567891011>>