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

123

/external/chromium/chrome/browser/ui/cocoa/
H A Djs_modal_dialog_cocoa.h25 explicit JSModalDialogCocoa(JavaScriptAppModalDialog* dialog);
36 JavaScriptAppModalDialog* dialog() const { return dialog_.get(); } function in class:JSModalDialogCocoa
/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/chromium/chrome/browser/ui/app_modal_dialogs/
H A Dapp_modal_dialog_queue.cc9 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) { argument
11 ShowModalDialog(dialog);
14 app_modal_dialog_queue_.push(dialog);
18 AppModalDialog* dialog = GetNextDialog(); local
19 if (dialog)
20 ShowModalDialog(dialog);
27 // As part of showing a modal dialog we may end up back in this method
28 // (showing a dialog activates the TabContents, which can trigger a call
30 // activate the tab contents the dialog is shown.
48 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) { argument
62 AppModalDialog* dialog = app_modal_dialog_queue_.front(); local
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Dprocess_singleton_dialog.cc16 ProcessSingletonDialog dialog(message);
39 void ProcessSingletonDialog::OnResponse(GtkWidget* dialog, int response_id) { argument
H A Dupdate_recommended_dialog.cc55 void UpdateRecommendedDialog::OnResponse(GtkWidget* dialog, int response_id) { argument
H A Dinstant_confirm_dialog_gtk.cc66 void InstantConfirmDialogGtk::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.
H A Dconstrained_window_gtk.cc39 GtkWidget* dialog = delegate->GetWidgetRoot(); local
61 if (gtk_widget_get_parent(dialog))
62 gtk_widget_reparent(dialog, alignment);
64 gtk_container_add(GTK_CONTAINER(alignment), dialog); local
/external/chromium/chrome/browser/ui/gtk/download/
H A Ddownload_in_progress_dialog_gtk.cc56 GtkWidget* dialog = gtk_message_dialog_new( local
63 gtk_util::AddButtonToDialog(dialog,
66 gtk_util::AddButtonToDialog(dialog,
70 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
74 g_signal_connect(dialog, "response", G_CALLBACK(OnResponseThunk), this);
76 gtk_widget_show_all(dialog);
79 void DownloadInProgressDialogGtk::OnResponse(GtkWidget* dialog, argument
81 gtk_widget_destroy(dialog);
/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
/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/webkit/Tools/DumpRenderTree/chromium/
H A DTestShellGtk.cpp201 GtkWidget* dialog = gtk_message_dialog_new( local
203 gtk_window_set_title(GTK_WINDOW(dialog), "DumpRenderTree");
204 gtk_dialog_run(GTK_DIALOG(dialog)); // Runs a nested message loop.
205 gtk_widget_destroy(dialog);
/external/chromium/chrome/browser/
H A Dplatform_util_common_linux.cc21 void SetDialogTitle(GtkWidget* dialog, const string16& title) { argument
22 gtk_window_set_title(GTK_WINDOW(dialog), UTF16ToUTF8(title).c_str());
25 // The following code requires the dialog to be realized. However, we host
26 // dialog's content in a Chrome window without really realize the dialog
28 gtk_widget_realize(dialog);
32 gtk_widget_size_request(dialog, &req);
34 gtk_util::GetWidgetSizeFromCharacters(dialog, title.length(), 0,
42 gtk_widget_set_size_request(dialog, width, -1);
86 GtkWidget* dialog local
98 GtkWidget* dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL, local
[all...]
H A Dbrowser_main_gtk.cc92 GtkWidget* dialog = gtk_message_dialog_new( local
104 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
109 gtk_window_set_title(GTK_WINDOW(dialog), message.c_str());
111 gtk_dialog_run(GTK_DIALOG(dialog));
112 gtk_widget_destroy(dialog);
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/gtk/extensions/
H A Dextension_uninstall_dialog_gtk.cc29 void OnResponse(GtkWidget* dialog, int response_id, argument
36 gtk_widget_destroy(dialog);
43 // Build the dialog.
44 GtkWidget* dialog = gtk_dialog_new_with_buttons( local
53 gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
56 GtkWidget* content_area = GTK_DIALOG(dialog)->vbox;
78 g_signal_connect(dialog, "response", G_CALLBACK(OnResponse), delegate);
79 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE);
80 gtk_widget_show_all(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/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/webkit/Source/WebCore/page/
H A DWindowFeatures.h53 , dialog(false)
77 bool dialog; member in struct:WebCore::WindowFeatures
/external/webkit/Source/WebKit/chromium/public/
H A DWebWindowFeatures.h62 bool dialog; member in struct:WebKit::WebWindowFeatures
77 , dialog(false)
99 , dialog(f.dialog)
/external/chromium/chrome/browser/extensions/
H A Dextension_file_browser_private_api.h76 // Parent class for the chromium extension APIs for the file dialog.
88 HtmlDialogView* dialog,
91 dialog_(dialog),
95 HtmlDialogView* dialog() const { return dialog_; } function in class:FileDialogFunction::Callback
101 HtmlDialogView* dialog,
136 // Closes the dialog window containing the file dialog HtmlDialogView.
137 void CloseDialog(HtmlDialogView* dialog);
144 // Select a single file. Closes the dialog window.
184 // Select multiple files. Closes the dialog windo
87 Callback(SelectFileDialog::Listener* listener, HtmlDialogView* dialog, void* params) argument
[all...]

Completed in 411 milliseconds

123