| /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ | 
| Dialog.js | 36 WebInspector.Dialog = function(relativeToElement, delegate) 63  * @return {?WebInspector.Dialog}
 65 WebInspector.Dialog.currentInstance = function()
 67     return WebInspector.Dialog._instance;
 74 WebInspector.Dialog.show = function(relativeToElement, delegate)
 76     if (WebInspector.Dialog._instance)
 78     WebInspector.Dialog._instance = new WebInspector.Dialog(relativeToElement, delegate);
 81 WebInspector.Dialog.hide = function()
 83     if (!WebInspector.Dialog._instance
 [all...]
 | 
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ | 
| tkColorChooser.py | 14 # - initialcolor: colour to mark as selected when dialog is displayed 17 # - parent: which window to place the dialog on top of
 19 # - title: dialog title
 22 from tkCommonDialog import Dialog
 28 class Chooser(Dialog):
 
 | 
| tkCommonDialog.py | 13 class Dialog: 
 | 
| Dialog.py | 0 # dialog.py -- Tkinter interface to the tk_dialog script. 12 class Dialog(Widget):
 28     d = Dialog(None, {'title': 'File Modified',
 
 | 
| tkFileDialog.py | 23 # - initialdir: initial directory.  preserved by dialog instance. 25 # - initialfile: initial file (ignored by the open dialog).  preserved
 26 #   by dialog instance.
 28 # - parent: which window to place the dialog on top of
 30 # - title: dialog title
 43 from tkCommonDialog import Dialog
 45 class _Dialog(Dialog):
 100 # the directory dialog has its own _fix routines.
 101 class Directory(Dialog):
 200     # dialog for openening file
 [all...]
 | 
| FileDialog.py | 1 """File selection dialog classes. 12 from Dialog import Dialog
 23     """Standard file selection dialog -- no checks on selected file.
 38     the dialog keeps no memory of previous state.  Note that memory is
 39     kept even when the dialog is canceled.  (All this emulates the
 44     title = "File Selection Dialog"
 222     """File selection dialog which checks that the file exists."""
 224     title = "Load File Selection Dialog"
 236     """File selection dialog which checks that the file may be created.""
 [all...]
 | 
| tkMessageBox.py | 18 # - parent: which window to place the dialog on top of 20 # - title: dialog title
 22 # - type: dialog type; that is, which buttons to display (see below)
 25 from tkCommonDialog import Dialog
 55 # message dialog class
 57 class Message(Dialog):
 
 | 
| tkSimpleDialog.py | 12 # dialog base class 14 '''Dialog boxes
 16 This module handles dialog boxes. It contains the following
 19 Dialog -- a base class for dialogs
 30 class Dialog(Toplevel):
 39         '''Initialize a dialog.
 45             title -- the dialog title
 97         '''create dialog body.
 154         dialog is destroyed. By default, it always validates OK.
 163         the dialog is destroyed. By default, it does nothing
 [all...]
 | 
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ | 
| tkColorChooser.py | 14 # - initialcolor: colour to mark as selected when dialog is displayed 17 # - parent: which window to place the dialog on top of
 19 # - title: dialog title
 22 from tkCommonDialog import Dialog
 28 class Chooser(Dialog):
 
 | 
| tkCommonDialog.py | 13 class Dialog: 
 | 
| Dialog.py | 0 # dialog.py -- Tkinter interface to the tk_dialog script. 12 class Dialog(Widget):
 28     d = Dialog(None, {'title': 'File Modified',
 
 | 
| tkFileDialog.py | 23 # - initialdir: initial directory.  preserved by dialog instance. 25 # - initialfile: initial file (ignored by the open dialog).  preserved
 26 #   by dialog instance.
 28 # - parent: which window to place the dialog on top of
 30 # - title: dialog title
 43 from tkCommonDialog import Dialog
 45 class _Dialog(Dialog):
 100 # the directory dialog has its own _fix routines.
 101 class Directory(Dialog):
 200     # dialog for openening file
 [all...]
 | 
| FileDialog.py | 1 """File selection dialog classes. 12 from Dialog import Dialog
 23     """Standard file selection dialog -- no checks on selected file.
 38     the dialog keeps no memory of previous state.  Note that memory is
 39     kept even when the dialog is canceled.  (All this emulates the
 44     title = "File Selection Dialog"
 222     """File selection dialog which checks that the file exists."""
 224     title = "Load File Selection Dialog"
 236     """File selection dialog which checks that the file may be created.""
 [all...]
 | 
| tkMessageBox.py | 18 # - parent: which window to place the dialog on top of 20 # - title: dialog title
 22 # - type: dialog type; that is, which buttons to display (see below)
 25 from tkCommonDialog import Dialog
 55 # message dialog class
 57 class Message(Dialog):
 
 | 
| tkSimpleDialog.py | 12 # dialog base class 14 '''Dialog boxes
 16 This module handles dialog boxes. It contains the following
 19 Dialog -- a base class for dialogs
 30 class Dialog(Toplevel):
 39         '''Initialize a dialog.
 45             title -- the dialog title
 97         '''create dialog body.
 154         dialog is destroyed. By default, it always validates OK.
 163         the dialog is destroyed. By default, it does nothing
 [all...]
 | 
| /external/chromium_org/tools/grit/grit/gather/ | 
| rc.py | 98 class Dialog(Section): 99   '''A resource section that contains a dialog resource.'''
 101   # A typical dialog resource section looks like this:
 123     # The dialog's ID in the first line
 124     (?P<id1>[A-Z0-9_]+)\s+DIALOG(EX)?
 126     # The caption of the dialog
 148     '''Knows how to parse dialog resource sections.'''
 
 | 
| /frameworks/base/tests/SharedLibrary/lib/src/com/google/android/test/shared_library/ | 
| VersionDialog.java | 21 import android.app.Dialog; 32  * This is the dialog we show when the library's version is older than
 37     public Dialog onCreateDialog(Bundle savedInstanceState) {
 40         // Need to use our library's resources for showing the dialog.
 55                 new Dialog.OnClickListener() {
 57                     public void onClick(DialogInterface dialog, int which) {
 
 | 
| /external/nist-sip/java/javax/sip/ | 
| Dialog.java | 11 public interface Dialog extends Serializable { 
 | 
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ | 
| bdist_msi.py | 21 from msilib import Directory, Feature, Dialog, add_data 23 class PyDialog(Dialog):
 24     """Dialog class with a fixed layout: controls at the top, then a ruler,
 28         """Dialog(database, name, x, y, w, h, attributes, title, first,
 30         Dialog.__init__(self, *args)
 37         "Set the title text of the dialog at the top."
 424         # see "Dialog Style Bits"
 501         # Required dialog: FilesInUse, ErrorDlg
 522         # See "Error Dialog". See "ICE20" for the required names of the controls.
 523         error = Dialog(db, "ErrorDlg"
 [all...]
 | 
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ | 
| bdist_msi.py | 21 from msilib import Directory, Feature, Dialog, add_data 23 class PyDialog(Dialog):
 24     """Dialog class with a fixed layout: controls at the top, then a ruler,
 28         """Dialog(database, name, x, y, w, h, attributes, title, first,
 30         Dialog.__init__(self, *args)
 37         "Set the title text of the dialog at the top."
 424         # see "Dialog Style Bits"
 501         # Required dialog: FilesInUse, ErrorDlg
 522         # See "Error Dialog". See "ICE20" for the required names of the controls.
 523         error = Dialog(db, "ErrorDlg"
 [all...]
 | 
| /development/apps/GestureBuilder/src/com/android/gesture/builder/ | 
| GestureBuilderActivity.java | 19 import android.app.Dialog; 84     private Dialog mRenameDialog;
 225     protected Dialog onCreateDialog(int id) {
 233     protected void onPrepareDialog(int id, Dialog dialog) {
 234         super.onPrepareDialog(id, dialog);
 240     private Dialog createRenameDialog() {
 249         builder.setOnCancelListener(new Dialog.OnCancelListener() {
 250             public void onCancel(DialogInterface dialog) {
 255             new Dialog.OnClickListener()
 [all...]
 | 
| /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ | 
| ActivityTest.java | 4 import android.app.Dialog; 193         new Dialog(activity) {
 195                 activity.dialog = this;
 216         new Dialog(activity) {
 218                 activity.dialog = this;
 240         Dialog firstDialog = ShadowDialog.getLatestDialog();
 244         final Dialog secondDialog = ShadowDialog.getLatestDialog();
 253         Dialog dialog = ShadowDialog.getLatestDialog();  local
 254         assertTrue(dialog.isShowing())
 262  Dialog dialog = ShadowDialog.getLatestDialog();  local
 565  public Dialog dialog = null;  field in class:ActivityTest.DialogLifeCycleActivity
 [all...]
 | 
| /frameworks/base/core/java/android/app/ | 
| Dialog.java | 60  * {@link Activity#onPrepareDialog(int, Dialog)}, 63  * that managed this dialog.
 65  * <p>Often you will want to have a Dialog display on top of the current
 69  * your Dialog takes input focus, as it the default) with the following code:
 81 public class Dialog implements DialogInterface, Window.Callback,
 83     private static final String TAG = "Dialog";
 125      * Create a Dialog window that uses the default dialog frame style.
 127      * @param context The Context the Dialog is to run it.  In particular, it
 131     public Dialog(Context context)
 [all...]
 | 
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ | 
| org.eclipse.jface_3.6.1.M20100825-0800.jar |  | 
| /prebuilts/devtools/tools/lib/ | 
| org-eclipse-jface-3.6.2.jar |  |