HomeSort by relevance Sort by last modified time
    Searched full:dialog (Results 226 - 250 of 3536) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/
profile_signin_confirmation.js 10 $('dialog-message').textContent = loadTimeData.getStringF(
12 $('dialog-prompt').textContent = loadTimeData.getStringF(
29 $('dialog-prompt').hidden = true;
37 $('dialog-title').hidden = true;
  /external/chromium_org/chrome/browser/ui/cocoa/content_settings/
collected_cookies_mac_browsertest.mm 25 CollectedCookiesMac* dialog = new CollectedCookiesMac(
29 dialog->PerformClose();
36 CollectedCookiesMac* dialog = new CollectedCookiesMac(
39 dialog->sheet_controller();
  /external/chromium_org/chrome/browser/ui/views/
constrained_window_views.h 26 // Update the position of dialog |widget| against |dialog_host|. This is used to
36 // Create a widget for |dialog| that is modal to the browser window |parent|.
37 // This places the dialog appropriately if |parent| is a valid browser window.
38 views::Widget* CreateBrowserModalDialogViews(views::DialogDelegate* dialog,
select_file_dialog_extension.h 29 // Shows a dialog box for selecting a file or a folder, using the
35 // Opaque ID type for identifying the tab spawned each dialog, unique for
50 virtual void ExtensionDialogClosing(ExtensionDialog* dialog) OVERRIDE;
51 virtual void ExtensionTerminated(ExtensionDialog* dialog) OVERRIDE;
93 // Check if the list of pending dialogs contains dialog for |routing_id|.
96 // Returns true if the dialog has multiple file type choices.
101 // Host for the extension that implements this dialog.
104 // ID of the tab that spawned this dialog, used to route callbacks.
107 // Pointer to the profile the dialog is running in.
110 // The window that created the dialog
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
MonthPickerDialog.java 14 * @param context The context the dialog is to run in.
16 * @param year The initial year of the dialog.
17 * @param monthOfYear The initial month of the dialog.
31 * Gets the {@link MonthPicker} contained in this dialog.
  /external/chromium_org/content/test/data/accessibility/
modal-dialog-closed-expected-android.txt 2 android.view.View clickable name='Test that elements respawn in the accessibility tree after a modal dialog closes.'
modal-dialog-closed-expected-mac.txt 3 AXStaticText AXValue='Test that elements respawn in the accessibility tree after a modal dialog closes.'
  /external/chromium_org/third_party/WebKit/ManualTests/NPN_Invoke/
test.html 21 <p style="color: green">Success: An alert dialog is shown with the message &quot;Success!&quot;</p>
22 <p style="color: red">Failure: No alert dialog is shown, or the message is not &quot;Success!&quot;</p>
25 <p style="color: green">Success: No alert dialog is shown, and Safari remains open (does not crash).</p>
26 <p style="color: red">Failure: An alert dialog is shown, or Safari crashes.</p>
  /external/chromium_org/win8/metro_driver/
metro_dialog_box.h 15 // Provides functionality to display a dialog box
30 // Displays the dialog box.
33 // Dismisses the dialog box.
58 // The actual dialog box.
  /external/nist-sip/java/gov/nist/javax/sip/
ResponseEventExt.java 4 import javax.sip.Dialog;
16 Dialog dialog, Response response) {
17 super(source,clientTransaction,dialog,response);
  /external/nist-sip/java/javax/sip/
DialogState.java 17 "Invalid dialog state: " + state);
Transaction.java 11 Dialog getDialog();
  /external/replicaisland/res/values/
styles.xml 4 <style name="Theme.ConversationDialog" parent="android:style/Theme.Dialog">
  /packages/apps/Mms/src/com/android/mms/ui/
MiniPreferenceActivity.java 35 AlertDialog dialog = builder.setMessage(getResources() local
42 dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
43 public void onDismiss(DialogInterface dialog) {
53 public void onClick(DialogInterface dialog, int which) {
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
TrampolineActivity.java 21 import android.app.Dialog;
117 final PausedDialogFragment dialog = new PausedDialogFragment(); local
120 dialog.setArguments(args);
121 dialog.show(fm, TAG_PAUSED);
125 public Dialog onCreateDialog(Bundle savedInstanceState) {
144 public void onClick(DialogInterface dialog, int which) {
153 public void onDismiss(DialogInterface dialog) {
154 super.onDismiss(dialog);
161 final FailedDialogFragment dialog = new FailedDialogFragment(); local
165 dialog.setArguments(args)
    [all...]
  /frameworks/base/core/java/android/app/
Dialog.java 61 * {@link Activity#onPrepareDialog(int, Dialog)},
64 * that managed this dialog.
66 * <p>Often you will want to have a Dialog display on top of the current
70 * your Dialog takes input focus, as it the default) with the following code:
82 public class Dialog implements DialogInterface, Window.Callback,
84 private static final String TAG = "Dialog";
126 * Create a Dialog window that uses the default dialog frame style.
128 * @param context The Context the Dialog is to run it. In particular, it
132 public Dialog(Context context)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/sync/
profile_signin_confirmation_dialog_views.h 27 // A tab-modal dialog to allow a user signing in with a managed account
33 // Create and show the dialog, which owns itself.
67 // Shows the dialog and releases ownership of this object. It will
68 // delete itself when the dialog is closed. If |prompt_for_new_profile|
69 // is true, the dialog will offer to create a new profile before signin.
72 // Weak ptr to label for dialog explanation text.
84 // Dialog button handler.
  /external/chromium_org/chrome/browser/ui/webui/signin/
profile_signin_confirmation_dialog.h 27 // A tab-modal dialog to allow a user signing in with a managed account
31 // Create and show the dialog, which owns itself.
38 // Closes the dialog, which will delete itself.
49 // Shows the dialog and releases ownership of this object. It will
50 // delete itself when the dialog is closed. If |prompt_for_new_profile|
51 // is true, the dialog will offer to create a new profile before signin.
79 // Weak pointer to the dialog delegate.
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZonePickerDialog.java 19 import android.app.Dialog;
93 public Dialog onCreateDialog(Bundle savedInstanceState) {
94 Dialog dialog = super.onCreateDialog(savedInstanceState); local
95 dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
96 dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
97 return dialog;
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupDeletionDialogFragment.java 19 import android.app.Dialog;
29 * A dialog for deleting a group.
39 GroupDeletionDialogFragment dialog = new GroupDeletionDialogFragment(); local
44 dialog.setArguments(args);
45 dialog.show(fragmentManager, "deleteGroup");
49 public Dialog onCreateDialog(Bundle savedInstanceState) {
59 public void onClick(DialogInterface dialog, int whichButton) {
  /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/services/Telephony/src/com/android/phone/
EditPinPreference.java 34 * for the dialog.
59 * Overridden to setup the correct dialog layout, as well as setting up
64 // set the dialog layout
67 View dialog = super.onCreateDialogView(); local
72 return dialog;
103 * Externally visible method to bring up the dialog to
104 * for multi-step / multi-dialog requests (like changing
  /cts/tests/tests/widget/src/android/widget/cts/
SpinnerTest.java 23 import android.app.Dialog;
109 Dialog dialog = new Dialog(getActivity()); local
110 dialog.show();
111 assertTrue(dialog.isShowing());
112 spinner.onClick(dialog, -10);
114 assertFalse(dialog.isShowing());
129 // TODO: find the dialog and get its title to assert whether setPrompt() takes effect?
152 // TODO: find the dialog and get its title to assert whether setPromptId() takes effect
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
conflict_dialog.js 8 * Dialog to confirm the operation for conflicted file operations.
10 * @param {HTMLElement} parentNode Node to be parent for this dialog.
33 this.applyAllCheckbox_.id = 'conflict-confirm-dialog-apply-all-checkbox';
71 this.frame_.id = 'conflict-confirm-dialog';
90 * Shows the conflict confirm dialog.
95 * @return {boolean} True if the dialog can show successfully. False if the
96 * dialog failed to show due to an existing dialog.
105 '', // We dont't show the title for the dialog.
120 * Hides the dialog box with the result
    [all...]
  /external/chromium_org/chrome/installer/util/
html_dialog.h 19 // Interface for implementing a native HTML dialog.
23 HTML_DLG_ERROR = 0, // Dialog could not be shown.
28 HTML_DLG_TIMEOUT = 5, // The dialog has timed out and defaults apply.
32 // Callbacks that allow to tweak the appearance of the dialog.
48 // Shows the HTML in a modal dialog. The buttons and other UI are also done
60 // Factory method for the native HTML Dialog. When done with the object use
65 // This class leverages HTMLDialog to create a dialog that is suitable
66 // for a end-user-agreement modal dialog. The html shows a fairly standard
72 // |param| is a string that will be passed to the dialog as a parameter via
83 // Shows the dialog and blocks for user input. The return value is one o
    [all...]

Completed in 893 milliseconds

1 2 3 4 5 6 7 8 91011>>