/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/ |
D | DeviceViewAction.java | 57 Shell shell = Display.getDefault().getActiveShell(); in run() local 58 GLTraceOptionsDialog dlg = new GLTraceOptionsDialog(shell, false, in run() 70 MessageDialog.openError(shell, "Setup GL Trace", in run() 77 new ProgressMonitorDialog(shell).run(true, true, new IRunnableWithProgress() { in run() 89 CollectTraceAction.startTracing(shell, traceOptions, LOCAL_FORWARDED_PORT); in run() 98 CollectTraceAction.openInEditor(shell, traceOptions.traceDestination); in run()
|
D | CollectTraceAction.java | 98 Shell shell = Display.getDefault().getActiveShell(); in connectToDevice() local 99 GLTraceOptionsDialog dlg = new GLTraceOptionsDialog(shell); in connectToDevice() 115 MessageDialog.openError(shell, "GL Trace", in connectToDevice() 125 MessageDialog.openError(shell, "Setup GL Trace", in connectToDevice() 136 MessageDialog.openError(shell, "Setup GL Trace", in connectToDevice() 143 startTracing(shell, traceOptions, LOCAL_FORWARDED_PORT); in connectToDevice() 149 openInEditor(shell, traceOptions.traceDestination); in connectToDevice() 152 public static void openInEditor(Shell shell, String traceFilePath) { in openInEditor() argument 177 viewer.setInput(shell, traceFilePath); in openInEditor() 226 public static void startTracing(Shell shell, TraceOptions traceOptions, int port) { in startTracing() argument [all …]
|
D | OpenGLTraceAction.java | 59 Shell shell = Display.getDefault().getActiveShell(); in openTrace() local 60 FileDialog fd = new FileDialog(shell, SWT.OPEN); in openTrace()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
D | WelcomeWizard.java | 167 Shell shell = display.getActiveShell(); in installSdk() local 168 if (shell == null) { in installSdk() 172 shell = window.getShell(); in installSdk() 176 if (shell == null) { in installSdk() 177 shell = new Shell(display); in installSdk() 183 shell, in installSdk() 197 shell.dispose(); in installSdk()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
D | NdkDebuggerTab.java | 100 Shell shell = ((Control) e.getSource()).getShell(); in createControl() 102 browseForGdb(shell); in createControl() 104 browseForGdbInit(shell); in createControl() 185 private void addSolib(Shell shell) { in addSolib() argument 186 DirectoryDialog dd = new DirectoryDialog(shell); in addSolib() 198 private void browseForGdb(Shell shell) { in browseForGdb() argument 203 FileDialog fd = new FileDialog(shell); in browseForGdb() 213 private void browseForGdbInit(Shell shell) { in browseForGdbInit() argument 214 FileDialog fd = new FileDialog(shell); in browseForGdbInit()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | ExportScreenshotAction.java | 45 Shell shell = AdtPlugin.getShell(); in run() local 50 FileDialog dialog = new FileDialog(shell, SWT.SAVE); in run() 79 MessageDialog.openError(shell, "Error", "Image not available"); in run()
|
/sdk/bash_completion/ |
D | adb.bash | 94 shell) 197 paths=$(command adb ${args[@]} shell echo '$'PATH 2> /dev/null | tr -d '\r' | tr : '\n') 198 COMMAND=$(command adb ${args[@]} shell ls $paths '2>' /dev/null | tr -d '\r' | { 253 …candidates=$(command adb ${args[@]} shell dumpsys -l 2> /dev/null | sed -e '1d;s/^ *//' | tr -d '… 406 if [[ $( command adb ${args[@]} shell ls -dF / '2>/dev/null' | tr -d '\r' ) == "d /" ]] ; then 408 … command adb ${args[@]} shell ls -dF ${file}"*" '2>' /dev/null 2> /dev/null | tr -d '\r' | { 422 command adb ${args[@]} shell ls -dp ${file}"*" '2>/dev/null' 2> /dev/null | tr -d '\r'
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | SwtUtilsTest.java | 50 Shell shell = new Shell(); in testImageConvertNoAlpha() local 51 Display display = shell.getDisplay(); in testImageConvertNoAlpha() 106 Shell shell = new Shell(); in testImageConvertGlobalAlpha() local 107 Display display = shell.getDisplay(); in testImageConvertGlobalAlpha() 139 Shell shell = new Shell(); in testImageConvertAlpha() local 140 Display display = shell.getDisplay(); in testImageConvertAlpha() 174 Shell shell = new Shell(); in testImageConvertAlphaMultiplied() local 175 Display display = shell.getDisplay(); in testImageConvertAlphaMultiplied() 329 Shell shell = new Shell(); in createSampleImage() local 330 Display display = shell.getDisplay(); in createSampleImage()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/ |
D | TraceviewEditor.java | 104 Shell shell = getSite().getShell(); in doSaveAs() local 112 SaveAsDialog dialog = new SaveAsDialog(shell); in doSaveAs() 141 if (copy(shell, fileEditorInput.getURI(), file.getLocationURI()) == null) { in doSaveAs() 157 FileDialog dialog = new FileDialog(shell, SWT.SAVE); in doSaveAs() 173 shell, in doSaveAs() 188 … IFileStore destFileStore = copy(shell, fileStoreEditorInput.getURI(), localFile.toURI()); in doSaveAs() 202 private IFileStore copy(Shell shell, URI source, URI dest) { in copy() argument 213 MessageDialog.openError(shell, title, msg); in copy()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
D | InputDensityDialog.java | 110 protected void configureShell(Shell shell) { in configureShell() argument 111 super.configureShell(shell); in configureShell() 112 shell.setText("Choose Density"); in configureShell()
|
D | ConvertToDpFix.java | 57 Shell shell = AdtPlugin.getShell(); in apply() local 58 InputDensityDialog densityDialog = new InputDensityDialog(shell); in apply()
|
D | EclipseLintRunner.java | 158 public static boolean runLintOnExport(Shell shell, IProject project) { in runLintOnExport() argument 163 MessageDialog.openWarning(shell, in runLintOnExport()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/ |
D | HierarchyViewerPlugin.java | 107 Shell shell = Display.getDefault().getActiveShell(); in start() 109 MessageDialog.openError(shell, tag, message); in start() 111 MessageDialog.openWarning(shell, tag, message); in start()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
D | UiActions.java | 67 public void doAdd(UiElementNode uiNode, Shell shell) { in doAdd() argument 68 doAdd(uiNode, null /* descriptorFilters */, shell, new UiModelTreeLabelProvider()); in doAdd() 79 Shell shell, ILabelProvider labelProvider) { in doAdd() argument 87 shell, in doAdd() 141 public void doRemove(final List<UiElementNode> nodes, Shell shell) { in doRemove() argument 155 if (MessageDialog.openQuestion(shell, in doRemove()
|
/sdk/build/ |
D | windows_sdk_whitelist.mk | 43 ifneq (,$(shell which javac 2>/dev/null))
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
D | DeviceView.java | 374 Shell shell = display.getActiveShell(); in createPartControl() 375 MessageDialog.openError(shell, Messages.DeviceView_ADB_Error, in createPartControl() 465 Shell shell = display.getActiveShell(); in createPartControl() 466 MessageDialog.openError(shell, in createPartControl() 473 Shell shell = display.getActiveShell(); in createPartControl() 474 MessageDialog.openError(shell, in createPartControl() 508 Shell shell = display.getActiveShell(); in createPartControl() 509 MessageDialog.openError(shell, Messages.DeviceView_Debug_Process_Title, in createPartControl() 539 private void takeUiAutomatorSnapshot(final IDevice device, final Shell shell) { in takeUiAutomatorSnapshot() argument 540 ProgressMonitorDialog dialog = new ProgressMonitorDialog(shell); in takeUiAutomatorSnapshot() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
D | AdtPlugin.java | 365 Shell shell = display.getActiveShell(); in getShell() local 366 if (shell == null) { in getShell() 369 shell = shells[0]; in getShell() 373 return shell; in getShell() 890 Shell shell = display.getActiveShell(); 891 MessageDialog.openError(shell, title, message); 910 Shell shell = display.getActiveShell(); 911 MessageDialog.openWarning(shell, title, message); 932 Shell shell = display.getActiveShell(); 933 result[0] = MessageDialog.openQuestion(shell, title, message); [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
D | RenameResourceWizard.java | 84 @NonNull Shell shell, in renameResource() 98 if (!show(refactoring, processor, shell, type, canClear)) { in renameResource()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | LocaleMenuListener.java | 69 Shell shell = mConfigChooser.getShell(); in widgetSelected() local 70 AddTranslationDialog dialog = new AddTranslationDialog(shell, project); in widgetSelected()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
D | BuildFileCreator.java | 112 @NonNull Shell shell, in createBuildFiles() argument 189 Set<IFile> confirmedFiles = validateEdit(files, status, shell); in createBuildFiles() 211 BuildFileCreator instance = new BuildFileCreator(currentModule, shell); in createBuildFiles() 297 private BuildFileCreator(GradleModule module, Shell shell) { in BuildFileCreator() argument 539 @NonNull Shell shell) { in validateEdit() argument 545 files.toArray(new IFile[files.size()]), shell); in validateEdit()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ |
D | MonitorApplication.java | 171 private String getSdkLocationFromUser(Shell shell) { in getSdkLocationFromUser() argument 172 SdkLocationChooserDialog dlg = new SdkLocationChooserDialog(shell); in getSdkLocationFromUser()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
D | XmlPropertyEditor.java | 336 Shell shell = AdtPlugin.getShell(); in setEditorText() local 342 shell, in setEditorText() 367 if (project != null && shell != null) { in setEditorText() 368 RenameResourceWizard.renameResource(shell, project, in setEditorText() 471 Shell shell = AdtPlugin.getShell(); in openDialog() local 475 shell); in openDialog()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
D | ConvertSwitchQuickFixProcessor.java | 188 Shell shell = AdtPlugin.getShell(); in apply() local 189 ConvertSwitchDialog dialog = new ConvertSwitchDialog(shell, mExpression); in apply()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
D | StateViewPage.java | 145 final Shell shell = mTreeViewer.getTree().getShell(); in saveCurrentState() local 146 FileDialog fd = new FileDialog(shell, SWT.SAVE); in saveCurrentState() 169 ErrorDialog.openError(shell, in saveCurrentState()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
D | LogCatMonitor.java | 247 private boolean promptUserOnce(Shell shell) { in focusLogCatView() 254 LogCatMonitorDialog dlg = new LogCatMonitorDialog(shell); in focusLogCatView()
|