Searched defs:dialog (Results 1 - 25 of 84) sorted by relevance

1234

/external/python/cpython2/Demo/tkinter/guido/
H A Ddialog.py3 # A Python function that generates dialog boxes with a text message,
11 def dialog(master, title, text, bitmap, default, *args): function
34 # 3. Create a row of buttons at the bottom of the dialog.
77 i = dialog(mainWidget,
85 i = dialog(mainWidget,
H A Dmbox.py14 from dialog import dialog namespace
170 dialog(root, "Can't Open Folder", msg, "", 0, "OK")
185 dialog(root, "Can't Open Message", msg, "", 0, "OK")
209 dialog(root, "No Message To Remove",
228 dialog(root, "No Message To Refile",
237 dialog(root, "No Folder To Refile", msg, "", 0, "OK")
/external/nist-sip/java/javax/sip/
H A DDialogTerminatedEvent.java8 public DialogTerminatedEvent(Object source, Dialog dialog) { argument
10 mDialog = dialog;
H A DRequestEvent.java12 Dialog dialog, Request request) {
14 mDialog = dialog;
11 RequestEvent(Object source, ServerTransaction serverTransaction, Dialog dialog, Request request) argument
H A DResponseEvent.java12 Dialog dialog, Response response) {
14 mDialog = dialog;
11 ResponseEvent(Object source, ClientTransaction clientTransaction, Dialog dialog, Response response) argument
/external/fio/
H A Dgcompat.h21 static inline GtkWidget *gtk_dialog_get_content_area(GtkDialog *dialog) argument
23 return dialog->vbox;
H A Dgerror.c63 GtkWidget *dialog, *content, *label; local
65 dialog = gtk_dialog_new_with_buttons(title, GTK_WINDOW(ui->window),
69 content = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
72 gtk_widget_show_all(dialog);
73 gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
74 gtk_dialog_run(GTK_DIALOG(dialog));
75 gtk_widget_destroy(dialog);
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
H A DApplication.cpp88 // Create the chooser dialog.
90 ChooserDialog * dialog; local
93 dialog = new ChooserDialog;
94 dialog->Create( IDD_CHOOSER_DIALOG );
95 m_pMainWnd = dialog;
96 dialog->ShowWindow( SW_SHOW );
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/WindowsCE/Sources/
H A DApplication.cpp66 BrowserDialog dialog; local
79 // Display the main browser dialog.
81 m_pMainWnd = &dialog;
82 dialog.DoModal();
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPreferenceScreen.java12 private Dialog dialog; field in class:ShadowPreferenceScreen
16 return dialog;
19 public void setDialog(Dialog dialog) { argument
20 this.dialog = dialog;
H A DShadowDialogFragment.java23 private Dialog dialog; field in class:ShadowDialogFragment
44 dialog = realDialogFragment.onCreateDialog(null);
46 if (dialog == null) {
47 dialog = new Dialog(activityFromManager);
48 dialog.setContentView(view);
50 dialog.setCancelable(cancelable);
62 if (dialog != null) {
63 dialog.show();
69 if (dialog != null) {
70 dialog
[all...]
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DSaveFilesDialogFragment.java31 /* The activity that creates an instance of this dialog fragment must
34 public void onSaveDialogSelect(DialogFragment dialog, boolean saveWithoutDialog); argument
62 public void onClick(DialogInterface dialog, int id) {
63 dialog.dismiss();
69 public void onClick(DialogInterface dialog, int id) {
70 dialog.dismiss();
/external/nist-sip/java/gov/nist/javax/sip/
H A DResponseEventExt.java16 Dialog dialog, Response response) {
17 super(source,clientTransaction,dialog,response);
15 ResponseEventExt(Object source, ClientTransactionExt clientTransaction, Dialog dialog, Response response) argument
H A DDialogTimeoutEvent.java25 * dialog does not receive or send an ACK.
36 * Constructs a DialogTerminatedEvent to indicate a dialog
40 * @param dialog - the dialog that timed out.
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) { argument
44 m_dialog = dialog;
51 * enables application developers to access the dialog associated to this
54 * @return the dialog associated with the response event or null if there is no dialog.
H A DDialogFilter.java255 * Process a request. Check for various conditions in the dialog that can result in the
295 SIPDialog dialog = sipStack.getDialog(dialogId);
297 * Check if we got this request on the contact address of the dialog If not the dialog
299 * assigned to the dialog. Forgive the sins of B2BUA's that like to record route ACK's
301 if (dialog != null && sipProvider != dialog.getSipProvider()) {
302 Contact contact = dialog.getMyContactHeader();
316 // Check if the dialog contact is the same as the provider on
318 // dialog t
1117 processResponse(SIPResponse response, MessageChannel incomingMessageChannel, SIPDialog dialog) argument
[all...]
/external/python/cpython2/Lib/idlelib/idle_test/
H A Dtest_helpabout.py23 dialog = Dummy_about_dialog() variable in class:DisplayFileTest
41 for handler in (self.dialog.idle_credits,
42 self.dialog.idle_readme,
43 self.dialog.idle_news):
H A Dtest_config_name.py26 dialog = Dummy_name_dialog() variable in class:ConfigNameTest
37 self.dialog.name.set(' ')
38 self.assertEqual(self.dialog.name_ok(), '')
43 self.dialog.name.set('used')
44 self.assertEqual(self.dialog.name_ok(), '')
49 self.dialog.name.set('good'*8)
50 self.assertEqual(self.dialog.name_ok(), '')
55 self.dialog.name.set(' good ')
57 self.assertEqual(self.dialog.name_ok(), 'good')
61 self.dialog
[all...]
/external/python/cpython3/Lib/idlelib/idle_test/
H A Dtest_help_about.py22 dialog = Dummy_about_dialog() variable in class:DisplayFileTest
40 for handler in (self.dialog.idle_credits,
41 self.dialog.idle_readme,
42 self.dialog.idle_news):
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowProgressDialogTest.java18 private ProgressDialog dialog; field in class:ShadowProgressDialogTest
23 dialog = new ProgressDialog(RuntimeEnvironment.application);
24 shadow = Shadows.shadowOf(dialog);
39 dialog.setMessage(message);
45 assertThat(dialog.isIndeterminate()).isFalse();
47 dialog.setIndeterminate(true);
48 assertThat(dialog.isIndeterminate()).isTrue();
50 dialog.setIndeterminate(false);
51 assertThat(dialog.isIndeterminate()).isFalse();
56 assertThat(dialog
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/dialog/
H A DDurationPickerDialog.java17 package com.googlecode.android_scripting.dialog;
47 public void onClick(DialogInterface dialog, int whichButton) {
/external/toybox/kconfig/lxdialog/
H A Dyesno.c22 #include "dialog.h"
27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
32 print_button(dialog, " Yes ", y, x, selected == 0);
33 print_button(dialog, " No ", y, x + 13, selected == 1);
35 wmove(dialog, y, x + 1 + 13 * selected);
36 wrefresh(dialog);
40 * Display a dialog box with two buttons - Yes and No
45 WINDOW *dialog; local
53 /* center dialog box on screen */
59 dialog
[all...]
H A Dchecklist.c24 #include "dialog.h"
95 static void print_buttons(WINDOW * dialog, int height, int width, int selected) argument
100 print_button(dialog, "Select", y, x, selected == 0);
101 print_button(dialog, " Help ", y, x + 14, selected == 1);
103 wmove(dialog, y, x + 1 + 14 * selected);
104 wrefresh(dialog);
108 * Display a dialog box with a list of options that can be turned on or off
116 WINDOW *dialog, *list; local
136 /* center dialog box on screen */
142 dialog
[all...]
/external/javassist/sample/rmi/
H A DCountApplet.java14 private AlertDialog dialog; field in class:CountApplet
43 dialog = new AlertDialog();
48 dialog.dispose();
57 dialog.show(e.toString());
/external/lzma/CPP/Windows/Control/
H A DPropertyPage.cpp24 CDialog *dialog = (CDialog *)(tempDialog.GetUserDataLongPtr()); local
25 if (dialog == NULL)
28 dialog->Attach(dialogHWND);
29 try { return BoolToBOOL(dialog->OnMessage(message, wParam, lParam)); }
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DProgressDialogTest.java29 private ProgressDialog dialog; field in class:ProgressDialogTest
34 dialog = new ProgressDialog(null);
35 shadow = Robolectric.shadowOf(dialog);
48 dialog.setMessage(message);
54 assertThat(dialog.isIndeterminate(), equalTo(false));
56 dialog.setIndeterminate(true);
57 assertThat(dialog.isIndeterminate(), equalTo(true));
59 dialog.setIndeterminate(false);
60 assertThat(dialog.isIndeterminate(), equalTo(false));
113 public void onCancel(DialogInterface dialog) {
[all...]

Completed in 1658 milliseconds

1234