/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PointTestCases.java | 24 import org.eclipse.swt.widgets.Shell; 56 super(null, null, new Shell(), 0);
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
MessageBoxLog.java | 23 import org.eclipse.swt.widgets.Shell; 116 Shell shell = null; 118 shell = mDisplay.getActiveShell(); 120 if (shell == null || shell.isDisposed()) { 126 MessageDialog.openInformation(shell, "Android Virtual Devices Manager", 129 MessageDialog.openError(shell, "Android Virtual Devices Manager",
|
ResolutionChooserDialog.java | 33 import org.eclipse.swt.widgets.Shell; 55 public ResolutionChooserDialog(Shell parentShell) { 72 protected void configureShell(Shell newShell) {
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/ |
LogWindow.java | 37 import org.eclipse.swt.widgets.Shell;
53 private Shell mParentShell;
54 private Shell mShell;
77 public LogWindow(Shell parentShell, ISdkLog secondaryLog) {
150 mShell = new Shell(mParentShell, SWT.SHELL_TRIM | SWT.TOOL);
276 * Centers the dialog in its parent shell.
279 // Centers the dialog in its parent shell
280 Shell child = mShell;
|
AvdManagerWindowImpl1.java | 53 import org.eclipse.swt.widgets.Shell;
67 private final Shell mParentShell;
79 protected Shell mShell;
86 * @param parentShell Parent shell.
93 Shell parentShell,
108 * @param parentShell Parent shell.
114 Shell parentShell,
153 mShell = new Shell(mParentShell, SWT.SHELL_TRIM | SWT.APPLICATION_MODAL);
349 * Creates the icon of the window shell.
351 * @param shell The shell on which to put the icon 471 Shell shell = getShell(); local [all...] |
ShellSizeAndPos.java | 25 import org.eclipse.swt.widgets.Shell;
45 public static void loadSizeAndPos(Shell shell, String prefix) {
60 for (Monitor monitor : shell.getDisplay().getMonitors()) {
63 // The shell is fully visible on this monitor. Just use that.
90 shell.setLocation(px, py);
91 shell.setSize(sx, sy);
100 public static void saveSizeAndPos(Shell shell, String prefix) {
103 Point loc = shell.getLocation(); [all...] |
SdkUpdaterWindowImpl2.java | 63 import org.eclipse.swt.widgets.Shell;
78 private final Shell mParentShell;
90 protected Shell mShell;
102 * @param parentShell Parent shell.
109 Shell parentShell,
124 * @param parentShell Parent shell.
130 Shell parentShell,
168 mShell = new Shell(mParentShell, SWT.SHELL_TRIM | SWT.APPLICATION_MODAL);
528 * Creates the icon of the window shell.
530 * @param shell The shell on which to put the icon 661 Shell shell = getShell(); local [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/handler/ |
BaseFileHandler.java | 32 import org.eclipse.swt.widgets.Shell; 47 protected final Shell mParentShell; 49 public BaseFileHandler(Shell parentShell) {
|
MethodProfilingHandler.java | 33 import org.eclipse.swt.widgets.Shell; 48 public MethodProfilingHandler(Shell parentShell) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
GestureToolTip.java | 27 import org.eclipse.swt.widgets.Shell; 58 /** The shell holding the tooltip */ 59 private Shell mShell; 95 mShell = new Shell(parent.getShell(), SWT.ON_TOP | SWT.TOOL | SWT.NO_FOCUS);
|
PropertySheetPage.java | 35 import org.eclipse.swt.widgets.Shell; 155 Shell tip = null; 194 Shell shell = tree.getShell(); 197 tip = new Shell(shell, SWT.ON_TOP | SWT.NO_FOCUS | SWT.TOOL);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
WelcomeWizard.java | 29 import org.eclipse.swt.widgets.Shell; 149 // Get a shell to use for the SDK installation. There are cases where getActiveShell 152 Shell shell = display.getActiveShell(); local 153 if (shell == null) { 157 shell = window.getShell(); 161 if (shell == null) { 162 shell = new Shell(display); 163 AdtPlugin.log(IStatus.WARNING, "No parent shell for SDK installation dialog") [all...] |
/sdk/sdkstats/src/com/android/sdkstats/ |
SdkStatsService.java | 20 import org.eclipse.swt.widgets.Shell; 45 * Use {@link #getUserPermissionForPing(Shell)} to display the dialog requesting 64 public void checkUserPermissionForPing(Shell parent) { 75 private void askUserPermissionForPing(final Shell parent) {
|
/sdk/ddms/app/src/com/android/ddms/ |
StaticPortEditDialog.java | 36 import org.eclipse.swt.widgets.Shell; 49 private Shell mParent; 51 private Shell mShell; 72 * @param parent The parent Shell 75 public StaticPortEditDialog(Shell parent, ArrayList<Integer> ports) { 83 * @param shell The parent shell 89 public StaticPortEditDialog(Shell shell, ArrayList<Integer> ports, 91 this(shell, ports) [all...] |
Main.java | 25 import org.eclipse.swt.widgets.Shell; 80 stats.checkUserPermissionForPing(new Shell(Display.getDefault()));
|
StaticPortConfigDialog.java | 33 import org.eclipse.swt.widgets.Shell; 65 private Shell mShell; 66 private Shell mParent; 80 public StaticPortConfigDialog(Shell parent) { 126 mShell = new Shell(mParent, getStyle());
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/ |
EditFilterDialog.java | 37 import org.eclipse.swt.widgets.Shell; 51 private Shell mParent; 53 private Shell mShell; 78 public EditFilterDialog(Shell parent) { 82 public EditFilterDialog(Shell shell, LogFilter filter) { 83 this(shell); 146 mShell = new Shell(mParent, getStyle());
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman1/ |
SdkUpdaterWindowImpl1.java | 48 import org.eclipse.swt.widgets.Shell;
62 private final Shell mParentShell;
82 protected Shell mShell;
93 * @param parentShell Parent shell.
100 Shell parentShell,
136 mShell = new Shell(mParentShell, SWT.SHELL_TRIM | SWT.APPLICATION_MODAL);
263 * Callback called when the window shell is disposed.
275 * Creates the icon of the window shell.
277 private void setWindowImage(Shell androidSdkUpdater) {
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/ |
ProgressTaskDialog.java | 41 import org.eclipse.swt.widgets.Shell;
80 private Shell mDialogShell;
92 public ProgressTaskDialog(Shell parent) {
127 mDialogShell = new Shell(getParent(), SWT.DIALOG_TRIM | SWT.RESIZE);
240 * The main loop will just exit and close the shell at the first opportunity.
252 * When in closing mode, this simply closes the shell. Otherwise triggers a cancel.
263 * Callback invoked when the shell is closed either by clicking the close button
264 * on by calling shell.close().
266 * to auto close in which case we should do nothing to let the shell close normally.
449 * Centers the dialog in its parent shell. [all...] |
/sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/ |
AboutDialog.java | 34 import org.eclipse.swt.widgets.Shell; 41 public AboutDialog(Shell shell) { 42 super(shell);
|
/external/v8/src/ |
d8-posix.cc | 356 Shell::utility_context()->Global(), 458 Handle<Value> Shell::System(const Arguments& args) { 532 Handle<Value> Shell::ChangeDirectory(const Arguments& args) { 549 Handle<Value> Shell::SetUMask(const Arguments& args) { 608 Handle<Value> Shell::MakeDirectory(const Arguments& args) { 631 Handle<Value> Shell::RemoveDirectory(const Arguments& args) { 646 Handle<Value> Shell::SetEnvironment(const Arguments& args) { 668 Handle<Value> Shell::UnsetEnvironment(const Arguments& args) { 684 void Shell::AddOSMethods(Handle<ObjectTemplate> os_templ) {
|
/external/ppp/pppd/plugins/radius/etc/ |
dictionary.compat | 19 VALUE Service-Type Shell-User 6
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
ConvertSwitchDialog.java | 34 import org.eclipse.swt.widgets.Shell; 56 * @param parentShell the parent shell 59 public ConvertSwitchDialog(Shell parentShell, String field) {
|
ConvertSwitchQuickFixProcessor.java | 35 import org.eclipse.swt.widgets.Shell; 131 Shell shell = AdtPlugin.getDisplay().getActiveShell(); local 132 ConvertSwitchDialog dialog = new ConvertSwitchDialog(shell, mExpression);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
LayoutCreatorDialog.java | 35 import org.eclipse.swt.widgets.Shell; 52 * @param parentShell the parent {@link Shell}. 55 public LayoutCreatorDialog(Shell parentShell, String fileName, FolderConfiguration config) {
|