HomeSort by relevance Sort by last modified time
    Searched refs:dialog (Results 101 - 125 of 769) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/
browser_main_gtk.cc 92 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);
  /external/chromium_org/chrome/browser/resources/file_manager/css/
photo_import.css 183 /* Importing dialog styles */
184 .importing-dialog .cr-dialog-frame {
189 .importing-dialog .cr-dialog-frame .progress-container {
195 .importing-dialog .img-container {
202 .importing-dialog .content {
210 .importing-dialog .cr-dialog-title {
214 .importing-dialog .img-container[state=success]::after
    [all...]
select_album_dialog.css 5 .select-album-dialog-container {
19 .select-album-dialog-shield {
31 .select-album-dialog-frame {
44 .select-album-dialog-caption {
48 .select-album-dialog-buttons {
common.css 337 /* Icons for the action choice dialog and choosing the default app. */
358 .cr-dialog-container {
373 .cr-dialog-frame {
387 .cr-dialog-frame:focus {
406 .cr-dialog-frame.pulse {
413 .shown > .cr-dialog-frame {
419 .cr-dialog-frame {
427 .cr-dialog-shield {
440 .shown > .cr-dialog-shield {
445 .cr-dialog-title
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_experimental.js 21 'dialog': {
95 var WARNING_MSG_DIALOG_BLOCKED = '<webview>: %1 %2 dialog was blocked.';
126 'An action has already been taken for this "dialog" event.';
134 var dialog = {
146 webviewEvent.dialog = dialog;
154 // Tell the JavaScript garbage collector to track lifetime of |dialog| and
155 // call back when the dialog object has been collected.
161 browserPluginNode['-internal-trackObjectLifetime'](dialog, requestId);
164 // The default action is equivalent to canceling the dialog
    [all...]
  /external/chromium_org/content/shell/
shell_javascript_dialog_gtk.cc 20 // If there's a text entry in the dialog, get the text from the first one and
22 string16 GetPromptText(GtkDialog* dialog) {
24 g_object_get_data(G_OBJECT(dialog), kPromptTextId));
109 void ShellJavaScriptDialog::OnResponse(GtkWidget* dialog, int response_id) {
112 callback_.Run(true, GetPromptText(GTK_DIALOG(dialog)));
122 gtk_widget_destroy(dialog);
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_install_dialog_gtk.cc 42 void OnResponse(GtkWidget* dialog, int response_id,
50 gtk_widget_destroy(dialog);
59 // Build the dialog.
60 GtkWidget* dialog = gtk_dialog_new_with_buttons( local
65 GtkWidget* close_button = gtk_dialog_add_button(GTK_DIALOG(dialog),
68 GTK_DIALOG(dialog),
71 gtk_dialog_set_has_separator(GTK_DIALOG(dialog), FALSE);
74 GtkWidget* content_area = GTK_DIALOG(dialog)->vbox;
162 g_signal_connect(dialog, "response", G_CALLBACK(OnResponse), delegate);
163 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE)
    [all...]
  /external/wpa_supplicant_8/src/ap/
gas_serv.c 71 wpa_msg(hapd->msg_ctx, MSG_ERROR, "ANQP: Could not create dialog for "
98 wpa_printf(MSG_DEBUG, "ANQP: Could not find dialog for "
563 wpa_printf(MSG_DEBUG, "GAS: Timeout triggered, clearing dialog for "
564 "dialog token %d", dia->dialog_token);
801 wpa_printf(MSG_INFO, "ANQP: Could not create dialog "
802 "for " MACSTR " (dialog token %u)",
846 "GAS: GAS Initial Request from " MACSTR " (dialog token %u) ",
935 struct gas_dialog_info *dialog)
938 u8 dialog_token = dialog->dialog_token;
941 if (dialog->sd_resp == NULL)
1025 struct gas_dialog_info *dialog; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_util.h 73 // As above, but a convenience method for configuring dialog size.
76 // |resizable| also controls whether the dialog will be resizable
82 // Puts all browser windows in one window group; this will make any dialog
86 // Called after an app modal dialog that used MakeAppModalWindowGroup() was
163 // Adds an action button with the given text to the dialog. Only useful when you
165 GtkWidget* AddButtonToDialog(GtkWidget* dialog, const gchar* text,
168 GtkWidget* BuildDialogButton(GtkWidget* dialog, int ids_id,
269 void ShowDialog(GtkWidget* dialog);
270 void ShowDialogWithLocalizedSize(GtkWidget* dialog,
274 void ShowDialogWithMinLocalizedWidth(GtkWidget* dialog,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
OpenWizardAction.java 23 import org.eclipse.jface.dialogs.Dialog;
51 * The wizard dialog width, extracted from {@link NewWizardShortcutAction}
56 * The wizard dialog height, extracted from {@link NewWizardShortcutAction}
62 /** The result from the dialog */
73 /** Returns the result from {@link Dialog#open()}, available after
139 // It's not visible yet until a dialog is created and opened
141 WizardDialogEx dialog = new WizardDialogEx(parent, mWizard); local
142 dialog.create();
145 ((IUpdateWizardDialog) mWizard).updateWizardDialog(dialog);
149 Point defaultSize = dialog.getShell().getSize()
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AlertDialogTest.java 53 AlertDialog dialog = new AlertDialog.Builder(new ContextWrapper(null)).show(); local
54 assertThat(ShadowAlertDialog.getLatestAlertDialog(), sameInstance(dialog));
61 AlertDialog dialog = builder.create(); local
62 dialog.show();
63 assertThat(shadowOf(dialog).getButton(AlertDialog.BUTTON_POSITIVE), not(nullValue()));
64 assertThat(shadowOf(dialog).getButton(AlertDialog.BUTTON_NEGATIVE), nullValue());
71 AlertDialog dialog = builder.create(); local
72 dialog.show();
73 Robolectric.clickOn(dialog.getButton(AlertDialog.BUTTON_POSITIVE));
185 public void onClick(DialogInterface dialog, int which)
351 AlertDialog dialog = new AlertDialog.Builder(context).create(); local
365 AlertDialog dialog = new AlertDialog(Robolectric.application) { local
376 private DialogInterface dialog; field in class:AlertDialogTest.TestDialogOnClickListener
    [all...]
  /external/chromium_org/chrome/test/functional/
chromeos_file_browser.py 14 """Tests for ChromeOS File Browser (full page and dialog)."""
31 """Display the save-as file browser dialog.
39 dialog = self.WaitUntilExtensionViewLoaded(view_type='EXTENSION_DIALOG')
41 dialog,
43 'dialog (views = %s).' % self.GetBrowserInfo()['extension_views'])
45 pyauto.PyUITest.JavascriptExecutorInRenderView(self, dialog)
53 """Display the open file browser dialog.
59 dialog = self.WaitUntilExtensionViewLoaded(view_type='EXTENSION_DIALOG')
61 dialog,
62 msg='Could not find a loaded "open" file browser dialog: views = %s.'
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentActionHandler.java 139 * Displays a loading dialog to be used for downloading attachments.
150 // Create and show the dialog.
157 * Update progress-related views. Will also trigger a view intent if a progress dialog was
167 final AttachmentProgressDialogFragment dialog = (AttachmentProgressDialogFragment) local
169 if (dialog != null && dialog.isShowingDialogForAttachment(mAttachment)) {
170 dialog.setProgress(mAttachment.downloadedSize);
174 final boolean indeterminate = !showProgress && dialog.isIndeterminate();
175 dialog.setIndeterminate(indeterminate);
181 dialog.dismiss()
198 final Fragment dialog = mFragmentManager.findFragmentByTag(PROGRESS_FRAGMENT_TAG); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/debug/
ExternalDictionaryGetterForDebug.java 77 public void onClick(final DialogInterface dialog, final int which) {
78 dialog.dismiss();
88 public void onClick(final DialogInterface dialog, final int which) {
97 * Shows a dialog which offers the user to install the external dictionary.
119 public void onClick(final DialogInterface dialog, final int which) {
120 dialog.dismiss();
127 public void onClick(final DialogInterface dialog, final int which) {
129 dialog.dismiss();
136 public void onCancel(DialogInterface dialog) {
169 // There was an error: show a dialog
    [all...]
  /packages/services/Telephony/src/com/android/phone/
NetworkSetting.java 19 import android.app.Dialog;
59 //dialog ids
109 // Always try to dismiss the dialog because activity may
110 // be moved to background after dialog is shown.
114 // "auto select" is always trigged in foreground, so "auto select" dialog
117 Log.w(LOG_TAG, "[NetworksList] Fail to dismiss auto select dialog", e);
206 public void onCancel(DialogInterface dialog) {
272 protected Dialog onCreateDialog(int id) {
276 ProgressDialog dialog = new ProgressDialog(this); local
279 // It would be more efficient to reuse this dialog by movin
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 48 import javax.sip.Dialog;
185 private SIPDialog dialog; field in class:SIPServerTransaction
675 // JvB: Removed the condition 'dialog!=null'. Trying should also
1172 SIPDialog dialog = (SIPDialog) this.dialog; local
1236 SIPDialog dialog = this.dialog; local
    [all...]
  /external/chromium_org/chrome/browser/printing/
print_preview_dialog_controller_browsertest.cc 28 explicit RequestPrintPreviewObserver(WebContents* dialog)
29 : WebContentsObserver(dialog) {
60 explicit PrintPreviewDialogClonedObserver(WebContents* dialog)
61 : WebContentsObserver(dialog) {
85 explicit PrintPreviewDialogDestroyedObserver(WebContents* dialog)
86 : WebContentsObserver(dialog),
167 // dialog for the new tab contents.
173 // Get the preview dialog for the initiator tab.
176 // Check a new print preview dialog got created.
181 // preview dialog
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
simple_message_box_views.cc 72 // Set to false as soon as the user clicks a dialog button; this tells the
177 scoped_refptr<SimpleMessageBoxViews> dialog(
179 CreateBrowserModalDialogViews(dialog.get(), parent)->Show();
183 // exists when the dialog is closed by some other means than
186 parent : dialog->GetWidget()->GetNativeWindow();
188 ->RunWithDispatcher(dialog.get(), anchor, true);
193 base::RunLoop run_loop(dialog);
197 return dialog->result();
  /packages/apps/Email/src/com/android/email/activity/
InsertQuickResponseDialog.java 24 import android.app.Dialog;
41 * Dialog which lists QuickResponses for the specified account. On user selection, will call
62 * Create and returns new dialog.
69 final InsertQuickResponseDialog dialog = new InsertQuickResponseDialog(); local
77 dialog.setTargetFragment(callbackFragment, 0);
82 dialog.setArguments(args);
83 return dialog;
87 public Dialog onCreateDialog(Bundle savedInstanceState) {
96 // Now that Callback implementation is verified, build the dialog
144 public void onClick(DialogInterface dialog, int which)
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ModalDialogTest.java 39 "<html><title>Modal Dialog Test</title><p>Testcase.</p></title></html>");
54 * Verifies modal alert-dialog appearance and that JavaScript execution is
65 assertNotNull("No dialog showing.", jsDialog);
82 assertNotNull("No dialog showing.", jsDialog);
103 assertNotNull("No dialog showing.", jsDialog);
106 assertNotNull("No cancel button in confirm dialog.", buttons[0]);
112 assertNotNull("No OK button in confirm dialog.", buttons[2]);
116 assertTrue("JavaScript execution should continue after closing dialog.",
125 assertNotNull("No dialog showing.", jsDialog);
128 assertTrue("JavaScript execution should continue after closing dialog."
250 final AlertDialog dialog = jsDialog.getDialogForTest(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 29 * A dialog for creating a new group.
47 GroupCreationDialogFragment dialog = new GroupCreationDialogFragment(listener); local
52 dialog.setArguments(args);
53 dialog.show(fragmentManager, FRAGMENT_TAG);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ClearCallLogDialog.java 20 import android.app.Dialog;
37 * Dialog that clears the call log after confirming with the user
43 /** Preferred way to show this dialog */
45 ClearCallLogDialog dialog = new ClearCallLogDialog(); local
46 dialog.show(fragmentManager, "deleteCallLog");
50 public Dialog onCreateDialog(Bundle savedInstanceState) {
55 public void onClick(DialogInterface dialog, int which) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ui/
SplashScreen.java 20 import android.app.Dialog;
33 * Show a dialog when the user first opens the keyboard.
35 * The splash screen is a modal dialog box presented when the user opens this keyboard for the first
51 final Dialog mSplashDialog;
62 public void onClick(DialogInterface dialog, int which) {
70 public void onClick(DialogInterface dialog, int which) {
83 public void onCancel(DialogInterface dialog) {
96 * @param windowToken {@link IBinder} to attach dialog to
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ExportScreenshotAction.java 50 FileDialog dialog = new FileDialog(shell, SWT.SAVE); local
51 dialog.setFilterExtensions(new String[] { "*.png" }); //$NON-NLS-1$
52 String path = dialog.open();
  /external/chromium/chrome/browser/ui/gtk/
constrained_window_gtk.cc 39 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

Completed in 947 milliseconds

1 2 3 45 6 7 8 91011>>