HomeSort by relevance Sort by last modified time
    Searched refs:dlg (Results 1 - 25 of 34) sorted by null

1 2

  /external/oprofile/gui/
oprof_start_main.cpp 20 oprof_start* dlg = new oprof_start(); local
22 a.setMainWidget(dlg);
24 dlg->show();
  /external/sonivox/jet_tools/JetCreator/
JetCreator.py 412 dlg = SegEdit(JetDefs.MAIN_ADDSEGTITLE, self.currentJetConfigFile)
415 dlg.je.ctrls[JetDefs.F_MIDIFILE].Append(filename)
417 dlg.je.ctrls[JetDefs.F_DLSFILE].Append(library)
419 result = dlg.ShowModal()
421 if len(dlg.lstReplicate) > 0:
422 if dlg.chkReplaceMatching:
423 self.jet_file.DeleteSegmentsMatchingPrefix(dlg.replicatePrefix)
425 for replicate in dlg.lstReplicate:
426 self.jet_file.AddSegment(replicate[0], dlg.GetValue(JetDefs.F_MIDIFILE),
429 SegmentOutputFile(dlg.GetValue(JetDefs.F_SEGNAME), self.currentJetConfigFile),
1416 dlg = JetOpen() variable
    [all...]
JetCtrls.py 261 dlg = wx.FileDialog(None, self.title, defDir, '', self.spec, wx.FD_OPEN)
262 ret = dlg.ShowModal()
264 IniSetValue(JetDefs.JETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, self.spec, str(FileJustPath(dlg.GetPath())))
265 val = dlg.GetPath()
272 dlg.Destroy()
328 dlg = wx.FileDialog(None, self.title, defDir, '', self.spec, wx.FD_OPEN)
329 ret = dlg.ShowModal()
331 IniSetValue(JetDefs.JETCREATOR_INI, JetDefs.INI_DEFAULTDIRS, self.spec, str(FileJustPath(dlg.GetPath())))
332 val = dlg.GetPath()
334 dlg.Destroy()
    [all...]
JetDialogs.py 549 dlg = JetReplicate("Replicate Segment")
550 dlg.SetValue(JetDefs.F_RPREPLACE, True)
551 dlg.SetName(self.GetValue(JetDefs.F_SEGNAME))
552 dlg.event_type = "SEGMENT"
553 dlg.event_max = self.je.ctrls[JetDefs.F_START].GetMaxMbt()
554 dlg.length = MbtDifference(ConvertStrTimeToTuple(self.GetValue(JetDefs.F_START)), ConvertStrTimeToTuple(self.GetValue(JetDefs.F_END)))
555 result = dlg.ShowModal()
557 self.replicatePrefix = dlg.GetValue(JetDefs.F_RPPREFIX)
558 self.lstReplicate = dlg.lstReplicate
559 self.chkReplaceMatching = dlg.GetValue(JetDefs.F_RPREPLACE)
980 dlg = JetReplicate("Replicate Event") variable in class:JetMove
999 dlg = SegEdit("Segments", JetDefs.UNTITLED_FILE) variable
1022 dlg = EventEdit("Event Edit", JetDefs.UNTITLED_FILE) variable
    [all...]
JetUtils.py 457 dlg = wx.MessageDialog(None,
462 dlg.ShowModal()
463 dlg.Destroy()
549 dlg = dImp.JetErrors("Jet Definition File Errors")
550 dlg.SetErrors(errors)
551 result = dlg.ShowModal()
552 dlg.Destroy()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java 286 ConfigEditDialog dlg = new ConfigEditDialog(parent.getShell(), null);
288 dlg.setDeviceName(selection.device.getName());
289 dlg.setXDpi(selection.device.getXDpi());
290 dlg.setYDpi(selection.device.getYDpi());
293 dlg.setConfigName(selection.config.getName());
294 dlg.setConfig(selection.config.getConfig());
297 if (dlg.open() == Window.OK) {
298 String deviceName = dlg.getDeviceName();
299 String configName = dlg.getConfigName();
301 dlg.getConfig(config)
    [all...]
  /external/chromium/chrome/browser/ui/views/
user_data_dir_dialog.cc 20 UserDataDirDialog* dlg = new UserDataDirDialog(user_data_dir); local
21 MessageLoopForUI::current()->Run(dlg);
22 return dlg->user_data_dir();
  /sdk/ddms/app/src/com/android/ddms/
StaticPortConfigDialog.java 171 StaticPortEditDialog dlg = new StaticPortEditDialog(mShell,
173 if (dlg.open()) {
175 String device = dlg.getDeviceSN();
176 String app = dlg.getAppName();
177 int port = dlg.getPortNumber();
195 StaticPortEditDialog dlg = new StaticPortEditDialog(mShell,
197 if (dlg.open()) {
199 String deviceName = dlg.getDeviceSN();
200 String app = dlg.getAppName();
201 int port = dlg.getPortNumber()
    [all...]
DeviceCommandDialog.java 351 FileDialog dlg = new FileDialog(shell, SWT.SAVE); local
354 dlg.setText("Save output...");
355 dlg.setFileName(defaultFileName());
356 dlg.setFilterPath(PrefsDialog.getStore().getString("lastTextSaveDir"));
357 dlg.setFilterNames(new String[] {
360 dlg.setFilterExtensions(new String[] {
364 fileName = dlg.open();
367 dlg.getFilterPath());
UIThread.java 716 StaticPortConfigDialog dlg = new StaticPortConfigDialog(shell);
717 dlg.open();
732 AboutDialog dlg = new AboutDialog(shell);
733 dlg.open();
829 ScreenShotDialog dlg = new ScreenShotDialog(shell);
830 dlg.open(mCurrentDevice);
853 DeviceCommandDialog dlg;
854 dlg = new DeviceCommandDialog("ps -x", "ps-x.txt", shell);
855 dlg.open(mCurrentDevice);
864 DeviceCommandDialog dlg
    [all...]
PrefsDialog.java 310 PreferenceDialog dlg = new PreferenceDialog(shell, prefMgr); local
311 dlg.setPreferenceStore(prefStore);
315 dlg.open();
329 //dlg.dispose();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ListViewTypeMenu.java 179 ResourceChooser dlg = new ResourceChooser(project, local
187 dlg.setSize(85, 10);
188 dlg.setInputValidator(validator);
193 dlg.setCurrentResource(layout);
196 int result = dlg.open();
200 String newType = dlg.getCurrentResource();
FragmentMenu.java 284 ResourceChooser dlg = new ResourceChooser(project, local
292 dlg.setSize(85, 10);
293 dlg.setInputValidator(validator);
298 dlg.setCurrentResource(layout);
301 int result = dlg.open();
305 String newType = dlg.getCurrentResource();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 208 ReferenceChooserDialog dlg = new ReferenceChooserDialog(
212 dlg.setPreviewHelper(new ResourcePreviewHelper(dlg, graphicalEditor));
214 dlg.setCurrentResource(currentValue);
216 if (dlg.open() == Window.OK) {
217 return dlg.getCurrentResource();
247 ResourceChooser dlg = new ResourceChooser(project, type, projectRepository,
249 dlg.setPreviewHelper(new ResourcePreviewHelper(dlg, graphicalEditor));
253 dlg.setSize(85, 10)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ScreenShotDialog.java 296 FileDialog dlg = new FileDialog(shell, SWT.SAVE); local
302 dlg.setText("Save image...");
303 dlg.setFileName(fileName);
309 dlg.setFilterPath(lastDir);
310 dlg.setFilterNames(new String[] {
313 dlg.setFilterExtensions(new String[] {
317 fileName = dlg.open();
  /external/webkit/Source/WebKit/wx/bindings/python/samples/
simple.py 121 dlg = wx.TextEntryDialog(self, "Open Location",
124 dlg.CentreOnParent()
126 if dlg.ShowModal() == wx.ID_OK:
127 self.current = dlg.GetValue()
130 dlg.Destroy()
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MainActivity.java 107 public void onClick(DialogInterface dlg, int whichButton) {
117 public void onClick(DialogInterface dlg, int whichButton) {}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiResourceAttributeNode.java 150 ResourceChooser dlg = new ResourceChooser(project, local
156 dlg.setCurrentResource(currentValue);
158 if (dlg.open() == Window.OK) {
159 return dlg.getCurrentResource();
162 ReferenceChooserDialog dlg = new ReferenceChooserDialog( local
167 dlg.setCurrentResource(currentValue);
169 if (dlg.open() == Window.OK) {
170 return dlg.getCurrentResource();
UiFlagAttributeNode.java 161 FlagSelectionDialog dlg = new FlagSelectionDialog( local
163 dlg.open();
164 Object[] result = dlg.getResult();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 183 SelectionDialog dlg = JavaUI.createPackageDialog(text.getShell(), local
185 dlg.setTitle("Select Android Package");
186 dlg.setMessage("Select the package for the Android project.");
189 if (dlg.open() == Window.OK) {
190 Object[] results = dlg.getResult();
UiClassAttributeNode.java 357 SelectionDialog dlg = JavaUI.createTypeDialog(text.getShell(),
364 dlg.setMessage(String.format("Select class name for element %1$s:",
366 if (dlg instanceof ITypeSelectionComponent) {
367 ((ITypeSelectionComponent)dlg).triggerSearch();
370 if (dlg.open() == Window.OK) {
371 Object[] results = dlg.getResult();
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogPanel.java 572 EditFilterDialog dlg = new EditFilterDialog(mFolders.getShell()); local
573 if (dlg.open()) {
576 LogFilter filter = dlg.getFilter();
643 EditFilterDialog dlg = new EditFilterDialog( local
645 if (dlg.open()) {
699 FileDialog dlg = new FileDialog(mParent.getShell(), SWT.SAVE); local
702 dlg.setText("Save log...");
703 dlg.setFileName("log.txt");
708 dlg.setFilterPath(defaultPath);
709 dlg.setFilterNames(new String[]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
MarginChooser.java 203 ResourceChooser dlg = new ResourceChooser(mProject, ResourceType.DIMEN, local
206 dlg.setCurrentResource(text.getText().trim());
207 if (dlg.open() == Window.OK) {
208 text.setText(dlg.getCurrentResource());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java 85 NewItemSelectionDialog dlg = new NewItemSelectionDialog( local
90 dlg.open();
91 Object[] results = dlg.getResult();
93 addElement(dlg.getChosenRootNode(), null, (ElementDescriptor) results[0],
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman1/
RemotePackagesPage.java 363 InputDialog dlg = new InputDialog(getShell(), title, msg, null, new IInputValidator() { local
393 if (dlg.open() == Window.OK) {
394 String url = dlg.getValue().trim();

Completed in 673 milliseconds

1 2