/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/ |
D | DevTreeProjectProvider.java | 98 ListDialog dlg = new ListDialog(window.getShell()); in selectProject() local 99 dlg.setMessage("Select Project"); in selectProject() 100 dlg.setInput(devTreeProjects); in selectProject() 101 dlg.setContentProvider(new IStructuredContentProvider() { in selectProject() 115 dlg.setLabelProvider(new LabelProvider() { in selectProject() 121 dlg.setHelpAvailable(false); in selectProject() 123 if (dlg.open() == Window.OK) { in selectProject() 124 Object[] selectedMatches = dlg.getResult(); in selectProject()
|
/sdk/find_java2/src/ |
D | WinLauncher2App.cpp | 122 CFindJava2Dlg dlg; in InitInstance() local 123 dlg.setJavaFinder(&javaFinder); in InitInstance() 124 m_pMainWnd = &dlg; in InitInstance() 125 INT_PTR nResponse = dlg.DoModal(); in InitInstance() 129 javaPath = dlg.getSelectedPath(); in InitInstance()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/ |
D | StaticPortConfigDialog.java | 173 StaticPortEditDialog dlg = new StaticPortEditDialog(mShell, in createUI() 175 if (dlg.open()) { in createUI() 177 String device = dlg.getDeviceSN(); in createUI() 178 String app = dlg.getAppName(); in createUI() 179 int port = dlg.getPortNumber(); in createUI() 197 StaticPortEditDialog dlg = new StaticPortEditDialog(mShell, in createUI() 199 if (dlg.open()) { in createUI() 201 String deviceName = dlg.getDeviceSN(); in createUI() 202 String app = dlg.getAppName(); in createUI() 203 int port = dlg.getPortNumber(); in createUI()
|
/sdk/find_java2/FindJava2/ |
D | FindJava2.cpp | 135 CFindJava2Dlg dlg; in _tmain() local 136 dlg.setJavaFinder(&javaFinder); in _tmain() 137 INT_PTR nResponse = dlg.DoModal(); in _tmain() 141 javaPath = dlg.getSelectedPath(); in _tmain()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/handlers/ |
D | StaticPortConfigHandler.java | 29 StaticPortConfigDialog dlg = new StaticPortConfigDialog(HandlerUtil.getActiveShell(event)); in execute() local 30 dlg.open(); in execute()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
D | DeviceViewAction.java | 58 GLTraceOptionsDialog dlg = new GLTraceOptionsDialog(shell, false, in run() local 60 if (dlg.open() != Window.OK) { in run() 88 TraceOptions traceOptions = dlg.getTraceOptions(); in run()
|
D | CollectTraceAction.java | 99 GLTraceOptionsDialog dlg = new GLTraceOptionsDialog(shell); in connectToDevice() local 100 if (dlg.open() != Window.OK) { in connectToDevice() 104 TraceOptions traceOptions = dlg.getTraceOptions(); in connectToDevice() 267 GLTraceCollectorDialog dlg = new GLTraceCollectorDialog(shell, in startTracing() local 271 dlg.open(); in startTracing()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
D | SourceRevealer.java | 334 ListDialog dlg = new ListDialog(window.getShell()); in getMatchToDisplay() local 335 dlg.setMessage("Multiple files match search: " + searchTerm); in getMatchToDisplay() 336 dlg.setTitle("Select file to open"); in getMatchToDisplay() 337 dlg.setInput(matches); in getMatchToDisplay() 338 dlg.setContentProvider(new IStructuredContentProvider() { in getMatchToDisplay() 352 dlg.setLabelProvider(new LabelProvider() { in getMatchToDisplay() 361 dlg.setInitialSelections(new Object[] { matches.get(0) }); in getMatchToDisplay() 362 dlg.setHelpAvailable(false); in getMatchToDisplay() 364 if (dlg.open() == Window.OK) { in getMatchToDisplay() 365 Object[] selectedMatches = dlg.getResult(); in getMatchToDisplay()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
D | LogCatMonitor.java | 254 LogCatMonitorDialog dlg = new LogCatMonitorDialog(shell); in focusLogCatView() 255 int r = dlg.open(); in focusLogCatView() 259 mPrefStore.setValue(AUTO_MONITOR_PREFKEY, dlg.shouldMonitor()); in focusLogCatView() 260 mPrefStore.setValue(AUTO_MONITOR_LOGLEVEL, dlg.getMinimumPriority()); in focusLogCatView() 262 return r == Window.OK && dlg.shouldMonitor(); in focusLogCatView()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ |
D | SdkLocationChooserDialog.java | 82 DirectoryDialog dlg = new DirectoryDialog(getShell(), SWT.OPEN); in createDialogArea() 83 dlg.setText("Android SDK location"); in createDialogArea() 84 String dir = dlg.open(); in createDialogArea()
|
D | MonitorApplication.java | 172 SdkLocationChooserDialog dlg = new SdkLocationChooserDialog(shell); in getSdkLocationFromUser() local 173 if (dlg.open() == Window.OK) { in getSdkLocationFromUser() 174 return dlg.getPath(); in getSdkLocationFromUser()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/ |
D | UiPackageAttributeNode.java | 185 SelectionDialog dlg = JavaUI.createPackageDialog(text.getShell(), in doBrowseClick() local 187 dlg.setTitle("Select Android Package"); in doBrowseClick() 188 dlg.setMessage("Select the package for the Android project."); in doBrowseClick() 191 if (dlg.open() == Window.OK) { in doBrowseClick() 192 Object[] results = dlg.getResult(); in doBrowseClick()
|
D | UiClassAttributeNode.java | 364 SelectionDialog dlg = JavaUI.createTypeDialog(text.getShell(), 371 dlg.setMessage(String.format("Select class name for element %1$s:", 373 if (dlg instanceof ITypeSelectionComponent) { 374 ((ITypeSelectionComponent)dlg).triggerSearch(); 377 if (dlg.open() == Window.OK) { 378 Object[] results = dlg.getResult();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
D | UiResourceAttributeNode.java | 169 ResourceChooser dlg = ResourceChooser.create(project, mType, data, shell) in showDialog() local 171 if (dlg.open() == Window.OK) { in showDialog() 172 return dlg.getCurrentResource(); in showDialog() 175 ReferenceChooserDialog dlg = new ReferenceChooserDialog( in showDialog() local 180 dlg.setCurrentResource(currentValue); in showDialog() 182 if (dlg.open() == Window.OK) { in showDialog() 183 return dlg.getCurrentResource(); in showDialog()
|
D | UiFlagAttributeNode.java | 161 FlagSelectionDialog dlg = new FlagSelectionDialog( in showDialog() local 163 dlg.open(); in showDialog() 164 Object[] result = dlg.getResult(); in showDialog()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | ListViewTypeMenu.java | 171 ResourceChooser dlg = ResourceChooser.create(editor, ResourceType.LAYOUT) in run() local 175 int result = dlg.open(); in run() 179 String newType = dlg.getCurrentResource(); in run()
|
D | FragmentMenu.java | 291 ResourceChooser dlg = ResourceChooser.create(editor, ResourceType.LAYOUT) in run() local 295 int result = dlg.open(); in run() 299 String newType = dlg.getCurrentResource(); in run()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
D | UiActions.java | 86 NewItemSelectionDialog dlg = new NewItemSelectionDialog( in doAdd() local 91 dlg.open(); in doAdd() 92 Object[] results = dlg.getResult(); in doAdd() 94 addElement(dlg.getChosenRootNode(), null, (ElementDescriptor) results[0], in doAdd()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
D | DeviceView.java | 330 ScreenShotDialog dlg = new ScreenShotDialog( in createPartControl() 332 dlg.open(mDeviceList.getSelectedDevice()); in createPartControl() 591 final ISystraceOptionsDialog dlg; in launchSystrace() local 593 dlg = new SystraceOptionsDialogV1(parentShell); in launchSystrace() 603 dlg = new SystraceOptionsDialogV2(parentShell, detector.getTags(), apps); in launchSystrace() 606 if (dlg.open() != SystraceOptionsDialogV1.OK) { in launchSystrace() 610 final ISystraceOptions options = dlg.getSystraceOptions(); in launchSystrace() 681 Files.write(html.getBytes(), new File(dlg.getTraceFilePath())); in launchSystrace()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
D | XmlPropertyEditor.java | 472 ReferenceChooserDialog dlg = new ReferenceChooserDialog( in openDialog() local 476 dlg.setPreviewHelper(new ResourcePreviewHelper(dlg, graphicalEditor)); in openDialog() 479 dlg.setCurrentResource(currentValue); in openDialog() 481 if (dlg.open() == Window.OK) { in openDialog() 482 String resource = dlg.getCurrentResource(); in openDialog()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
D | ClientRulesEngine.java | 342 ReferenceChooserDialog dlg = new ReferenceChooserDialog( 346 dlg.setPreviewHelper(new ResourcePreviewHelper(dlg, graphicalEditor)); 348 dlg.setCurrentResource(currentValue); 350 if (dlg.open() == Window.OK) { 351 return dlg.getCurrentResource();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
D | ConfigureAssetSetPage.java | 801 ColorDialog dlg = new ColorDialog(mBgButton.getShell()); in widgetSelected() local 802 dlg.setRGB(mBgColor); in widgetSelected() 803 dlg.setText("Choose a new Background Color"); in widgetSelected() 804 RGB rgb = dlg.open(); in widgetSelected() 812 ColorDialog dlg = new ColorDialog(mFgButton.getShell()); in widgetSelected() local 813 dlg.setRGB(mFgColor); in widgetSelected() 814 dlg.setText("Choose a new Foreground Color"); in widgetSelected() 815 RGB rgb = dlg.open(); in widgetSelected()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
D | GLFunctionTraceViewer.java | 249 ProgressMonitorDialog dlg = new ProgressMonitorDialog(shell); in setInput() local 252 dlg.run(true, true, parser); in setInput()
|