HomeSort by relevance Sort by last modified time
    Searched refs:Dialog (Results 1 - 25 of 383) 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() {
  /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);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Dialog.js 36 WebInspector.Dialog = function(relativeToElement, delegate)
64 * @return {WebInspector.Dialog}
66 WebInspector.Dialog.currentInstance = function()
68 return WebInspector.Dialog._instance;
75 WebInspector.Dialog.show = function(relativeToElement, delegate)
77 if (WebInspector.Dialog._instance)
79 WebInspector.Dialog._instance = new WebInspector.Dialog(relativeToElement, delegate);
82 WebInspector.Dialog.hide = function()
84 if (!WebInspector.Dialog._instance
    [all...]
  /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) {
  /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/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...]
  /cts/tests/tests/permission/src/android/permission/cts/
PermissionStubActivity.java 21 import android.app.Dialog;
43 public Dialog getDialog() {
  /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.
46 * Called when the controller dialog is being created.
48 * Subclasses may override this method to customize the dialog.
57 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/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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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 1166 milliseconds

1 2 3 4 5 6 7 8 91011>>