/external/chromium/chrome/browser/sync/glue/ |
synchronized_preferences.h | 18 // Options dialog: Basics tab. 28 // Options dialog: Personal Stuff tab. 33 // Options dialog: Under the hood -> Content Settings -> Cookies. 38 // Options dialog: Under the hood -> Content Settings -> 43 // Options dialog: Under the hood -> Content Settings -> Location. 44 // Exceptions not working (dialog not working either). 48 // Options dialog: under the hood -> Content Settings -> Notifications. 51 // Options dialog: Under the hood -> Clear browsing data. 61 // Options dialog: Under the hood -> Change proxy settings. 62 // Uses native OS dialog, not synced [all...] |
/external/webkit/Tools/QtTestBrowser/ |
webpage.cpp | 135 QDialog* dialog = new QDialog(QApplication::activeWindow()); local 136 dialog->setWindowTitle("HTTP Authentication"); 138 QGridLayout* layout = new QGridLayout(dialog); 139 dialog->setLayout(layout); 141 QLabel* messageLabel = new QLabel(dialog); 148 QLabel* userLabel = new QLabel("Username:", dialog); 150 QLineEdit* userInput = new QLineEdit(dialog); 153 QLabel* passLabel = new QLabel("Password:", dialog); 155 QLineEdit* passInput = new QLineEdit(dialog); 161 | QDialogButtonBox::Cancel, Qt::Horizontal, dialog); [all...] |
/packages/apps/Contacts/src/com/android/contacts/util/ |
DialogManager.java | 22 import android.app.Dialog; 41 * To actually show a Dialog, the View uses {@link DialogManager#showDialogInView(View, Bundle)}, 63 * Called by a View to show a dialog. It has to pass itself and a Bundle with extra information. 85 public Dialog onCreateDialog(final int id, final Bundle bundle) { 101 final Dialog dialog = ((DialogShowingView)view).createDialog(bundle); local 102 if (dialog == null) { 103 return dialog; 106 // As we will never re-use this dialog, we can completely kill it here 107 dialog.setOnDismissListener(new OnDismissListener() [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
AsyncDialog.java | 32 * than half a second, a progress modal dialog is displayed. 53 * @param dialogStringId the id of the string to be shown in the dialog 74 // clear the dialog so any pending dialog.dismiss() call can be avoided 92 * Creates the Task with the specified string id to be shown in the dialog 97 // lazy initialization of progress dialog for loading attachments 105 * Initializes the progress dialog with its intended settings. 108 ProgressDialog dialog = new ProgressDialog(mActivity); local 109 dialog.setIndeterminate(true); 110 dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPDialog.java | 119 * Tracks dialogs. A dialog is a peer to peer association of communicating SIP entities. For 120 * INVITE transactions, a Dialog is created when a success message is received (i.e. a response 122 * dialog identifier that can be used to retrieve this structure from the SipStack. 131 public class SIPDialog implements javax.sip.Dialog, DialogExt { 153 // Should be transient, in case the dialog is serialized it will be null 204 // Dialog. 220 // the amount of time to keep this dialog around before the stack GC's it 258 // List of event listeners for this dialog 264 // keep the whole transaction object for the duration of the dialog. It also 318 * Send BYE to the Dialog. 376 SIPDialog dialog = SIPDialog.this; local 399 SIPDialog dialog = SIPDialog.this; local [all...] |
/packages/apps/Settings/src/com/android/settings/ |
SettingsPreferenceFragment.java | 19 import android.app.Dialog; 38 * Base class for Settings fragments, with some helper functions and dialog management. 131 // Dialog management 135 Log.e(TAG, "Old dialog fragment not null!"); 141 public Dialog onCreateDialog(int dialogId) { 147 // To be able to dismiss dialog at that time, don't check 156 * Sets the OnCancelListener of the dialog shown. This method can only be 167 * Sets the OnDismissListener of the dialog shown. This method can only be 211 public Dialog onCreateDialog(Bundle savedInstanceState) { 223 // This dialog fragment could be created from non-SettingsPreferenceFragmen [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/ |
ProjectsActivity.java | 21 import android.app.Dialog; 61 // Dialog ids 65 // Dialog parameters 124 // Open new project dialog when user clicks on the "create new project" card. 191 public Dialog onCreateDialog(int id, final Bundle bundle) { 201 public void onClick(DialogInterface dialog, int which) { 203 (TextView)((AlertDialog)dialog).findViewById(R.id.text_1); 212 public void onClick(DialogInterface dialog, int which) { 218 public void onCancel(DialogInterface dialog) { 232 0, // no icons for this dialog [all...] |
/cts/tests/tests/holo/src/android/holo/cts/ |
BitmapDeletionActivity.java | 23 import android.app.Dialog; 71 protected Dialog onCreateDialog(int id, Bundle args) { 74 ProgressDialog dialog = new ProgressDialog(BitmapDeletionActivity.this); local 75 dialog.setMessage(getString(R.string.deleting_bitmaps)); 76 return dialog; 93 public void onClick(DialogInterface dialog, int which) {
|
/external/chromium/chrome/browser/chromeos/login/ |
login_html_dialog.h | 21 // Launches html dialog during OOBE/Login with specified URL and title. 25 // Delegate class to get notifications from the dialog. 30 // Called when dialog has been closed. 46 // Shows created dialog. 49 // Overrides default width/height for dialog. 86 // Dialog display size.
|
/external/webkit/Source/WebKit/chromium/public/ |
WebFileChooserParams.h | 41 // If |multiSelect| is true, the dialog allow to select multiple files. 43 // If |directory| is true, the dialog allows the user to select a directory. 45 // |title| is a title of a file chooser dialog. It can be an empty string. 47 // |initialValue| is a filename which the dialog should select by default. 51 // The dialog may restrict selectable files to the specified MIME types. 60 // before opening a file chooser dialog.
|
/packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/ |
DialogSmsDisplay.java | 21 import android.app.Dialog; 82 protected Dialog onCreateDialog(int id) { 91 public void onCancel(DialogInterface dialog) { 92 dialog.dismiss(); 98 public void onClick(DialogInterface dialog, int whichButton) { 99 dialog.dismiss();
|
/packages/apps/Browser/src/com/android/browser/ |
PageDialogsHandler.java | 88 * Displays an http-authentication dialog. 128 * Displays a page-info dialog. 131 * this dialog was opened from the SSL-certificate-on-error dialog or 133 * the parent dialog or simply dismiss. 172 public void onClick(DialogInterface dialog, 177 // if we came here from the SSL error dialog 179 // go back to the SSL error dialog 189 public void onCancel(DialogInterface dialog) { 193 // if we came here from the SSL error dialog [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/ |
SpinnerProgressDialog.java | 19 import android.app.Dialog; 33 * Spinner model progress dialog that disables all tools for user interaction after it shows up and 36 public class SpinnerProgressDialog extends Dialog { 43 public boolean onTouch(DialogInterface dialog, MotionEvent event); 66 // Disable enabled tools when showing spinner progress dialog. 75 // Enable tools that were disabled by this spinner progress dialog.
|
/sdk/monkeyrunner/src/com/android/monkeyrunner/ |
MonkeyRunner.java | 114 @MonkeyRunnerExported(doc = "Display an alert dialog to the process running the current " + 115 "script. The dialog is modal, so the script stops until the user dismisses the " + 116 "dialog.", 119 "The message to display in the dialog.", 120 "The dialog's title. The default value is 'Alert'.", 121 "The text to use in the dialog button. The default value is 'OK'." 134 @MonkeyRunnerExported(doc = "Display a dialog that accepts input. The dialog is ," + 135 "modal, so the script stops until the user clicks one of the two dialog buttons. To " + 137 "dialog without entering a value, the user clicks the 'Cancel' button. Use the " [all...] |
/frameworks/base/core/java/android/app/ |
AlertDialog.java | 39 * A subclass of Dialog that can display one, two or three buttons. If you only want to 40 * display a String in this dialog box, use the setMessage() method. If you 52 * any views in the dialog return true from {@link View#onCheckIsTextEditor() 53 * View.onCheckIsTextEditor()}. Generally you want this set for a Dialog 64 public class AlertDialog extends Dialog implements DialogInterface { 69 * the traditional (pre-Holo) alert dialog theme. 105 * to get the dialog's style (such as {@link android.R.attr#alertDialogTheme} 149 * Gets one of the buttons used in the dialog. 151 * If a button does not exist in the dialog, null will be returned. 156 * @return The button from the dialog, or null if a button does not exist 913 final AlertDialog dialog = new AlertDialog(P.mContext, mTheme, false); local 931 AlertDialog dialog = create(); local [all...] |
/external/chromium/chrome/browser/ui/ |
shell_dialogs.h | 28 // Returns true if a shell dialog box is currently being shown modally 32 // Notifies the dialog box that the listener has been destroyed and it should 40 // Shows a dialog box for selecting a file or a folder. 71 // the user canceling or closing the selection dialog box, for example). 79 // Creates a dialog box helper. This object is ref-counted, but the returned 83 // Holds information about allowed extensions on a file save dialog. 106 // Otherwise it will start displaying the dialog box. This will also 107 // block the calling window until the dialog box is complete. The listener 110 // |type| is the type of file dialog to be shown, see Type enumeration above. 111 // |title| is the title to be displayed in the dialog. If this string i [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_file_browser_private_api.h | 76 // 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 window [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...] |
/packages/apps/Gallery/res/values/ |
strings.xml | 119 <!-- Confirmation dialog title after deleting a picture --> 121 <!-- Confirmation dialog message after deleting a picture --> 123 <!-- Confirmation dialog message after deleting a video --> 126 <!-- Confirmation dialog message after deleting a multiple media files --> 177 <!-- Title of dialog that appears after selecting Picture size setting option --> 179 <!-- Options in dialog that appears after selecting Picture size setting option --> 186 <!-- Option values in dialog that appears after selecting Picture size setting option --> 191 <!-- Default option value in dialog that appears after selecting Picture size setting option --> 197 <!-- Title of dialog that appears after selecting Picture sort setting option --> 199 <!-- Options in dialog that appears after selecting Picture sort setting option -- [all...] |
/cts/tests/src/android/app/cts/ |
AppStubActivity.java | 20 import android.app.Dialog; 35 private Dialog mDialog; 69 public Dialog getDialogById(int id) { 74 public Dialog onCreateDialog(int id) { 76 mDialog = new Dialog(this); 81 protected void onPrepareDialog(int id, Dialog dialog) { 82 super.onPrepareDialog(id, dialog);
|
/development/samples/AppNavigation/res/values/ |
themes.xml | 18 <style name="Theme.Dialog" parent="@android:style/Theme.Dialog" />
|
/development/samples/AppNavigation/res/values-v11/ |
themes.xml | 18 <style name="Theme.Dialog" parent="@android:style/Theme.Holo.Dialog" />
|
/development/samples/SupportAppNavigation/res/values/ |
themes.xml | 18 <style name="Theme.Dialog" parent="@android:style/Theme.Dialog" />
|
/development/samples/SupportAppNavigation/res/values-v11/ |
themes.xml | 18 <style name="Theme.Dialog" parent="@android:style/Theme.Holo.Dialog" />
|
/external/chromium/chrome/browser/chromeos/ |
choose_mobile_network_dialog.h | 13 // Dialog for manual selection of cellular network. 16 // Shows the dialog box.
|