HomeSort by relevance Sort by last modified time
    Searched full:dialog (Results 1 - 25 of 3410) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/
DialogTerminatedEvent.java 6 private Dialog mDialog;
8 public DialogTerminatedEvent(Object source, Dialog dialog) {
10 mDialog = dialog;
13 public Dialog getDialog() {
RequestEvent.java 7 private Dialog mDialog;
12 Dialog dialog, Request request) {
14 mDialog = dialog;
19 public Dialog getDialog() {
ResponseEvent.java 7 private Dialog mDialog;
12 Dialog dialog, Response response) {
14 mDialog = dialog;
19 public Dialog getDialog() {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPreferenceScreen.java 3 import android.app.Dialog;
12 private Dialog dialog; field in class:ShadowPreferenceScreen
15 public Dialog getDialog() {
16 return dialog;
19 public void setDialog(Dialog dialog) {
20 this.dialog = dialog;
ShadowDialogFragment.java 3 import android.app.Dialog;
23 private Dialog dialog; field in class:ShadowDialogFragment
44 dialog = realDialogFragment.onCreateDialog(null);
46 if (dialog == null) {
47 dialog = new Dialog(activityFromManager);
48 dialog.setContentView(view);
50 dialog.setCancelable(cancelable);
62 if (dialog != null)
    [all...]
  /external/chromium_org/content/test/data/accessibility/
dialog.html 6 <dialog open>Text in dialog</dialog>
dialog-expected-android.txt 1 android.app.Dialog focusable focused scrollable
2 android.view.View clickable name='Text in dialog'
modal-dialog-closed.html 6 Test that elements respawn in the accessibility tree after a modal dialog
9 <dialog>This dialog is closed and should not be in the tree</dialog>
18 var dialog = document.querySelector('dialog');
19 dialog.showModal();
20 dialog.close();
modal-dialog-stack.html 6 Test the accessiblity tree after a pending modal dialog becomes active.
8 <dialog id="top-dialog">
9 This was the top dialog and should not be in the tree.
10 </dialog>
18 <dialog id="middle-dialog">
19 This was the middle dialog and should not be in the tree.
20 </dialog>
21 <dialog id="bottom-dialog"
    [all...]
modal-dialog-opened-expected-mac.txt 3 AXStaticText AXValue='The dialog subtree should be the only text content in the accessibility tree. '
4 AXLink AXTitle='Link inside the dialog.'
5 AXStaticText AXValue='Link inside the dialog.'
modal-dialog-opened-expected-win.txt 3 ROLE_SYSTEM_STATICTEXT name='The dialog subtree should be the only text content in the accessibility tree. '
4 ROLE_SYSTEM_LINK name='Link inside the dialog.' FOCUSABLE
5 ROLE_SYSTEM_STATICTEXT name='Link inside the dialog.'
modal-dialog-opened.html 6 Test for modal dialog blocking a document.
8 <dialog id="top-dialog">
9 The dialog subtree should be the only text content in the accessibility tree.
10 <a name="anchor" href="#link">Link inside the dialog.</a>
11 </dialog>
19 <dialog id="bottom-dialog">
20 This is the pending dialog and should be pruned out.
21 </dialog>
    [all...]
modal-dialog-in-iframe-closed.html 6 Test for modal dialog closed in an iframe.
10 '<dialog>Text in the dialog.</dialog>\n' +
18 var dialog = iframeDoc.querySelector('dialog');
19 dialog.showModal();
20 dialog.close();
dialog-expected-mac.txt 3 AXStaticText AXValue='Text in dialog'
dialog-expected-win.txt 3 ROLE_SYSTEM_STATICTEXT name='Text in dialog'
modal-dialog-in-iframe-opened.html 6 Test for modal dialog opened in an iframe.
10 '<dialog>Text in the dialog.</dialog>\n' +
18 var dialog = iframeDoc.querySelector('dialog');
19 dialog.showModal();
modal-dialog-in-iframe-opened-expected-mac.txt 3 AXStaticText AXValue='Test for modal dialog opened in an iframe. '
8 AXStaticText AXValue='Text in the dialog.'
modal-dialog-in-iframe-opened-expected-win.txt 3 ROLE_SYSTEM_STATICTEXT name='Test for modal dialog opened in an iframe. '
8 ROLE_SYSTEM_STATICTEXT name='Text in the dialog.'
modal-dialog-stack-expected-mac.txt 3 AXStaticText AXValue='This is the now active dialog. Of course it should be in the tree. '
4 AXButton AXTitle='This is in the active dialog and should be in the tree.'
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DialogTest.java 3 import android.app.Dialog;
28 final Dialog dialog = new Dialog(null); local
29 dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
32 assertThat((Dialog) dialogInListener, sameInstance(dialog));
37 dialog.dismiss();
44 Dialog dialog = new Dialog(Robolectric.application) local
50 TestDialog dialog = new TestDialog(); local
58 Dialog dialog = new Dialog(null); local
67 TestDialog dialog = new TestDialog(); local
74 Dialog dialog = new Dialog(null); local
84 Dialog dialog = new Dialog(Robolectric.application) { local
102 Dialog dialog = new Dialog(Robolectric.application); local
115 Dialog dialog = new Dialog(null); local
124 TestDialog dialog = new TestDialog(); local
154 Dialog dialog = new Dialog(Robolectric.application); local
    [all...]
  /external/replicaisland/res/xml/
level_4_1_misc.xml 2 <dialog>
12 </dialog>
  /frameworks/base/core/res/res/values-television/
themes.xml 17 <style name="Theme.Dialog.Alert" parent="Theme.Leanback.Light.Dialog.Alert" />
18 <style name="Theme.Dialog.AppError" parent="Theme.Leanback.Dialog.AppError" />
19 <style name="Theme.Holo.Dialog.Alert" parent="Theme.Leanback.Dialog.Alert" />
20 <style name="Theme.Holo.Light.Dialog.Alert" parent="Theme.Leanback.Light.Dialog.Alert" />
21 <style name="Theme.Material.Dialog.Alert" parent="Theme.Leanback.Dialog.Alert" /
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ProgressDialogTest.java 100 ProgressDialog dialog = buildDialog(); local
101 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, false);
107 assertTrue(dialog.isIndeterminate());
109 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true);
110 assertTrue(dialog.isIndeterminate());
115 public void onCancel(DialogInterface dialog) {
123 ProgressDialog dialog = buildDialog();
124 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, false);
126 dialog.setOnCancelListener(cL);
127 dialog.onBackPressed()
216 ProgressDialog dialog = buildDialog(); local
232 ProgressDialog dialog = buildDialog(); local
251 ProgressDialog dialog = new ProgressDialog(mContext); local
266 ProgressDialog dialog = new ProgressDialog(mContext); local
280 ProgressDialog dialog = ProgressDialog.show(mContext, TITLE, MESSAGE); local
295 ProgressDialog dialog = ProgressDialog.show(mContext, TITLE, MESSAGE); local
310 ProgressDialog dialog = new ProgressDialog(mContext); local
321 ProgressDialog dialog = new ProgressDialog(mContext); local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
RepostFormWarningDialog.java 8 import android.app.Dialog;
16 * Form resubmission warning dialog. Presents the cancel/continue choice and fires one of two
20 // Warning dialog currently being shown, stored for testing.
21 private static Dialog sCurrentDialog;
32 public Dialog onCreateDialog(Bundle savedInstanceState) {
37 public void onClick(DialogInterface dialog, int id) {
44 public void onClick(DialogInterface dialog, int id) {
50 Dialog dialog = builder.create(); local
51 setCurrentDialog(dialog);
    [all...]
  /external/chromium_org/chrome/browser/ui/app_modal_dialogs/
app_modal_dialog_queue.cc 15 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) {
17 ShowModalDialog(dialog);
20 app_modal_dialog_queue_.push_back(dialog);
24 AppModalDialog* dialog = GetNextDialog(); local
25 if (dialog)
26 ShowModalDialog(dialog);
33 // As part of showing a modal dialog we may end up back in this method
34 // (showing a dialog activates the WebContents, which can trigger a call
36 // activate the tab contents the dialog is shown.
55 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) {
69 AppModalDialog* dialog = app_modal_dialog_queue_.front(); local
    [all...]

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 91011>>