HomeSort by relevance Sort by last modified time
    Searched refs:Shell (Results 76 - 100 of 123) sorted by null

1 2 34 5

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventValueSelector.java 42 import org.eclipse.swt.widgets.Shell;
53 private Shell mParent;
54 private Shell mShell;
77 public EventValueSelector(Shell parent) {
166 mShell = new Shell(mParent, getStyle());
EventDisplayOptions.java 45 import org.eclipse.swt.widgets.Shell;
56 private Shell mParent;
57 private Shell mShell;
115 EventDisplayOptions(Shell parent) {
183 mShell = new Shell(mParent, getStyle());
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 86 import org.eclipse.swt.widgets.Shell;
204 Shell shell = AdtPlugin.getDisplay().getActiveShell();
205 if (shell == null) {
211 shell);
238 Shell shell = AdtPlugin.getDisplay().getActiveShell();
239 if (shell == null) {
248 systemRepository, shell);
275 Shell shell = AdtPlugin.getDisplay().getActiveShell()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 55 import org.eclipse.swt.widgets.Shell;
96 * @param parent the parent shell
101 Shell parent) {
328 Shell shell = AdtPlugin.getDisplay().getActiveShell(); local
329 if (shell == null) {
360 Shell shell = AdtPlugin.getDisplay().getActiveShell(); local
361 if (shell == null) {
364 NameValueDialog dialog = new NameValueDialog(shell, getFilter())
    [all...]
MarginChooser.java 35 import org.eclipse.swt.widgets.Shell;
58 public MarginChooser(Shell parent, IProject project, AndroidTargetData targetData, String all,
ReferenceChooserDialog.java 46 import org.eclipse.swt.widgets.Shell;
82 Shell parent) {
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 523 sb.append(SQLite.Shell.sql_quote(tableNamePattern));
536 sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase()));
604 SQLite.Shell.sql_quote(tableNamePattern) +
741 SQLite.Shell.sql_quote(table) + ")"));
744 SQLite.Shell.sql_quote(table) + ")"));
789 SQLite.Shell.sql_quote(iname) + ")"));
871 SQLite.Shell.sql_quote(table) + ")"));
908 SQLite.Shell.sql_quote(iname) + ")"));
943 SQLite.Shell.sql_quote(table) + ")"));
1034 SQLite.Shell.sql_quote(table) + ")"))
    [all...]
JDBCResultSet.java 837 sb.append(SQLite.Shell.sql_quote_dbl(uptable));
840 sb.append(SQLite.Shell.sql_quote_dbl(m.getColumnName(i + 1)));
880 sb.append(SQLite.Shell.sql_quote_dbl(uptable));
884 sb.append(SQLite.Shell.sql_quote_dbl(m.getColumnName(i + 1)));
893 sb.append(SQLite.Shell.sql_quote_dbl(pkcols[k]));
920 sb.append(SQLite.Shell.sql_quote_dbl(uptable));
924 sb.append(SQLite.Shell.sql_quote_dbl(pkcols[i]));
952 sb.append(SQLite.Shell.sql_quote_dbl(m.getColumnName(i + 1)));
958 sb.append(SQLite.Shell.sql_quote_dbl(uptable));
962 sb.append(SQLite.Shell.sql_quote_dbl(pkcols[i]))
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
UIThread.java 95 import org.eclipse.swt.widgets.Shell;
265 private Shell mExplorerShell = null;
321 public HProfHandler(Shell parentShell) {
447 final Shell shell = new Shell(mDisplay); local
452 shell.setImage(ImageLoader.getLoader(this.getClass()).loadImage(mDisplay,
463 Shell activeShell = mDisplay.getActiveShell();
479 ClientData.setHprofDumpHandler(new HProfHandler(shell));
480 ClientData.setMethodProfilingHandler(new MethodProfilingHandler(shell));
    [all...]
PrefsDialog.java 55 import org.eclipse.swt.widgets.Shell;
282 public static void run(Shell shell) {
310 PreferenceDialog dlg = new PreferenceDialog(shell, prefMgr);
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 63 import org.eclipse.swt.widgets.Shell;
112 Shell shell = getSite().getShell(); local
120 SaveAsDialog dialog = new SaveAsDialog(shell);
149 if (copy(shell, fileEditorInput.getURI(), file.getLocationURI()) == null) {
165 FileDialog dialog = new FileDialog(shell, SWT.SAVE);
181 shell,
196 IFileStore destFileStore = copy(shell, fileStoreEditorInput.getURI(), localFile.toURI());
210 private IFileStore copy(Shell shell, URI source, URI dest)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatFilterSettingsDialog.java 32 import org.eclipse.swt.widgets.Shell;
68 public LogCatFilterSettingsDialog(Shell parentShell) {
93 protected Control createDialogArea(Composite shell) {
97 Composite parent = (Composite) super.createDialogArea(shell);
254 /* save values from the widgets before the shell is closed. */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 49 import org.eclipse.swt.widgets.Shell;
279 Shell shell = mCanvas.getShell(); local
286 systemRepository, shell);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
NewItemSelectionDialog.java 35 import org.eclipse.swt.widgets.Shell;
77 * @param shell The parent shell for the list.
83 public NewItemSelectionDialog(Shell shell, ILabelProvider labelProvider,
87 super(shell, labelProvider);
  /sdk/sdkmanager/libs/sdkuilib/tests/com/android/sdkuilib/internal/repository/
UpdaterLogicTest.java 34 import org.eclipse.swt.widgets.Shell;
71 public Shell getWindowShell() {
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
UpdaterData.java 58 import org.eclipse.swt.widgets.Shell;
102 private Shell mWindowShell;
195 public void setWindowShell(Shell windowShell) {
199 public Shell getWindowShell() {
226 // We may not have any UI. Only display a dialog if there's a window shell available.
643 final Shell shell = getWindowShell(); local
644 if (shell != null && !shell.isDisposed()) {
645 shell.getDisplay().syncExec(new Runnable() {
684 final Shell shell = getWindowShell(); local
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 170 explicit CXXNamedCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize)
171 : ExplicitCastExpr(SC, Shell, PathSize) { }
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java 48 import org.eclipse.swt.widgets.Shell;
231 protected ConfigManagerDialog(Shell parentShell) {
242 protected void configureShell(Shell newShell) {
ConfigEditDialog.java 48 import org.eclipse.swt.widgets.Shell;
91 public ConfigEditDialog(Shell parentShell, FolderConfiguration config) {
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdStartDialog.java 40 import org.eclipse.swt.widgets.Shell;
93 AvdStartDialog(Shell parentShell, AvdInfo avd, String sdkLocation,
299 protected void configureShell(Shell newShell) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiResourceAttributeNode.java 50 import org.eclipse.swt.widgets.Shell;
134 public String showDialog(Shell shell, String currentValue) {
154 shell);
165 shell);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ExportHelper.java 49 import org.eclipse.swt.widgets.Shell;
268 Shell shell = Display.getCurrent().getActiveShell(); local
274 FileDialog fileDialog = new FileDialog(shell, SWT.SAVE);
  /external/v8/src/
d8.h 114 class Shell: public i::AllStatic {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 57 import org.eclipse.swt.widgets.Shell;
241 public DeviceChooserDialog(Shell parent, DeviceChooserResponse response, String packageName,
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
DdmsPlugin.java 49 import org.eclipse.swt.widgets.Shell;
184 Shell shell = display.getActiveShell();
186 MessageDialog.openError(shell, tag, message);
188 MessageDialog.openWarning(shell, tag, message);

Completed in 453 milliseconds

1 2 34 5