Searched refs:dialog (Results 51 - 75 of 124) sorted by relevance

12345

/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransactionStack.java123 // A set of methods that result in dialog creations.
263 * Use the user supplied router for all out of dialog requests.
302 // Flag to indicate whether the stack will provide dialog
358 // Max time for a forked response to arrive. After this time, the original dialog
450 // Notify may or may not create a dialog. This is handled in
553 * Print the dialog table.
558 this.getStackLogger().logDebug("dialog table = " + this.dialogTable);
559 System.out.println("dialog table = " + this.dialogTable);
567 * @return -- the RetransmissionAlert enabled transaction corresponding to the given dialog
586 * @param extensionMethod -- extension method to support for dialog creatio
603 putDialog(SIPDialog dialog) argument
694 removeDialog(SIPDialog dialog) argument
[all...]
H A DSIPDialog.java119 * Tracks dialogs. A dialog is a peer to peer association of communicating SIP entities. For
122 * dialog identifier that can be used to retrieve this structure from the SipStack.
153 // Should be transient, in case the dialog is serialized it will be null
220 // the amount of time to keep this dialog around before the stack GC's it
258 // List of event listeners for this dialog
264 // keep the whole transaction object for the duration of the dialog. It also
376 SIPDialog dialog = SIPDialog.this;
381 sipStack.removeDialog(dialog);
399 SIPDialog dialog = SIPDialog.this;
401 sipStack.getStackLogger().logDebug("Running dialog time
1449 storeFirstTransactionInfo(SIPDialog dialog, SIPTransaction transaction) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DExtrasMenuActivity.java154 Dialog dialog = null;
157 dialog = new AlertDialog.Builder(this)
160 public void onClick(DialogInterface dialog, int whichButton) {
168 dialog = new AlertDialog.Builder(this)
174 return dialog;
H A DMainMenuActivity.java334 Dialog dialog;
336 dialog = new AlertDialog.Builder(this)
342 dialog = new AlertDialog.Builder(this)
345 public void onClick(DialogInterface dialog, int whichButton) {
359 dialog = new AlertDialog.Builder(this)
363 public void onClick(DialogInterface dialog, int whichButton) {
372 dialog = super.onCreateDialog(id);
374 return dialog;
/external/chromium/chrome/browser/
H A Dplugin_carbon_interpose_mac.cc120 static void ChromePluginDisposeDialog(DialogRef dialog) { argument
121 WindowRef window = GetDialogWindow(dialog);
123 DisposeDialog(dialog);
/external/chromium/chrome/browser/ui/views/
H A Djs_modal_dialog_views.cc156 JavaScriptAppModalDialog* dialog,
158 JSModalDialogViews* d = new JSModalDialogViews(dialog);
155 CreateNativeJavaScriptPrompt( JavaScriptAppModalDialog* dialog, gfx::NativeWindow parent_window) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dinstant_confirm_dialog_gtk.cc66 void InstantConfirmDialogGtk::OnResponse(GtkWidget* dialog, int response_id) { argument
H A Dupdate_recommended_dialog.cc55 void UpdateRecommendedDialog::OnResponse(GtkWidget* dialog, int response_id) { argument
H A Dexternal_protocol_dialog_gtk.cc97 // Add our vbox to the dialog.
110 void ExternalProtocolDialogGtk::OnResponse(GtkWidget* dialog, int response_id) { argument
120 // the dialog, do nothing.
/external/dbus/tools/
H A Ddbus-viewer.c56 GtkWidget *dialog; local
57 dialog = gtk_message_dialog_new (transient_parent,
63 g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (gtk_widget_destroy), NULL);
67 *weak_ptr = dialog;
68 g_object_add_weak_pointer (G_OBJECT (dialog), (void**)weak_ptr);
71 gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
73 gtk_widget_show_all (dialog);
/external/jmonkeyengine/engine/src/android/com/jme3/app/
H A DAndroidHarness.java77 * Title of the exit dialog, default is "Do you want to exit?"
81 * Message of the exit dialog, default is "Use your home key to bring this
305 AlertDialog dialog = new AlertDialog.Builder(AndroidHarness.this) // .setIcon(R.drawable.alert_dialog_icon)
307 dialog.show();
313 * Called by the android alert dialog, terminate the activity and OpenGL
316 * @param dialog
319 public void onClick(DialogInterface dialog, int whichButton) { argument
340 AlertDialog dialog = new AlertDialog.Builder(AndroidHarness.this) // .setIcon(R.drawable.alert_dialog_icon)
342 dialog.show();
/external/webkit/Tools/QtTestBrowser/
H A Dlauncherwindow.cpp864 QDialog* dialog = new QDialog(this); local
865 dialog->resize(size().width() * 0.7, dialog->size().height());
866 dialog->setMaximumHeight(dialog->size().height());
867 dialog->setWindowTitle("Change User Agent");
869 QVBoxLayout* layout = new QVBoxLayout(dialog);
870 dialog->setLayout(layout);
873 QComboBox* combo = new QComboBox(dialog);
884 | QDialogButtonBox::Cancel, Qt::Horizontal, dialog);
[all...]
/external/chromium/chrome/browser/ui/gtk/importer/
H A Dimport_lock_dialog_gtk.cc36 // Build the dialog.
64 void ImportLockDialogGtk::OnResponse(GtkWidget* dialog, int response_id) { argument
H A Dimport_progress_dialog_gtk.cc43 ImportProgressDialogGtk* dialog = new ImportProgressDialogGtk( local
54 dialog->ShowDialog();
74 // Build the dialog.
136 void ImportProgressDialogGtk::OnResponse(GtkWidget* dialog, int response_id) { argument
142 // Only response to the dialog is to close it so we hide immediately.
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/
H A DJmeDesktopSystem.java96 SettingsDialog dialog = new SettingsDialog(settings, iconUrl, loadFromRegistry);
97 dialog.setSelectionListener(selectionListener);
98 dialog.showDialog();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DBuildsView.java95 ElementListSelectionDialog dialog = new ElementListSelectionDialog(getSite().getShell(), new LabelProvider());
96 dialog.setTitle(getTitleToolTip());
97 dialog.setMessage("Select the baseline to use while generating results:");
99 dialog.setInitialSelections(defaultBaseline);
100 dialog.setElements(baselines);
101 dialog.open();
102 Object[] selected = dialog.getResult();
210 // Progress dialog
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp616 GtkWidget* dialog = gtk_file_chooser_dialog_new(_("Upload File"), local
623 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), chooser->allowsMultipleFiles());
625 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
626 if (gtk_file_chooser_get_select_multiple(GTK_FILE_CHOOSER(dialog))) {
627 GSList* filenames = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog));
638 gchar* filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
644 gtk_widget_destroy(dialog);
/external/chromium/chrome/browser/resources/file_manager/css/
H A Dfile_manager.css7 /* Outer frame of the dialog. */
22 /* The top title of the dialog. */
23 .dialog-title {
37 .dialog-header {
46 .dialog-body {
57 .dialog-footer {
377 .dialog-footer .filename-label {
/external/nist-sip/java/gov/nist/javax/sip/
H A DEventScanner.java233 SIPDialog dialog = (SIPDialog) eventWrapper.transaction
235 if (dialog != null)
236 dialog.requestConsumed();
295 * If the response for a request within a dialog is a 481
297 * Timeout), the UAC SHOULD terminate the dialog.
305 "Removing dialog on 408 or 481 response");
318 * field, and each represents a distinct dialog, with a
319 * distinct dialog identifier.
322 * does not care about the dialog and gc the dialog afte
[all...]
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt.h86 void SetDialog(ConstrainedWindow* dialog);
H A Dlogin_prompt_ui.cc135 // Send autofill data to HTML once the dialog is ready and the data is
247 ConstrainedWindow* dialog = ConstrainedHtmlUI::CreateConstrainedHtmlDialog( local
251 SetDialog(dialog);
/external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
H A DSDL_dspvideo.c499 /* Put up dialog on main display to select which display to use */
669 /* put up a dialog to verify display change */
672 /* resource id's for dialog */
677 DialogPtr dialog; local
685 dialog = GetNewDialog (rDialog, NULL, (WindowPtr) -1);
686 if (dialog == NULL)
690 SetPort (GetDialogPort(dialog));
692 SetPort ((WindowPtr) dialog);
695 SetDialogDefaultItem (dialog, bCancel);
696 SetDialogCancelItem (dialog, bCance
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dnative_dialog_window.cc26 // Gets the default widget of given dialog.
27 GtkWidget* GetDialogDefaultWidget(GtkDialog* dialog) { argument
31 GTK_CONTAINER(dialog->action_area));
81 // Init and attach to native dialog.
90 // NativeViewHost for the dialog's contents.
166 // the dialog ourselves and no longer interested in it.
196 // Get default widget of the dialog.
199 // Get focus widget of the dialog.
202 // Create a GtkAlignment as dialog contents container.
208 // Move dialog content
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_file_browser_private_api.cc785 HtmlDialogView* dialog,
788 map_.insert(std::make_pair(tab_id, Callback(listener, dialog, params)));
820 void FileDialogFunction::CloseDialog(HtmlDialogView* dialog) { argument
821 DCHECK(dialog);
824 dialog->CloseContents(contents);
912 CloseDialog(callback.dialog());
1011 CloseDialog(callback.dialog());
1023 CloseDialog(callback.dialog());
783 Add(int32 tab_id, SelectFileDialog::Listener* listener, HtmlDialogView* dialog, void* params) argument
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-104077.js287 var dialog = new Object();
292 with (dialog)

Completed in 828 milliseconds

12345