/external/chromium_org/ui/web_dialogs/ |
web_dialog_delegate.h | 37 // Returns true if the contents needs to be run in a modal dialog. 40 // Returns the title of the dialog. 43 // Returns the dialog's name identifier. Used to identify this dialog for 47 // Get the HTML file path for the content to load in the dialog. 57 // Get the size of the dialog. 60 // Get the size of the dialog. 63 // Gets the JSON string input to use when showing the dialog. 70 // A callback to notify the delegate that a web dialog has been shown. 71 // |webui| is the WebUI with which the dialog is associated [all...] |
/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/ |
browser_dialogs.h | 37 // The dialog is a singleton. If the dialog is already opened, it won't do 44 // Creates and shows an HTML dialog with the given delegate and context. 54 // Shows the collected cookies dialog box. 65 // Shows or hide the hung renderer dialog for the given WebContents. 66 // We need to pass the WebContents to the dialog, because multiple tabs can hang 75 // Shows the create web app shortcut dialog box.
|
/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. 66 // Shows the dialog and releases ownership of this object. It will 67 // delete itself when the dialog is closed. If |prompt_for_new_profile| 68 // is true, the dialog will offer to create a new profile before signin. 71 // Weak ptr to label for dialog explanation text. 83 // 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/ui/webui/ |
certificate_viewer_webui.h | 27 // Dialog for displaying detailed certificate information. This is used in linux 28 // and chromeos builds to display detailed information in a floating dialog when 39 // Show the dialog using the given parent window. 42 // Add WebDialogObserver for this dialog. 45 // Remove WebDialogObserver for this dialog. 68 // The window displaying this dialog. 71 // The title of the certificate viewer dialog, Certificate Viewer: CN. 79 // Dialog handler which handles calls from the JS WebUI code to view certificate 91 // Brings up the export certificate dialog for the chosen certificate in the 111 // The dialog window [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...] |
/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...] |
/packages/apps/Browser/src/com/android/browser/ |
HttpAuthenticationDialog.java | 30 * HTTP authentication dialog. 47 * Creates an HTTP authentication dialog. 73 * dialog. 80 * Shows the dialog. 88 * Hides, recreates, and shows the dialog. This can be used to handle configuration changes. 134 public void onClick(DialogInterface dialog, int whichButton) { 140 public void onClick(DialogInterface dialog, int whichButton) { 144 public void onCancel(DialogInterface dialog) { 149 // Make the IME appear when the dialog is displayed if applicable. 161 * Interface for listeners that are notified when the user cancels the dialog [all...] |
/external/chromium/chrome/browser/ui/ |
browser_dialogs.h | 23 // The dialog is a singleton. If the dialog is already opened, it won't do 30 // Creates and shows an HTML dialog with the given delegate and profile. 48 // Shows or hide the hung renderer dialog for the given TabContents. 49 // We need to pass the TabContents to the dialog, because multiple tabs can hang
|
/external/chromium_org/chrome/browser/chromeos/ |
sim_dialog_delegate.h | 15 // SIM unlock dialog displayed in cases when SIM card has to be unlocked. 18 // Type of the SIM dialog that is launched. 20 SIM_DIALOG_UNLOCK = 0, // General unlock flow dialog (PIN/PUK). 21 SIM_DIALOG_CHANGE_PIN = 1, // Change PIN dialog. 28 // Shows the SIM unlock dialog box with one of the specified modes.
|
/external/chromium_org/chrome/browser/chromeos/ui/ |
idle_logout_dialog_view_browsertest.cc | 29 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/ |
process_singleton_modal_dialog_lock.h | 20 // command-line handling when a modal dialog is active during startup. The 24 // While a dialog is active, the ProcessSingleton notification 28 // 2. The active dialog is brought to the foreground and/or the taskbar icon 44 // Receives a handle to the active modal dialog, or NULL if the active dialog
|