HomeSort by relevance Sort by last modified time
    Searched full:dialog (Results 176 - 200 of 3361) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/replicaisland/res/xml/
level_final_boss_dialog.xml 2 <dialog>
45 </dialog>
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
DialogActivity.java 27 import android.app.Dialog;
53 mButton1.setText("Dialog WITHOUT EditText");//(R.string.open_dialog_scrollable);
63 mButton2.setText("Dialog WITH EditText");//(R.string.open_dialog_nonscrollable);
81 protected Dialog onCreateDialog(int id)
94 protected Dialog createDialog(boolean bEditText)
107 Dialog d = new Dialog(this);
108 d.setTitle("The DIALOG!!!");
  /packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/
ClearFrequentsDialog.java 17 package com.android.contacts.common.dialog;
20 import android.app.Dialog;
33 * Dialog that clears the frequently contacted list after confirming with the user.
36 /** Preferred way to show this dialog */
38 ClearFrequentsDialog dialog = new ClearFrequentsDialog(); local
39 dialog.show(fragmentManager, "clearFrequents");
43 public Dialog onCreateDialog(Bundle savedInstanceState) {
47 public void onClick(DialogInterface dialog, int which) {
  /frameworks/base/core/java/android/preference/
PreferenceScreen.java 19 import android.app.Dialog;
47 * another screen of preferences as a {@link Dialog} or via a
92 private Dialog mDialog;
174 Dialog dialog = mDialog = new Dialog(context, context.getThemeResId()); local
176 dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
178 dialog.setTitle(title);
180 dialog.setContentView(childPrefScreen);
181 dialog.setOnDismissListener(this)
226 final Dialog dialog = mDialog; local
    [all...]
DialogPreference.java 21 import android.app.Dialog;
40 * dialog-based. These preferences will, when clicked, open a dialog showing the
62 /** The dialog, if it is showing. */
63 private Dialog mDialog;
94 * Sets the title of the dialog. This will be shown on subsequent dialogs.
104 * @param dialogTitleResId The dialog title as a resource.
119 * Sets the message of the dialog. This will be shown on subsequent dialogs.
121 * This message forms the content View of the dialog and conflicts with
122 * list-based dialogs, for example. If setting a custom View on a dialog vi
300 final Dialog dialog = mDialog = mBuilder.create(); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/
echo_private_apitest.cc 65 void OnDialogShown(chromeos::EchoDialogView* dialog) {
69 EXPECT_EQ(expected_dialog_buttons_, dialog->GetDialogButtons());
71 // Don't accept the dialog if the dialog buttons don't match expectation.
72 // Accepting a dialog which should not have accept option may crash the
73 // test. The test already failed, so it's ok to cancel the dialog.
76 expected_dialog_buttons_ != dialog->GetDialogButtons()) {
80 // Perform test action on the dialog.
81 // The dialog should stay around until AcceptWindow or CancelWindow is
87 base::Unretained(dialog)));
    [all...]
  /external/chromium_org/chrome/browser/ui/
tab_modal_confirm_dialog_delegate.h 34 // This class acts as the delegate for a simple tab-modal dialog confirming
58 // the dialog if no other call to |Accept|, |Cancel|, |LinkClicked| or
64 // Called when the dialog is closed without selecting an option, e.g. by
65 // pressing the close button on the dialog, using a window manager gesture,
67 // Calls |OnClosed| and closes the dialog if no other call to |Accept|,
71 // The title of the dialog. Note that the title is not shown on all platforms.
75 // Icon to show for the dialog. If this method is not overridden, a default
100 // Watch for a new load or a closed tab and dismiss the dialog if they occur.
112 // Called when the user accepts or cancels the dialog, respectively.
119 // Called when the dialog is closed
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utils.java 55 // Create (or recycle existing) and show disconnect dialog.
57 AlertDialog dialog,
60 if (dialog == null) {
61 dialog = new AlertDialog.Builder(context)
66 if (dialog.isShowing()) {
67 dialog.dismiss();
71 dialog.setButton(DialogInterface.BUTTON_POSITIVE,
74 dialog.setTitle(title);
75 dialog.setMessage(message);
76 dialog.show()
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
web_contents_modal_dialog_manager_views.cc 56 virtual void ManageDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
57 views::Widget* widget = GetWidget(dialog);
91 virtual void ShowDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
92 views::Widget* widget = GetWidget(dialog);
102 FocusDialog(dialog); variable
105 // TODO(pkotwicz): Control the z-order of the constrained dialog via
107 // shadows are below the constrained dialog in z-order when we do this.
112 virtual void HideDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
113 views::Widget* widget = GetWidget(dialog);
124 virtual void CloseDialog(NativeWebContentsModalDialog dialog) OVERRIDE
    [all...]
  /external/chromium_org/ui/shell_dialogs/
select_file_dialog_mac.mm 71 void FileWasSelected(NSSavePanel* dialog,
78 bool ShouldEnableFilename(NSSavePanel* dialog, NSString* filename);
96 // Gets the accessory view for the save dialog.
135 NSSavePanel* dialog,
141 void* params = params_map_[dialog];
142 params_map_.erase(dialog);
144 type_map_.erase(dialog);
146 [dialog setDelegate:nil];
162 bool SelectFileDialogImpl::ShouldEnableFilename(NSSavePanel* dialog,
164 // If this is a single open file dialog, disable selecting packages
    [all...]
select_file_dialog.h 27 // Shows a dialog box for selecting a file or a folder.
38 // Like SELECT_FOLDER, but the dialog UI should explicitly show it's
87 // the user canceling or closing the selection dialog box, for example).
103 // Creates a dialog box helper. This is an inexpensive wrapper around the
104 // platform-native file selection dialog. |policy| is an optional class that
105 // can prevent showing a dialog.
109 // Holds information about allowed extensions on a file save dialog.
131 // files/folders on Google Drive. If the flag is true, the file dialog does
132 // nothing special; just returns a Drive path. If it is false, the dialog
142 // Otherwise it will start displaying the dialog box. This will als
    [all...]
  /frameworks/base/core/java/android/app/
DialogFragment.java 32 * A fragment that displays a dialog window, floating on top of its
33 * activity's window. This fragment contains a Dialog object, which it
35 * the dialog (deciding when to show, hide, dismiss it) should be done through
36 * the API here, not with direct calls on the dialog.
40 * content of the dialog. Alternatively, they can override
41 * {@link #onCreateDialog(Bundle)} to create an entirely custom dialog, such
47 * <li><a href="#BasicDialog">Basic Dialog</a>
48 * <li><a href="#AlertDialog">Alert Dialog</a>
49 * <li><a href="#DialogOrEmbed">Selecting Between Dialog or Embedding</a>
56 * driving it, instead of the Dialog. Note that dialogs are generall
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
SipProviderImpl.java 58 import javax.sip.Dialog;
176 Dialog dialog = ((RequestEvent) sipEvent).getDialog(); local
177 if ( sipStack.isLoggingEnabled()) sipStack.getStackLogger().logDebug("Dialog = " + dialog);
179 Dialog dialog = ((ResponseEvent) sipEvent).getDialog(); local
180 if (sipStack.isLoggingEnabled() ) sipStack.getStackLogger().logDebug("Dialog = " + dialog);
342 // Could not find a dialog or the route is not set in dialog
359 SIPDialog dialog = sipStack.getDialog(dialogId); local
514 SIPDialog dialog = sipStack.getDialog(dialogId); local
560 SIPDialog dialog = sipStack.getDialog(dialogId); local
584 SIPDialog dialog = sipStack.getDialog(dialogId); local
609 SIPDialog dialog = sipStack.getDialog(dialogId); local
673 Dialog dialog = sipStack.getDialog(((SIPRequest) request) local
836 SIPDialog dialog = null; local
    [all...]
  /external/chromium/chrome/browser/chromeos/
native_dialog_window.h 20 DIALOG_FLAG_DEFAULT = 0x00, // Default non-resizeable, non-modal dialog.
21 DIALOG_FLAG_RESIZEABLE = 0x01, // For resizeable dialog.
22 DIALOG_FLAG_MODAL = 0x02, // For modal dialog.
38 // Gets the bounds of the contained dialog content.
  /external/chromium/chrome/browser/ui/app_modal_dialogs/
message_box_handler.h 18 // Creates and runs a Javascript Message Box dialog.
19 // The dialog type is specified within |dialog_flags|, the
20 // default static display text is in |message_text| and if the dialog box is
33 // This will display a modal dialog box with a header and footer asking the
  /external/chromium/chrome/browser/ui/views/
repost_form_warning_view.h 23 // Displays a dialog that warns the user that they are about to resubmit
25 // To display the dialog, allocate this object on the heap. It will open the
26 // dialog from its constructor and then delete itself when the user dismisses
27 // the dialog.
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_dialog.h 6 // dialog for opening and saving files.
20 // Cancel file selection Dialog. Closes the dialog window.
54 // Select multiple files. Closes the dialog window.
  /external/chromium_org/chrome/browser/chromeos/options/
network_connect.h 24 // Shows the mobile setup dialog which handles:
34 // * Show the Configure dialog for wifi/wimax/VPN
35 // * Show the Activation, MobileSetup dialog, or settings page for cellular
40 // dialog and returns true.
  /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/resources/identity_scope_approval_dialog/
manifest.json 7 "description": "Displays scope approval dialog boxes for the Identity API",
  /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/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.
40 * Gets the {@link MonthPicker} contained in this dialog.
  /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/ui/views/window/
dialog_delegate.h 24 // dialog box Window. The window that is displayed uses this interface to
34 // Returns whether to use the new dialog style in general.
35 // See UseNewStyleForThisDialog() for dialog-specific styling.
38 // Create a |dialog| window Widget with the specified |context| or |parent|.
39 static Widget* CreateDialogWidget(DialogDelegate* dialog,
44 // Overrides may construct the view; this will only be called once per dialog.
48 // Overrides may construct the view; this will only be called once per dialog.
53 // Overrides may construct the view; this will only be called once per dialog.
56 // For Dialog boxes, if there is a "Cancel" button or no dialog button at all
    [all...]

Completed in 1431 milliseconds

1 2 3 4 5 6 78 91011>>