/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/replicaisland/res/xml/ |
level_4_1_misc.xml | 2 <dialog> 12 </dialog>
|
level_1_9_dialog_wanda.xml | 2 <dialog> 14 </dialog>
|
level_3_10_dialog_kyle.xml | 2 <dialog> 14 </dialog>
|
level_4_1_dialog_wanda.xml | 2 <dialog> 14 </dialog>
|
level_4_4_dialog_rokudou.xml | 2 <dialog> 14 </dialog>
|
linear_level_tree.xml | 6 <dialog> 9 </dialog> 13 <dialog> 15 </dialog> 19 <dialog> 22 </dialog> 27 <dialog> 29 </dialog> 35 <dialog> 38 </dialog> [all...] |
level_tree.xml | 7 <dialog> 9 </dialog> 15 <dialog> 18 </dialog> 25 <dialog> 27 </dialog> 33 <dialog> 35 </dialog> 47 <dialog> 50 </dialog> [all...] |
level_0_2_dialog_kabocha_2.xml | 2 <dialog> 24 </dialog>
|
level_1_1_dialog_wanda.xml | 2 <dialog> 26 </dialog>
|
level_1_6_dialog_wanda.xml | 2 <dialog> 19 </dialog>
|
/external/chromium/chrome/browser/ui/app_modal_dialogs/ |
app_modal_dialog_queue.cc | 9 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) { 11 ShowModalDialog(dialog); 14 app_modal_dialog_queue_.push(dialog); 18 AppModalDialog* dialog = GetNextDialog(); local 19 if (dialog) 20 ShowModalDialog(dialog); 27 // As part of showing a modal dialog we may end up back in this method 28 // (showing a dialog activates the TabContents, which can trigger a call 30 // activate the tab contents the dialog is shown. 48 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) { 62 AppModalDialog* dialog = app_modal_dialog_queue_.front(); local [all...] |
native_app_modal_dialog.h | 19 // Shows the dialog. 22 // Activates the dialog. 25 // Closes the dialog. 28 // Accepts or cancels the dialog. 32 // Creates an app modal dialog for a JavaScript prompt. 34 JavaScriptAppModalDialog* dialog,
|
app_modal_dialog.h | 22 // activated before the modal dialog is displayed. 26 // Called by the AppModalDialogQueue to show this dialog. 29 // Called by the AppModalDialogQueue to activate the dialog. 32 // Closes the dialog if it is showing. 35 // Completes dialog handling, shows next modal dialog from the queue. 39 // Dialog window title. 47 // When the native dialog is closed, the implementation of 53 // Returns true if the dialog is still valid. As dialogs are created they are 54 // added to the AppModalDialogQueue. When the current modal dialog finishe [all...] |
app_modal_dialog_queue.h | 16 // dialog is shown at a time. 23 // Adds a modal dialog to the queue, if there are no other dialogs in the 24 // queue, the dialog will be shown immediately. Once it is shown, the 27 // activate any other browser windows. So the dialog being shown should 31 // Note: The AppModalDialog |dialog| must be window modal before it 33 void AddDialog(AppModalDialog* dialog); 35 // Removes the current dialog in the queue (the one that is being shown). 36 // Shows the next dialog in the queue, if any is present. This does not 37 // ensure that the currently showing dialog is closed, it just makes it no 41 // Activates and shows the current dialog, if the user clicks on one of th [all...] |
/external/replicaisland/res/drawable-normal-mdpi/ |
level_1_9_dialog_wanda.xml | 2 <dialog> 14 </dialog>
|
/external/nist-sip/java/gov/nist/javax/sip/ |
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...] |
SipProviderExt.java | 13 * Sets a flag that indicates that automatic error handling is enabled for this dialog (the 14 * default when automatic dialog support is enabled). This flag is set by default to TRUE when 15 * the Dialog is automatically created by the provider ( automatic dialog support is true) and 16 * set to FALSE by default when the Dialog is created under program control ( automatic dialog 21 * <li> <b>500 Request Out of Order </b> for in-dialog requests that arrive out of order. 23 * <li> <b>400 Bad request </b> when a REFER is sent without a matching refer-to dialog. 30 * <li>The Back To Back User Agent flag is enabled for the Dialog.</li> 31 * <li>The Automatic Dialog Support flag is enabled for the Dialog </li [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
dialogs_gtk.cc | 26 // the dialog, but usually not the height). The image's aspect ratio will always 31 // Implementation of SelectFileDialog that shows a Gtk common dialog for 32 // choosing a file or folder. This acts as a modal dialog. 59 void FileSelected(GtkWidget* dialog, const FilePath& path); 62 void MultiFilesSelected(GtkWidget* dialog, 66 // Dialog is passed so we can find that |params| pointer that was passed to 67 // us when we were told to show the dialog. 68 void FileNotSelected(GtkWidget* dialog); 82 // Removes and returns the |params| associated with |dialog| from 84 void* PopParamsForDialog(GtkWidget* dialog); 217 GtkWidget* dialog = NULL; local 352 GtkWidget* dialog = local 384 GtkWidget* dialog = local 410 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent); local 423 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent); local 435 GtkWidget* dialog = local [all...] |
/frameworks/base/core/java/android/content/ |
DialogInterface.java | 63 * Interface used to allow the creator of a dialog to run some code when the 64 * dialog is canceled. 66 * This will only be called when the dialog is canceled, if the creator 72 * This method will be invoked when the dialog is canceled. 74 * @param dialog The dialog that was canceled will be passed into the 77 public void onCancel(DialogInterface dialog); 81 * Interface used to allow the creator of a dialog to run some code when the 82 * dialog is dismissed. 86 * This method will be invoked when the dialog is dismissed [all...] |
/external/chromium/chrome/browser/ |
ssl_client_certificate_selector.h | 18 // Opens a constrained SSL client certificate selection dialog under |parent|, 20 // selection, the dialog will report back to |delegate|. |delegate| is notified 21 // when the dialog closes in call cases; if the user cancels the dialog, we call 24 // Note: constrained dialog currently only implemented on Linux and OS X. On 25 // Windows, a window-modal dialog will be used.
|
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/ |
YesCancelDialogBuilder.java | 10 * Alert dialog builder that builds a simple Yes/Cancel dialog. 19 public void onClick(DialogInterface dialog, int which) { 26 public void onClick(DialogInterface dialog, int which) {
|
/cts/tests/tests/holo/src/android/holo/cts/modifiers/ |
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);
|