HomeSort by relevance Sort by last modified time
    Searched refs:Dialog (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/
DialogCreatable.java 19 import android.app.Dialog;
22 * Letting the class, assumed to be Fragment, create a Dialog on it. Should be useful
28 public Dialog onCreateDialog(int dialogId);
  /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() {
Transaction.java 11 Dialog getDialog();
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
DialogBuilder.java 19 import android.app.Dialog;
24 * a Dialog. Since a Dialog shows in a new window, implementation
26 * the Dialog for testing.
30 Dialog buildDialog(View view);
DialogModifier.java 19 import android.app.Dialog;
25 * Wacky {@link LayoutModifier} that takes a {@link Dialog} and transplants into the
38 Dialog dialog = mBuilder.buildDialog(view); local
43 // get the dialog as a view
44 View newView = dialog.getWindow().getDecorView();
46 // remove it from the dialog
47 dialog.getWindow().getWindowManager().removeView(newView);
ProgressDialogBuilder.java 21 import android.app.Dialog;
35 public Dialog buildDialog(View view) {
51 throw new IllegalArgumentException("Bad dialog type: " + mDialogType);
  /external/nist-sip/java/gov/nist/javax/sip/
DialogExt.java 3 import javax.sip.Dialog;
14 public interface DialogExt extends Dialog {
17 * Returns the SipProvider that was used for the first transaction in this Dialog
26 * Sets a flag that indicates that this Dialog is part of a BackToBackUserAgent. If this flag
29 * handle dialog errors. Once this flag is set for a dialog, it cannot be changed.
30 * This flag can be set on a stack-wide basis, on a per-provider basis or on a per Dialog basis.
31 * This flag must only be set at the time of Dialog creation. If the flag is set after the first
32 * request or response is seen by the Dialog, the behavior of this flag is undefined.
40 * Turn off sequence number validation for this dialog. This passes all requests to th
    [all...]
DialogTimeoutEvent.java 20 import javax.sip.Dialog;
25 * dialog does not receive or send an ACK.
36 * Constructs a DialogTerminatedEvent to indicate a dialog
40 * @param dialog - the dialog that timed out.
42 public DialogTimeoutEvent(Object source, Dialog dialog, Reason reason) {
44 m_dialog = dialog;
50 * Gets the Dialog associated with the event. This
51 * enables application developers to access the dialog associated to this
    [all...]
SipListenerExt.java 18 import javax.sip.Dialog;
25 * SipProvider. Timeout events represent timers expiring in the underlying SipProvider dialog
26 * state machine. These timeout's events notify the application that a dialog has timed out.</li>
35 * Processes an expiration Timeout of an underlying {@link Dialog} handled by this
36 * SipListener. This Event notifies the application that a dialog Timer expired in the
37 * Dialog's state machine. Such a condition can occur when the application fails to send an
39 * DialogTimeoutEvent encapsulates the specific timeout type and the dialog identifier. The
44 * the dialog to avoid any dialog leaks.
46 * @param timeoutEvent - the timeoutEvent received indicating the dialog timed out
    [all...]
ResponseEventExt.java 4 import javax.sip.Dialog;
16 Dialog dialog, Response response) {
17 super(source,clientTransaction,dialog,response);
SipStackExt.java 15 import javax.sip.Dialog;
38 * Get the collection of dialogs currently in the Dialog table. This is useful for debugging
42 public Collection<Dialog> getDialogs();
45 * Get the ReferedTo dialog in the Replaces header.
47 * @return Dialog object matching the Replaces header, provided it is in an appropriate state
52 public Dialog getReplacesDialog(ReplacesHeader replacesHeader);
95 * Get the dialog in the Join header.
97 * @return Dialog object matching the Join header, provided it is in an appropriate state to
102 public Dialog getJoinDialog(JoinHeader joinHeader);
  /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;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
PixelConverter.java 13 import org.eclipse.jface.dialogs.Dialog;
49 return Dialog.convertHeightInCharsToPixels(fFontMetrics, chars);
56 return Dialog.convertHorizontalDLUsToPixels(fFontMetrics, dlus);
63 return Dialog.convertVerticalDLUsToPixels(fFontMetrics, dlus);
70 return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteControllerDialogFragment.java 19 import android.app.Dialog;
25 * Media route controller dialog fragment.
28 * this dialog fragment to customize the media route controller dialog.
33 * Creates a media route controller dialog fragment.
43 * Called when the controller dialog is being created.
45 * Subclasses may override this method to customize the dialog.
54 public Dialog onCreateDialog(Bundle savedInstanceState) {
  /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...]
DialogFragmentTest.java 4 import android.app.Dialog;
77 Dialog dialogFromOnCreateDialog = new Dialog(activity);
81 Dialog dialog = ShadowDialog.getLatestDialog(); local
82 assertSame(dialogFromOnCreateDialog, dialog);
91 Dialog dialog = ShadowDialog.getLatestDialog(); local
92 assertNotNull(dialog);
93 assertSame(dialog, dialogFragment.getDialog())
104 Dialog dialog = ShadowDialog.getLatestDialog(); local
117 Dialog dialog = ShadowDialog.getLatestDialog(); local
143 Dialog dialog = dialogFragment.getDialog(); local
154 Dialog dialog = dialogFragment.getDialog(); local
165 Dialog dialog = dialogFragment.getDialog(); local
    [all...]
PreferenceScreenTest.java 4 import android.app.Dialog;
36 Dialog dialog = new Dialog(new Activity()); local
39 shadow.setDialog(dialog);
40 assertThat(screen.getDialog(), sameInstance(dialog));
  /cts/tests/tests/permission/src/android/permission/cts/
PermissionStubActivity.java 21 import android.app.Dialog;
43 public Dialog getDialog() {
  /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!!!");
  /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);
  /packages/apps/Contacts/src/com/android/contacts/util/
DialogManager.java 20 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/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidatesViewManager.java 19 import android.app.Dialog;
71 protected Dialog mDialog = null;
158 * Display Dialog.
166 mDialog = new Dialog(view.getContext(), R.style.Dialog);
177 * Close Dialog.
  /packages/apps/Calendar/src/com/android/calendar/event/
EventColorPickerDialog.java 19 import android.app.Dialog;
27 * A dialog which displays event colors, with an additional button for the calendar color.
37 // Empty constructor required for dialog fragment.
68 public Dialog onCreateDialog(Bundle savedInstanceState) {
69 Dialog dialog = super.onCreateDialog(savedInstanceState); local
75 public void onClick(DialogInterface dialog, int which) {
80 return dialog;

Completed in 579 milliseconds

1 2 3 4 5 6 7 8 91011>>