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

123456

/external/chromium_org/extensions/shell/browser/
H A Dshell_web_contents_modal_dialog_manager.cc11 NativeWebContentsModalDialog dialog,
10 CreateNativeWebModalManager( NativeWebContentsModalDialog dialog, SingleWebContentsDialogManagerDelegate* native_delegate) argument
/external/chromium_org/chrome/browser/ui/cocoa/
H A Djavascript_app_modal_dialog_cocoa.h24 explicit JavaScriptAppModalDialogCocoa(JavaScriptAppModalDialog* dialog);
35 JavaScriptAppModalDialog* dialog() const { return dialog_.get(); } function in class:JavaScriptAppModalDialogCocoa
38 // Returns the NSAlert associated with the modal dialog.
/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;
/external/robolectric/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;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DRepostFormWarningDialog.java16 * Form resubmission warning dialog. Presents the cancel/continue choice and fires one of two
20 // Warning dialog currently being shown, stored for testing.
37 public void onClick(DialogInterface dialog, int id) {
44 public void onClick(DialogInterface dialog, int id) {
50 Dialog dialog = builder.create();
51 setCurrentDialog(dialog);
53 return dialog;
57 public void onDismiss(DialogInterface dialog) { argument
58 super.onDismiss(dialog);
63 * Sets the currently displayed dialog i
66 setCurrentDialog(Dialog dialog) argument
[all...]
H A DKeyStoreSelectionDialog.java16 * Client certificate KeyStore selection dialog. When smart card (CAC) support is enabled, this
17 * dialog allows choosing between (the default) system certificate store and the smart card for
30 * Constructor for KeyStore selection dialog.
36 * @param cancelCallback Runnable that's invoked when the user cancels or closes the dialog.
58 public void onClick(DialogInterface dialog, int id) {
68 public void onClick(DialogInterface dialog, int id) {
74 public void onClick(DialogInterface dialog, int id) {
83 public void onDismiss(DialogInterface dialog) { argument
84 super.onDismiss(dialog);
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
H A DRepostFormWarningTest.java64 AlertDialog dialog = (AlertDialog) RepostFormWarningDialog.getCurrentDialog();
65 assertNotNull("Form resubmission warning not shown upon reload.", dialog);
68 clickButton(dialog, AlertDialog.BUTTON_POSITIVE);
71 // Verify that the reference to the dialog in RepostFormWarningDialog was cleared.
72 assertNull("Form resubmission warning dialog was not dismissed correctly.",
91 AlertDialog dialog = (AlertDialog) RepostFormWarningDialog.getCurrentDialog();
92 assertNotNull("Form resubmission warning not shown upon reload.", dialog);
95 clickButton(dialog, AlertDialog.BUTTON_NEGATIVE);
104 // Verify that the reference to the dialog in RepostFormWarningDialog was cleared.
105 assertNull("Form resubmission warning dialog wa
133 clickButton(final AlertDialog dialog, final int buttonId) argument
[all...]
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/sync/
H A DAccountChooserFragment.java42 public void onClick(DialogInterface dialog, int which) { argument
H A DSignoutFragment.java30 public void onClick(DialogInterface dialog, int which) { argument
/external/chromium_org/chrome/browser/chromeos/login/
H A Dhelp_app_launcher.cc68 LoginWebDialog* dialog = new LoginWebDialog( local
76 dialog->SetDialogSize(l10n_util::GetLocalizedContentsWidthInPixels(
80 dialog->Show();
81 // The dialog object will be deleted on dialog close.
/external/chromium_org/chrome/browser/chromeos/ui/
H A Didle_logout_dialog_view_browsertest.cc29 virtual void LogoutCurrentUser(IdleLogoutDialogView* dialog) OVERRIDE {
30 dialog->GetWidget()->Close();
53 IdleLogoutDialogView* dialog = IdleLogoutDialogView::current_instance(); local
54 ASSERT_TRUE(dialog != NULL);
55 EXPECT_TRUE(dialog->visible());
/external/chromium_org/chrome/browser/ui/app_modal_dialogs/
H A Dapp_modal_dialog_queue.cc15 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) { argument
17 ShowModalDialog(dialog);
20 app_modal_dialog_queue_.push_back(dialog);
24 AppModalDialog* dialog = GetNextDialog(); local
25 if (dialog)
26 ShowModalDialog(dialog);
33 // As part of showing a modal dialog we may end up back in this method
34 // (showing a dialog activates the WebContents, which can trigger a call
36 // activate the tab contents the dialog is shown.
55 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) { argument
69 AppModalDialog* dialog = app_modal_dialog_queue_.front(); local
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DChromeDatePickerDialog.java13 * OndateSetListener.onDateSet() even when the dialog is dismissed (e.g. back button, tap
34 public void onClick(DialogInterface dialog, int which) { argument
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_screen_position_client_unittest.cc14 // Verifies setting the bounds of a dialog parented to a Widget with a
24 // Owned by |dialog|.
27 Widget* dialog = DialogDelegate::CreateDialogWidget( local
29 dialog->SetBounds(gfx::Rect(11, 12, 200, 200));
30 EXPECT_EQ("11,12", dialog->GetWindowBoundsInScreen().origin().ToString());
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dprogress.c7 static GtkWidget *dialog; variable
15 if (dialog == NULL) {
19 dialog = gtk_window_new(GTK_WINDOW_TOPLEVEL);
25 gtk_container_add(GTK_CONTAINER(dialog), vbox);
27 gtk_window_set_title(GTK_WINDOW(dialog), "perf");
28 gtk_window_resize(GTK_WINDOW(dialog), 300, 80);
29 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER);
31 gtk_widget_show_all(dialog);
46 gtk_widget_destroy(dialog);
48 dialog
[all...]
H A Dutil.c34 GtkWidget *dialog; local
44 dialog = gtk_message_dialog_new_with_markup(GTK_WINDOW(pgctx->main_window),
49 gtk_dialog_run(GTK_DIALOG(dialog));
51 gtk_widget_destroy(dialog);
/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
/external/chromium_org/chrome/browser/chromeos/login/ui/
H A Dsimple_web_view_dialog_browsertest.cc57 SimpleWebViewDialog* dialog = proxy->captive_portal_view_for_testing(); local
58 CHECK(dialog) << "CaptivePortalView is not initialized";
59 return new InterstitialPageDelegate(dialog->web_view_->web_contents());
/external/chromium_org/chrome/browser/ui/views/
H A Dconstrained_window_views_browsertest.cc53 // A helper function to create and show a web contents modal dialog.
55 scoped_ptr<TestDialog> dialog(new TestDialog());
56 ShowWebModalDialogViews(dialog.get(), web_contents);
57 return dialog.Pass();
78 // Create a second dialog. This will also be modal to |web_contents|, but will
98 // Creating a new tab should take focus away from the other tab's dialog.
104 // Activating the previous tab should bring focus to the dialog.
119 scoped_ptr<TestDialog> dialog = ShowModalDialog( local
121 EXPECT_TRUE(dialog->GetWidget()->IsVisible());
124 EXPECT_EQ(NULL, dialog
130 scoped_ptr<TestDialog> dialog = ShowModalDialog( local
152 scoped_ptr<TestDialog> dialog = ShowModalDialog(web_contents); local
186 scoped_ptr<TestDialog> dialog = ShowModalDialog(web_contents); local
[all...]
H A Dweb_contents_modal_dialog_manager_views.cc51 NativeWebContentsModalDialog dialog,
54 dialog_(dialog),
73 views::Widget* widget = GetWidget(dialog());
105 views::Widget* widget = GetWidget(dialog());
120 // TODO(pkotwicz): Control the z-order of the constrained dialog via
122 // shadows are below the constrained dialog in z-order when we do this.
128 views::Widget* widget = GetWidget(dialog());
138 GetWidget(dialog())->Close();
142 views::Widget* widget = GetWidget(dialog());
177 // ordering in e.g. the print preview dialog
50 NativeWebContentsModalDialogManagerViews( NativeWebContentsModalDialog dialog, SingleWebContentsDialogManagerDelegate* native_delegate) argument
217 GetWidget(NativeWebContentsModalDialog dialog) argument
255 CreateNativeWebModalManager( NativeWebContentsModalDialog dialog, SingleWebContentsDialogManagerDelegate* native_delegate) argument
[all...]
/external/chromium_org/components/web_modal/
H A Dweb_contents_modal_dialog_manager.h32 NativeWebContentsModalDialog dialog,
35 // Shows the dialog as a web contents modal dialog. The dialog will notify via
37 void ShowModalDialog(NativeWebContentsModalDialog dialog);
39 // Allow clients to supply their own native dialog manager. Suitable for
42 NativeWebContentsModalDialog dialog,
48 // Focus the topmost modal dialog. IsDialogActive() must be true when calling
54 virtual void WillClose(NativeWebContentsModalDialog dialog) OVERRIDE;
79 DialogState(NativeWebContentsModalDialog dialog,
83 NativeWebContentsModalDialog dialog; member in struct:web_modal::WebContentsModalDialogManager::DialogState
[all...]
/external/chromium_org/remoting/host/
H A Dcontinue_window_linux.cc104 void ContinueWindowGtk::OnResponse(GtkDialog* dialog, int response_id) { argument

Completed in 1333 milliseconds

123456