/external/chromium/chrome/browser/extensions/ |
browser_action_test_util_gtk.cc | 18 GtkWidget* toolbar = local 22 if (toolbar) { 23 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); 36 GtkWidget* toolbar = local 39 if (toolbar) { 40 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar));
|
/external/chromium_org/chrome/browser/ui/gtk/extensions/ |
browser_action_test_util_gtk.cc | 19 GtkWidget* toolbar = local 23 if (toolbar) { 24 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); 37 GtkWidget* toolbar = local 40 if (toolbar) { 41 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar));
|
extension_installed_bubble_gtk.cc | 86 BrowserActionsToolbarGtk* toolbar = local 88 if (toolbar->animating()) 91 reference_widget = toolbar->GetBrowserActionWidget(bubble_.extension()); 100 reference_widget = gtk_widget_get_visible(toolbar->chevron()) ? 101 toolbar->chevron() : NULL;
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
browser_view_unittest.cc | 15 #include "chrome/browser/ui/views/toolbar/toolbar_view.h" 69 ToolbarView* toolbar = browser_view()->toolbar(); local 80 EXPECT_EQ(top_container, browser_view()->toolbar()->parent()); 99 EXPECT_EQ(0, toolbar->x()); 103 toolbar->y()); 105 EXPECT_EQ(toolbar->bounds().bottom(), contents_split->y()); 138 toolbar->height() - 142 EXPECT_EQ(toolbar->bounds().bottom(), contents_split->y());
|
immersive_mode_controller_ash_unittest.cc | 25 #include "chrome/browser/ui/views/toolbar/toolbar_view.h" 96 // Test the layout and visibility of the tabstrip, toolbar and TopContainerView 102 ToolbarView* toolbar = browser_view()->toolbar(); local 110 // By default, the tabstrip and toolbar should be visible. 112 EXPECT_TRUE(toolbar->visible()); 120 // style and hide the toolbar. 123 EXPECT_FALSE(toolbar->visible()); 133 // normal style and show the toolbar. 138 EXPECT_TRUE(toolbar->visible()) 291 ToolbarView* toolbar = browser_view()->toolbar(); local [all...] |
browser_view.h | 133 // Returns the apparent bounds of the toolbar, in BrowserView coordinates. 134 // These differ from |toolbar_.bounds()| in that they match where the toolbar 136 // horizontally. Note that this returns the bounds for the toolbar area. 151 // that it can be used as the source origin for seamlessly tiling the toolbar 156 // Container for the tabstrip, toolbar, etc. 162 // Accessor for the Toolbar. 163 ToolbarView* toolbar() { return toolbar_; } function in class:BrowserView 635 // The view that manages the tab strip, toolbar, and sometimes the bookmark 643 // The Toolbar containing the navigation buttons, menus and the address bar.
|
browser_view_layout_unittest.cc | 148 MockView* toolbar() { return toolbar_; } function in class:BrowserViewLayoutTest 228 EXPECT_EQ("0,0 800x0", toolbar()->bounds().ToString()); 233 // Turn on the toolbar, like in a pop-up window. 237 // Now the toolbar has bounds and other views shift down. 239 EXPECT_EQ("0,0 800x30", toolbar()->bounds().ToString());
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
WorkSpaceView.java | 50 protected JToolBar toolbar; field in class:WorkSpaceView 68 this.toolbar = new JToolBar(); 69 this.toolbar.setBorder(BorderFactory.createEmptyBorder()); 70 this.toolbar.setFloatable(false); 71 this.toolbar.setBorder(BorderFactory.createEmptyBorder()); 94 this.getContentPane().add(this.toolbar, BorderLayout.NORTH);
|
WorkSpaceController.java | 201 view.toolbar.add(new JButton(new CreateAction())); 202 view.toolbar.add(new JButton(new OpenAction())); 203 view.toolbar.add(new JButton(new SaveAction())); 204 view.toolbar.add(new JButton(new RunAction()));
|
TestCaseEditController.java | 50 private JToolBar toolbar; field in class:TestCaseEditController 191 /* TOOLBAR */ 192 toolbar = new JToolBar("Edit TestCases", JToolBar.VERTICAL); 193 toolbar.setFloatable(false); 194 toolbar.add(new AddTestCaseAction()); 195 toolbar.add(new RemoveTestCaseAction()); 201 view.add(toolbar, BorderLayout.WEST);
|
/external/chromium/chrome/browser/ui/gtk/extensions/ |
extension_installed_bubble_gtk.cc | 40 // the toolbar to finish animating to know where the item's final position 128 BrowserActionsToolbarGtk* toolbar = local 131 if (toolbar->animating() && animation_wait_retries_-- > 0) { 139 reference_widget = toolbar->GetBrowserActionWidget(extension_); 148 reference_widget = GTK_WIDGET_VISIBLE(toolbar->chevron()) ? 149 toolbar->chevron() : NULL;
|
/external/chromium/chrome/browser/ui/views/frame/ |
browser_view.h | 105 // Returns the apparent bounds of the toolbar, in BrowserView coordinates. 106 // These differ from |toolbar_.bounds()| in that they match where the toolbar 127 // that it can be used as the source origin for seamlessly tiling the toolbar 138 // Accessor for the Toolbar. 139 ToolbarView* toolbar() const { return toolbar_; } function in class:BrowserView 522 void SetToolbar(ToolbarView* toolbar); 582 // The Toolbar containing the navigation buttons, menus and the address bar.
|
/external/chromium_org/content/shell/browser/ |
shell_gtk.cc | 148 GtkWidget* toolbar = gtk_toolbar_new(); local 149 // Turn off the labels on the toolbar buttons. 150 gtk_toolbar_set_style(GTK_TOOLBAR(toolbar), GTK_TOOLBAR_ICONS); 155 gtk_toolbar_insert(GTK_TOOLBAR(toolbar), back_button_, -1 /* append */); 162 gtk_toolbar_insert(GTK_TOOLBAR(toolbar), forward_button_, -1 /* append */); 170 gtk_toolbar_insert(GTK_TOOLBAR(toolbar), reload_button_, -1 /* append */); 178 gtk_toolbar_insert(GTK_TOOLBAR(toolbar), stop_button_, -1 /* append */); 193 gtk_toolbar_insert(GTK_TOOLBAR(toolbar), tool_item, -1 /* append */); 204 gtk_toolbar_insert(GTK_TOOLBAR(toolbar), spinner_item_, -1 /* append */); 206 gtk_box_pack_start(GTK_BOX(vbox_), toolbar, FALSE, FALSE, 0) local [all...] |
/external/chromium/chrome/browser/automation/ |
automation_provider.cc | 897 ExtensionToolbarModel* toolbar = service->toolbar_model(); local 918 ExtensionToolbarModel* toolbar = service->toolbar_model(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiTreeBlock.java | 61 import org.eclipse.swt.widgets.ToolBar; 221 ToolBar toolbar = manager.createControl(section); local 222 section.setTextClient(toolbar); 774 // Pass. Not used, toolbar actions are defined by createSectionActions(). [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
DOMWindow.cpp | 690 BarProp* DOMWindow::toolbar() const function in class:WebCore::DOMWindow 696 m_toolbar = BarProp::create(m_frame, BarProp::Toolbar); [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
browser_window_gtk.cc | 121 // The thickness of the shadow around the toolbar+web content area. There are 122 // actually a couple pixels more that should overlap the toolbar and web 295 // We register first so that other views like the toolbar can use the 410 // Draw the shadow above the toolbar. Tabs on the tabstrip will draw over us. 446 // of pixels overlap the toolbar. We just crop it off on Linux. The top 447 // corners extend to the base of the toolbar (one pixel above the dividing 452 // The toolbar is shorter in location bar only mode so clip the image to the 453 // height of the toolbar + the amount of shadow above the toolbar. 477 // the sides down to the bottom of the toolbar 2076 GtkWidget* toolbar = toolbar_->widget(); local [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
browser_window_gtk.cc | 129 // The thickness of the shadow around the toolbar+web content area. There are 130 // actually a couple pixels more that should overlap the toolbar and web 247 // We register first so that other views like the toolbar can use the 375 // Draw the shadow above the toolbar. Tabs on the tabstrip will draw over us. 414 // of pixels overlap the toolbar. We just crop it off on Linux. The top 415 // corners extend to the base of the toolbar (one pixel above the dividing 420 // The toolbar is shorter in location bar only mode so clip the image to the 421 // height of the toolbar + the amount of shadow above the toolbar. 446 // the sides down to the bottom of the toolbar 2112 GtkWidget* toolbar = toolbar_->widget(); local [all...] |
/prebuilts/devtools/tools/lib/ |
ddms.jar | |
monkeyrunner.jar | |
org-eclipse-jface-3.6.2.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | |
org.eclipse.jface_3.6.1.M20100825-0800.jar | |
/prebuilts/tools/common/eclipse/ |
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar | |
org.eclipse.jface_3.4.2.M20090107-0800.jar | |