/external/chromium/chrome/browser/chromeos/panels/ |
D | panel_scroller.cc | 33 Panel* panel = new Panel; in PanelScroller() local 34 panel->header = new PanelScrollerHeader(this); in PanelScroller() 35 panel->header->set_title(ASCIIToUTF16("Email")); in PanelScroller() 36 panel->container = new PanelScrollerContainer(this, new views::View()); in PanelScroller() 37 panels_.push_back(panel); in PanelScroller() 39 panel = new Panel; in PanelScroller() 40 panel->header = new PanelScrollerHeader(this); in PanelScroller() 41 panel->header->set_title(ASCIIToUTF16("Chat")); in PanelScroller() 42 panel->container = new PanelScrollerContainer(this, new views::View()); in PanelScroller() 43 panels_.push_back(panel); in PanelScroller() [all …]
|
/external/libvorbis/examples/ |
D | frameview.pl | 114 my $panel=new MainWindow(-class=>'AnalyzerPanel'); 115 my $X2name=$panel->Class; 117 $panel->optionAdd("$X2name.background", "#353535",20); 118 $panel->optionAdd("$X2name*highlightBackground", "#80c0d3",20); 119 $panel->optionAdd("$X2name.Panel.background", "#353535",20); 120 $panel->optionAdd("$X2name.Panel.foreground", "#4fc627",20); 121 $panel->optionAdd("$X2name.Panel.font", 123 $panel->optionAdd("$X2name*Statuslabel.font", 125 $panel->optionAdd("$X2name*Statuslabel.foreground", "#4fc627",20); 126 $panel->optionAdd("$X2name*Status.font", [all …]
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
D | StatusBarController.java | 38 private final JPanel panel = new JPanel(); field in StatusBarController 57 panel.setLayout(layout); in initComponents() 58 panel.add(labelText); in initComponents() 59 panel.add(progress); in initComponents() 60 panel.add(labRuleHint); in initComponents() 61 panel.add(labelRuleName); in initComponents() 62 panel.setOpaque(false); in initComponents() 63 panel.setBorder(javax.swing.BorderFactory.createEmptyBorder()); in initComponents() 80 return panel; in getView()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | SearchController.js | 44 updateSearchMatchesCount: function(matches, panel) argument 46 if (!panel) 47 panel = WebInspector.currentPanel; 49 panel.currentSearchMatches = matches; 51 if (panel === WebInspector.currentPanel) 122 panel = WebInspector.currentPanel; 123 if (panel.performSearch) { 128 panel.currentQuery = this._currentQuery; 129 panel.performSearch(this._currentQuery); 234 var panel = WebInspector.panels[panelName]; [all …]
|
D | Toolbar.js | 50 addPanel: function(panel) argument 52 this.element.appendChild(panel.toolbarItem); 138 WebInspector.Toolbar.createPanelToolbarItem = function(panel) argument 142 toolbarItem.panel = panel; 143 toolbarItem.addStyleClass(panel._panelName); 147 WebInspector.currentPanel = panel; 153 if ("toolbarItemLabel" in panel) 154 toolbarItem.createChild("div", "toolbar-label").textContent = panel.toolbarItemLabel; 156 if (panel === WebInspector.currentPanel) 209 …is._contentElement.appendChild(WebInspector.Toolbar.createPanelToolbarItem(toolbarItems[i].panel));
|
D | ExtensionServer.js | 188 var panel = new WebInspector.ExtensionPanel(id, message.title, message.icon); 189 this._clientObjects[id] = panel; 190 WebInspector.panels[id] = panel; 191 WebInspector.addPanel(panel); 193 var iframe = this.createClientIframe(panel.element, message.url); 200 var panel = WebInspector.panels[message.panel]; 201 if (!panel) 202 return this._status.E_NOTFOUND(message.panel); 203 if (!panel.sidebarElement || !panel.sidebarPanes) 208 panel.sidebarPanes[id] = sidebar; [all …]
|
D | ElementsPanel.js | 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(); 65 WebInspector.extensionServer.notifyObjectSelected(this.panel.name); [all …]
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/ |
D | AwtPanelsContext.java | 64 public void setInputSource(AwtPanel panel){ in setInputSource() argument 65 if (!panels.contains(panel)) in setInputSource() 68 inputSource = panel; in setInputSource() 69 mouseInput.setInputSource(panel); in setInputSource() 70 keyInput.setInputSource(panel); in setInputSource() 121 AwtPanel panel = new AwtPanel(paintMode); in createPanel() local 122 panels.add(panel); in createPanel() 123 return panel; in createPanel() 134 for (AwtPanel panel : panels){ in updateInThread() 135 if (panel.isActiveDrawing()){ in updateInThread()
|
/external/chromium/chrome/browser/ssl/ |
D | ssl_add_cert_handler_mac.mm | 48 - (void)sheetDidEnd:(SFCertificatePanel*)panel 51 [panel orderOut:self]; 52 [panel autorelease]; 67 // Create the cert panel, which will be released in my -sheetDidEnd: method. 68 SFCertificatePanel* panel = [[SFCertificatePanel alloc] init]; 69 [panel setDefaultButtonTitle:l10n_util::GetNSString(IDS_ADD_CERT_DIALOG_ADD)]; 70 [panel setAlternateButtonTitle:l10n_util::GetNSString(IDS_CANCEL)]; 75 // Open the cert panel as a sheet on the browser window. 76 [panel beginSheetForWindow:parentWindow 84 int returnCode = [panel runModalForCertificates:certs showGroup:NO]; [all …]
|
/external/chromium/chrome/browser/chromeos/notifications/ |
D | notification_browsertest.cc | 141 NotificationPanel* panel = GetNotificationPanel(); in IN_PROC_BROWSER_TEST_F() local 142 NotificationPanelTester* tester = panel->GetTester(); in IN_PROC_BROWSER_TEST_F() 180 NotificationPanel* panel = GetNotificationPanel(); in IN_PROC_BROWSER_TEST_F() local 181 NotificationPanelTester* tester = panel->GetTester(); in IN_PROC_BROWSER_TEST_F() 191 panel->OnMouseMotion(gfx::Point(10, 10)); in IN_PROC_BROWSER_TEST_F() 228 NotificationPanel* panel = GetNotificationPanel(); in IN_PROC_BROWSER_TEST_F() local 231 NotificationPanelTester* tester = panel->GetTester(); in IN_PROC_BROWSER_TEST_F() 265 NotificationPanel* panel = GetNotificationPanel(); in IN_PROC_BROWSER_TEST_F() local 266 NotificationPanelTester* tester = panel->GetTester(); in IN_PROC_BROWSER_TEST_F() 308 NotificationPanel* panel = GetNotificationPanel(); in IN_PROC_BROWSER_TEST_F() local [all …]
|
/external/chromium/chrome/browser/ui/panels/ |
D | panel_manager.cc | 81 Panel* panel = new Panel(browser, bounds); in CreatePanel() local 83 active_panels_.push_back(panel); in CreatePanel() 85 pending_panels_.push_back(panel); in CreatePanel() 87 return panel; in CreatePanel() 92 Panel* panel = pending_panels_.front(); in ProcessPending() local 93 gfx::Rect bounds = panel->bounds(); in ProcessPending() 96 active_panels_.push_back(panel); in ProcessPending() 102 void PanelManager::Remove(Panel* panel) { in Remove() argument 105 panels_pending_to_remove_.push_back(panel); in Remove() 109 DoRemove(panel); in Remove() [all …]
|
D | panel_manager.h | 36 void Remove(Panel* panel); 53 void StartDragging(Panel* panel); 70 void DoRemove(Panel* panel);
|
D | panel_browser_window_cocoa.mm | 6 #include "chrome/browser/ui/panels/panel.h" 8 BrowserWindow* Panel::CreateNativePanel(Browser* browser, Panel* panel) {
|
/external/webkit/Source/WebCore/html/shadow/ |
D | MediaControlRootElement.cpp | 79 RefPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(mediaElement); in create() local 85 panel->appendChild(rewindButton.release(), ec, true); in create() 91 panel->appendChild(playButton.release(), ec, true); in create() 97 panel->appendChild(returnToRealtimeButton.release(), ec, true); in create() 104 panel->appendChild(statusDisplay.release(), ec, true); in create() 130 panel->appendChild(timelineContainer.release(), ec, true); in create() 138 panel->appendChild(seekBackButton.release(), ec, true); in create() 145 panel->appendChild(seekForwardButton.release(), ec, true); in create() 153 panel->appendChild(toggleClosedCaptionsButton.release(), ec, true); in create() 161 panel->appendChild(fullScreenButton.release(), ec, true); in create() [all …]
|
/external/jmonkeyengine/engine/src/test/jme3test/awt/ |
D | TestAwtPanels.java | 25 private static AwtPanel panel, panel2; field in TestAwtPanels 28 private static void createWindowForPanel(AwtPanel panel, int location){ in createWindowForPanel() argument 31 frame.getContentPane().add(panel, BorderLayout.CENTER); in createWindowForPanel() 60 panel = ctx.createPanel(PaintMode.Accelerated); in main() 61 panel.setPreferredSize(new Dimension(400, 300)); in main() 62 ctx.setInputSource(panel); in main() 67 createWindowForPanel(panel, 300); in main() 84 panel.attachTo(true, viewPort); in simpleInitApp()
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | ssl_client_certificate_selector.mm | 30 ConstrainedSFChooseIdentityPanel(SFChooseIdentityPanel* panel, 36 set_sheet(panel); 54 // than the usual one. Also pass the panel through contextInfo argument 129 SFChooseIdentityPanel* panel = static_cast<SFChooseIdentityPanel*>(context); 133 NSUInteger index = [identities_ indexOfObject:(id)[panel identity]]; 146 // Now that the panel has closed, release it. Note that the autorelease is 147 // needed. After this callback returns, the panel is still accessed, so a 149 [panel autorelease]; 174 // Create and set up a system choose-identity panel. 175 SFChooseIdentityPanel* panel = [[SFChooseIdentityPanel alloc] init]; [all …]
|
D | shell_dialogs_mac.mm | 37 - (void)endedPanel:(NSSavePanel*)panel 42 - (BOOL)panel:(id)sender shouldShowFilename:(NSString *)filename; 194 // else we'll pass it in when we run the open panel 360 - (void)endedPanel:(NSSavePanel*)panel 382 paths.push_back(FilePath(base::SysNSStringToUTF8([panel filename]))); 384 NSView* accessoryView = [panel accessoryView]; 395 CHECK([panel isKindOfClass:[NSOpenPanel class]]); 396 NSArray* filenames = [static_cast<NSOpenPanel*>(panel) filenames]; 402 selectFileDialogImpl_->FileWasSelected(panel, 408 [panel release]; [all …]
|
/external/webkit/Source/WebKit/mac/Panels/ |
D | WebAuthenticationPanel.m | 58 [panel release]; 70 // remove all of the panel's remaining refs, which can cause a 73 [[panel retain] autorelease]; 78 [panel close]; 80 [[NSApplication sharedApplication] endSheet:panel returnCode:1]; 89 // remove all of the panel's remaining refs, which can cause a 92 [[panel retain] autorelease]; 94 [panel close]; 96 [[NSApplication sharedApplication] endSheet:panel returnCode:0]; 116 // Methods related to displaying the panel [all …]
|
D | WebPanelAuthenticationHandler.m | 124 …WebAuthenticationPanel *panel = [[WebAuthenticationPanel alloc] initWithCallback:self selector:@se… 126 [windowToPanel _webkit_setObject:panel forUncopiedKey:window]; 127 [panel release]; 130 [panel runAsModalDialogWithChallenge:challenge]; 132 [panel runAsSheetOnWindow:window withChallenge:challenge]; 140 WebAuthenticationPanel *panel = [windowToPanel objectForKey:window]; 141 [panel cancel:self];
|
/external/qemu/distrib/jpeg-6b/ |
D | makeproj.mac | 47 Set Preferences of panel "Target Settings" to {Target Name:"libjpeg"} 48 Set Preferences of panel "PPC Project" to {File Name:"libjpeg"} 49 Set Preferences of panel "Target Settings" to {Linker:"MacOS PPC Linker"} 50 Set Preferences of panel "PPC Project" to {Project Type:library} 51 Set Preferences of panel "C/C++ Compiler" to {ANSI Strict:true} 52 Set Preferences of panel "C/C++ Compiler" to {Enums Always Ints:true} 53 Set Preferences of panel "PPC Codegen" to {Struct Alignment:PowerPC} 54 Set Preferences of panel "PPC Linker" to {Generate SYM File:false} 112 Set Preferences of panel "Target Settings" to {Target Name:"cjpeg"} 113 Set Preferences of panel "PPC Project" to {File Name:"cjpeg"} [all …]
|
/external/jpeg/ |
D | makeproj.mac | 47 Set Preferences of panel "Target Settings" to {Target Name:"libjpeg"} 48 Set Preferences of panel "PPC Project" to {File Name:"libjpeg"} 49 Set Preferences of panel "Target Settings" to {Linker:"MacOS PPC Linker"} 50 Set Preferences of panel "PPC Project" to {Project Type:library} 51 Set Preferences of panel "C/C++ Compiler" to {ANSI Strict:true} 52 Set Preferences of panel "C/C++ Compiler" to {Enums Always Ints:true} 53 Set Preferences of panel "PPC Codegen" to {Struct Alignment:PowerPC} 54 Set Preferences of panel "PPC Linker" to {Generate SYM File:false} 112 Set Preferences of panel "Target Settings" to {Target Name:"cjpeg"} 113 Set Preferences of panel "PPC Project" to {File Name:"cjpeg"} [all …]
|
/external/webkit/Tools/WebKitLauncher/ |
D | WebKitNightlyEnablerSparkle.m | 49 …NSPanel *panel = NSGetInformationalAlertPanel([NSString stringWithFormat:@"Would you like to downl… 52 NSArray *subviews = [[panel contentView] subviews]; 64 [panel center]; 65 return panel; 68 // Sparkle's udpate alert panel looks odd with the release notes hidden, so we 69 // swap it out with a standard NSAlert-style panel instead. 72 NSPanel *panel = updateAlertPanel(updateItem, host); 73 [panel setDelegate:self]; 75 self = [self initWithWindow:panel];
|
/external/clang/test/Analysis/ |
D | NSPanel.m | 74 …NSPanel *panel = [[NSPanel alloc] initWithContentRect:NSMakeRect(0, 0, 200, 200) styleMask:NSBorde… 76 [panels addObject:panel]; 78 [panel release]; // no-warning 82 …NSPanel *panel = [[NSPanel alloc] initWithContentRect:NSMakeRect(0, 0, 200, 200) styleMask:NSBorde… 84 [panels addObject:panel];
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetAudition.py | 73 panel = wx.Panel(self, -1) 75 self.segList = JetListCtrl(panel) 82 self.queueList = JetListCtrl(panel) 86 self.trackList = JetTrackCtrl(panel) 92 self.btnMuteAll = wx.Button(panel, -1, JetDefs.BUT_MUTEALL) 93 self.btnUnMuteAll = wx.Button(panel, -1, JetDefs.BUT_MUTENONE) 94 self.btnMuteOrg = wx.Button(panel, -1, JetDefs.BUT_ORGMUTES) 104 self.btnQueue = wx.Button(panel, -1, JetDefs.BUT_QUEUE) 105 self.btnCancelNQueue = wx.Button(panel, -1, JetDefs.BUT_CANCELANDQUEUE) 114 self.btnQueueCancelCurrent = wx.Button(panel, -1, JetDefs.BUT_CANCELCURRENT) [all …]
|
/external/proguard/src/proguard/gui/splash/ |
D | SplashPanel.java | 226 SplashPanel panel = new SplashPanel(sprite, 0.5); in main() local 227 panel.setBackground(Color.white); in main() 229 frame.getContentPane().add(panel); in main() 233 panel.start(); in main()
|