HomeSort by relevance Sort by last modified time
    Searched refs:Dialog (Results 1 - 25 of 662) 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() {
  /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 Dialog onCreateDialog(int dialogId);
  /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/v1/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;
  /frameworks/support/design/src/android/support/design/widget/
BottomSheetDialogFragment.java 19 import android.app.Dialog;
26 * using {@link BottomSheetDialog} instead of a floating dialog.
31 public Dialog onCreateDialog(Bundle savedInstanceState) {
  /frameworks/base/core/java/com/android/internal/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.
35 * Creates a media route controller dialog fragment.
45 * Called when the controller dialog is being created.
47 * Subclasses may override this method to customize the dialog.
56 public Dialog onCreateDialog(Bundle savedInstanceState) {
  /packages/apps/Dialer/java/com/android/incallui/disconnectdialog/
DisconnectDialog.java 19 import android.app.Dialog;
26 /** Interface for disconnect dialog. */
31 Pair<Dialog, CharSequence> createDialog(@NonNull Context context, DialerCall call);
  /developers/samples/android/common/src/java/com/example/android/common/play/
PlayHelper.java 21 import android.app.Dialog;
66 Dialog eDialog = GooglePlayServicesUtil.getErrorDialog(statusCode,
68 // If Google Play services can provide an error dialog
70 // Create a new DialogFragment for the error dialog
73 // Set the dialog in the DialogFragment
75 // Show the error dialog in the DialogFragment
100 // Define a DialogFragment that displays the error dialog
102 // Global field to contain the error dialog
103 private Dialog mDialog;
104 // Default constructor. Sets the dialog field to nul
    [all...]
GoogleServicesConnectionFailedHelper.java 20 import android.app.Dialog;
65 * If no resolution is available, display a dialog to the
69 fragment.setDialog(new Dialog(mActivity));
  /external/robolectric/v1/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...]
  /external/python/cpython2/Demo/tkinter/matt/
dialog-box.py 2 from Dialog import Dialog
12 """Create a top-level dialog with some buttons.
14 This uses the Dialog class, which is a wrapper around the Tcl/Tk
19 d = Dialog(
21 title="fred the dialog box",## title on the window
42 # buttons that appear left to right in the dialog box
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
DialogTask.java 19 import android.app.Dialog;
28 protected Dialog mDialog;
44 eventFacade.postEvent("dialog", object);
51 * Returns the wrapped {@link Dialog}.
53 public Dialog getDialog() {
58 * Dismiss the {@link Dialog} and close {@link Sl4aActivity}.
69 * Returns the {@link CountDownLatch} that is counted down when the dialog is shown.
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDialogFragment.java 22 import android.app.Dialog;
31 * platform-styled dialog.
38 public Dialog onCreateDialog(Bundle savedInstanceState) {
45 public void setupDialog(Dialog dialog, int style) {
46 if (dialog instanceof AppCompatDialog) {
47 // If the dialog is an AppCompatDialog, we'll handle it
48 AppCompatDialog acd = (AppCompatDialog) dialog;
51 dialog.getWindow().addFlags(
61 super.setupDialog(dialog, style)
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
PermissionStubActivity.java 21 import android.app.Dialog;
43 public Dialog getDialog() {
  /packages/apps/Settings/src/com/android/settings/deletionhelper/
ActivationWarningFragment.java 20 import android.app.Dialog;
37 public Dialog onCreateDialog(Bundle savedInstanceState) {
  /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/app/app/src/android/app/stubs/
AppStubActivity.java 20 import android.app.Dialog;
33 private Dialog mDialog;
67 public Dialog getDialogById(int id) {
72 public Dialog onCreateDialog(int id) {
74 mDialog = new Dialog(this);
79 protected void onPrepareDialog(int id, Dialog dialog) {
80 super.onPrepareDialog(id, dialog);
  /external/python/cpython2/Lib/lib-tk/
Dialog.py 0 # dialog.py -- Tkinter interface to the tk_dialog script.
12 class Dialog(Widget):
28 d = Dialog(None, {'title': 'File Modified',

Completed in 1190 milliseconds

1 2 3 4 5 6 7 8 91011>>