HomeSort by relevance Sort by last modified time
    Searched defs:Panel (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/inspector/front-end/
ConsolePanel.js 31 WebInspector.Panel.call(this, "console");
42 WebInspector.Panel.prototype.show.call(this);
64 WebInspector.Panel.prototype.hide.call(this);
86 WebInspector.ConsolePanel.prototype.__proto__ = WebInspector.Panel.prototype;
ExtensionPanel.js 35 WebInspector.Panel.call(this, id);
53 WebInspector.Panel.prototype.searchCanceled.apply(this, arguments);
59 WebInspector.Panel.prototype.performSearch.apply(this, arguments);
65 WebInspector.Panel.prototype.jumpToNextSearchResult.call(this);
71 WebInspector.Panel.prototype.jumpToPreviousSearchResult.call(this);
82 WebInspector.ExtensionPanel.prototype.__proto__ = WebInspector.Panel.prototype;
Panel.js 29 WebInspector.Panel = function(name)
33 this.element.addStyleClass("panel");
41 WebInspector.Panel.counterRightMargin = 25;
43 WebInspector.Panel.prototype = {
183 var panel = this;
195 if (panel._currentSearchChunkIntervalIdentifier === chunkIntervalIdentifier)
196 delete panel._currentSearchChunkIntervalIdentifier;
307 this.sidebarTree.panel = this;
424 WebInspector.Panel.prototype.__proto__ = WebInspector.View.prototype;
NetworkPanel.js 33 WebInspector.Panel.call(this, "network");
112 WebInspector.Panel.prototype.resize.call(this);
121 WebInspector.Panel.prototype.updateSidebarWidth.call(this, width);
627 WebInspector.Panel.prototype.show.call(this);
638 WebInspector.Panel.prototype.hide.call(this);
655 WebInspector.Panel.prototype.searchCanceled.call(this, startingNewSearch);
663 WebInspector.Panel.prototype.performSearch.call(this, query);
    [all...]
ElementsPanel.js 33 WebInspector.Panel.call(this, "elements");
44 this.treeOutline.panel = this;
50 if (this.panel.visible && WebInspector.currentFocusElement !== document.getElementById("search"))
53 this.panel.updateBreadcrumb(forceUpdate);
55 for (var pane in this.panel.sidebarPanes)
56 this.panel.sidebarPanes[pane].needsUpdate = true;
58 this.panel.updateStyles(true);
59 this.panel.updateMetrics();
60 this.panel.updateProperties();
61 this.panel.updateEventListeners()
    [all...]
ProfilesPanel.js 93 WebInspector.Panel.call(this, "profiles");
100 var panelEnablerHeading = WebInspector.UIString("You need to enable profiling before you can use the Profiles panel.");
121 this.welcomeView = new WebInspector.WelcomeView("profiles", WebInspector.UIString("Welcome to the Profiles panel"));
180 WebInspector.Panel.prototype.show.call(this);
207 WebInspector.Panel.prototype.reset.call(this);
613 WebInspector.Panel.prototype.searchCanceled.call(this, startingNewSearch);
795 WebInspector.ProfilesPanel.prototype.__proto__ = WebInspector.Panel.prototype;
861 this.treeOutline.panel.showProfile(this.profile);
866 this.treeOutline.panel._removeProfileHeader(this.profile);
ScriptsPanel.js 28 WebInspector.Panel.call(this, "scripts");
153 var panelEnablerHeading = WebInspector.UIString("You need to enable debugging before you can use the Scripts panel.");
232 WebInspector.Panel.prototype.show.call(this);
245 WebInspector.Panel.prototype.hide.call(this);
    [all...]
TimelinePanel.js 33 WebInspector.Panel.call(this, "timeline");
112 topPaneElement.id = "timeline-overview-panel";
311 // We are loading new main resource -> clear the panel. Check above is necessary since
399 WebInspector.Panel.prototype.setSidebarWidth.call(this, width);
443 WebInspector.Panel.prototype.show.call(this);
452 WebInspector.Panel.prototype.hide.call(this);
652 WebInspector.TimelinePanel.prototype.__proto__ = WebInspector.Panel.prototype;
    [all...]
ResourcesPanel.js 32 WebInspector.Panel.call(this, "resources");
99 WebInspector.Panel.prototype.show.call(this);
353 // Show XHRs in the network panel only.
744 WebInspector.Panel.prototype.searchCanceled.call(this, startingNewSearch);
763 WebInspector.Panel.prototype.performSearch.call(this, query);
806 WebInspector.ResourcesPanel.prototype.__proto__ = WebInspector.Panel.prototype;
    [all...]
AuditsPanel.js 33 WebInspector.Panel.call(this, "audits");
241 WebInspector.Panel.prototype.attach.call(this);
259 WebInspector.AuditsPanel.prototype.__proto__ = WebInspector.Panel.prototype;
  /external/chromium/chrome/browser/ui/panels/
panel.h 21 // - Do Panel specific platform independent processing and then invoke the
23 // Panel size is restricted to certain limits.
25 // other Panels. For example deleting a panel would rearrange other panels.
26 class Panel : public BrowserWindow {
28 virtual ~Panel();
30 // Returns the PanelManager associated with this panel.
130 // Construct a native panel BrowserWindow implementation for the specified
132 static BrowserWindow* CreateNativePanel(Browser* browser, Panel* panel);
140 // Panel can only be created using PanelManager::CreatePanel()
    [all...]
panel.cc 5 #include "chrome/browser/ui/panels/panel.h"
12 Panel::Panel(Browser* browser, const gfx::Rect& bounds)
18 Panel::~Panel() {
22 PanelManager* Panel::manager() const {
26 void Panel::Minimize() {
30 void Panel::Restore() {
34 void Panel::Show() {
38 void Panel::ShowInactive()
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
Panel.java 26 public abstract class Panel {
45 * Sets the focus to the proper control inside the panel.
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.cc 17 struct PanelScroller::Panel {
33 Panel* panel = new Panel; local
34 panel->header = new PanelScrollerHeader(this);
35 panel->header->set_title(ASCIIToUTF16("Email"));
36 panel->container = new PanelScrollerContainer(this, new views::View());
37 panels_.push_back(panel);
39 panel = new Panel;
    [all...]

Completed in 1279 milliseconds