HomeSort by relevance Sort by last modified time
    Searched defs:dialog (Results 51 - 75 of 91) sorted by null

1 23 4

  /external/webkit/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 170 bool dialog = features.dialog || !features.resizable local
176 // fullscreen definitely means no dialog
178 dialog = false;
179 WebCore::Frame* newFrame = m_webFrame->createWindow(dialog,
253 /* This function is called for the javascript method Window.prompt(). A dialog should be shown on
266 // time. A dialog should be shown to the user asking them if they would like to cancel the
  /external/webkit/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.cpp 518 GtkWidget* dialog = gtk_file_chooser_dialog_new(_("Upload File"), local
525 gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), chooser->allowsMultipleFiles());
527 if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
528 if (gtk_file_chooser_get_select_multiple(GTK_FILE_CHOOSER(dialog))) {
529 GSList* filenames = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog));
540 gchar* filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
546 gtk_widget_destroy(dialog);
  /external/webkit/WebKit/gtk/webkit/
webkitwebframe.cpp 964 * Prints the given #WebKitFrame, by presenting a print dialog to the
984 GtkWidget* dialog = gtk_message_dialog_new(gtk_widget_is_toplevel(window) ? GTK_WINDOW(window) : 0, local
990 GtkWidget* dialog = gtk_message_dialog_new(GTK_WIDGET_TOPLEVEL(window) ? GTK_WINDOW(window) : 0, local
    [all...]
  /frameworks/base/core/java/android/preference/
VolumePreference.java 19 import android.app.Dialog;
48 /** May be null if the dialog isn't visible. */
74 // dialog doesn't also show the normal volume adjust toast.
122 Dialog dialog = getDialog(); local
123 if (dialog != null && dialog.isShowing()) {
124 View view = dialog.getWindow().getDecorView()
127 // Stopped while dialog was showing, revert changes
  /frameworks/base/voip/java/com/android/server/sip/
SipHelper.java 31 import javax.sip.Dialog;
278 public ClientTransaction sendReinvite(Dialog dialog,
281 Request request = dialog.createRequest(Request.INVITE);
289 dialog.sendRequest(clientTransaction);
384 public void sendInviteAck(ResponseEvent event, Dialog dialog)
389 Request ack = dialog.createAck(cseq);
391 dialog.sendAck(ack);
394 public void sendBye(Dialog dialog) throws SipException
438 Dialog dialog = ((DialogTerminatedEvent) event).getDialog(); local
    [all...]
SipSessionGroup.java 47 import javax.sip.Dialog;
389 Dialog mDialog;
619 Dialog dialog = null;
621 dialog = ((RequestEvent) evt).getDialog();
623 dialog = ((ResponseEvent) evt).getDialog();
625 if (dialog != null) mDialog = dialog;
695 onError(new SipException("dialog terminated"));
697 Log.d(TAG, "not the current dialog; current=" + mDialo
726 Dialog dialog = transaction.getDialog(); local
    [all...]
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountSyncSettings.java 30 import android.app.Dialog;
93 protected Dialog onCreateDialog(final int id) {
94 Dialog dialog = null; local
96 dialog = new AlertDialog.Builder(this)
102 public void onClick(DialogInterface dialog, int which) {
129 dialog = new AlertDialog.Builder(this)
135 dialog = new AlertDialog.Builder(this)
141 return dialog;
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstaller.java 21 import android.app.Dialog;
132 protected Dialog onCreateDialog (int dialogId) {
141 ProgressDialog dialog = new ProgressDialog(this); local
142 dialog.setMessage(getString(R.string.extracting_pkcs12));
143 dialog.setIndeterminate(true);
144 dialog.setCancelable(false);
145 return dialog;
153 protected void onPrepareDialog (int dialogId, Dialog dialog) {
154 super.onPrepareDialog(dialogId, dialog);
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
Util.java 378 ProgressDialog dialog, Handler handler) {
380 mDialog = dialog;
416 // Make the progress dialog uncancelable, so that we can gurantee
418 ProgressDialog dialog = ProgressDialog.show( local
420 new Thread(new BackgroundJob(activity, job, dialog, handler)).start();
  /packages/apps/Gallery3D/src/com/cooliris/media/
Util.java 215 public BackgroundJob(MonitoredActivity activity, Runnable job, ProgressDialog dialog, Handler handler) {
217 mDialog = dialog;
251 // Make the progress dialog uncancelable, so that we can gurantee
253 ProgressDialog dialog = ProgressDialog.show(activity, title, message, true, false); local
254 new Thread(new BackgroundJob(activity, job, dialog, handler)).start();
  /packages/apps/Phone/src/com/android/phone/
EmergencyDialer.java 21 import android.app.Dialog;
115 private String mLastNumber; // last number we tried to dial. Used to restore error dialog.
514 // erase the number and throw up an alert dialog.
568 protected Dialog onCreateDialog(int id) {
569 AlertDialog dialog = null; local
571 // construct dialog
572 dialog = new AlertDialog.Builder(this)
578 // blur stuff behind the dialog
579 dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
581 return dialog;
    [all...]
CallFeaturesSetting.java 20 import android.app.Dialog;
177 // dialog identifiers for voicemail
328 * Id of the dialog being currently shown.
490 if (DBG) log("onPreferenceClick: request preference click on dialog close: " +
513 if (DBG) log("updating default for voicemail dialog");
698 // normally called on the dialog close.
745 // at the time we would normally have shown the dialog, so we didn't
1252 AlertDialog dialog = b.create(); local
1260 ProgressDialog dialog = new ProgressDialog(this); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 19 import android.app.Dialog;
329 protected Dialog onCreateDialog(int id) {
331 ProgressDialog dialog = new ProgressDialog(this); local
332 dialog.setMessage(getResources().getString(R.string.restore_default_apn));
333 dialog.setCancelable(false);
334 return dialog;
340 protected void onPrepareDialog(int id, Dialog dialog) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
RenamePackageAction.java 205 InputDialog dialog = new InputDialog(AdtPlugin.getDisplay().getActiveShell(), local
209 if (dialog.open() == Window.OK) {
210 mNewPackageName = ast_validator.newName(dialog.getValue());
  /packages/apps/Contacts/src/com/android/contacts/ui/
EditContactActivity.java 42 import android.app.Dialog;
154 private ArrayList<Dialog> mManagedDialogs = Lists.newArrayList();
187 // Trigger dialog to pick account type
316 for (Dialog dialog : mManagedDialogs) {
317 dismissDialog(dialog);
322 protected Dialog onCreateDialog(int id, Bundle bundle) {
364 * Start managing this {@link Dialog} along with the {@link Activity}.
366 private void startManagingDialog(Dialog dialog) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigurationTab.java 62 import org.eclipse.jface.dialogs.Dialog;
152 Dialog.applyDialogFont(comp);
501 * Show a dialog that lists all main types
529 SelectionDialog dialog = new TestSelectionDialog(shell, types); local
530 dialog.setTitle(JUnitMessages.JUnitLaunchConfigurationTab_testdialog_title);
531 dialog.setMessage(JUnitMessages.JUnitLaunchConfigurationTab_testdialog_message);
532 if (dialog.open() == Window.CANCEL) {
536 Object[] results = dialog.getResult();
555 * Show a dialog that lets the user select a Android project. This in turn provides
863 ElementTreeSelectionDialog dialog = new ElementTreeSelectionDialog(getShell(), local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 23 import android.app.Dialog;
650 // If there are multiple keystrokes before the search dialog takes focus,
1866 final AlertDialog dialog = builder.create(); local
2011 AlertDialog dialog = builder.create(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 448 * Start the process of putting up a dialog to confirm deleting a thread,
460 * Build and show the proper delete thread dialog. The UI is slightly different
532 public void onClick(DialogInterface dialog, final int whichButton) {
547 dialog.dismiss();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DeviceChooserDialog.java 37 import org.eclipse.jface.dialogs.Dialog;
61 * A dialog that lets the user choose a device to deploy an application.
66 public class DeviceChooserDialog extends Dialog implements IDeviceChangeListener {
284 // set dialog title
498 final DeviceChooserDialog dialog = this; local
514 AndroidDebugBridge.removeDeviceChangeListener(dialog);
544 final DeviceChooserDialog dialog = this; local
569 AndroidDebugBridge.removeDeviceChangeListener(dialog);
577 * Returns whether the dialog is in "device" mode (true), or in "avd" mode (false).
584 * Enables or disables the OK button of the dialog based on various selections in the dialog
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java 1407 ConfigManagerDialog dialog = new ConfigManagerDialog(getShell()); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserActivity.java 3380 AlertDialog dialog = new AlertDialog.Builder(this) local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 119 * Tracks dialogs. A dialog is a peer to peer association of communicating SIP entities. For
120 * INVITE transactions, a Dialog is created when a success message is received (i.e. a response
122 * dialog identifier that can be used to retrieve this structure from the SipStack.
131 public class SIPDialog implements javax.sip.Dialog, DialogExt {
153 // Should be transient, in case the dialog is serialized it will be null
204 // Dialog.
220 // the amount of time to keep this dialog around before the stack GC's it
258 // List of event listeners for this dialog
264 // keep the whole transaction object for the duration of the dialog. It also
318 * Send BYE to the Dialog.
376 SIPDialog dialog = SIPDialog.this; local
399 SIPDialog dialog = SIPDialog.this; local
    [all...]
SIPTransactionStack.java 66 import javax.sip.Dialog;
123 // A set of methods that result in dialog creations.
263 * Use the user supplied router for all out of dialog requests.
302 // Flag to indicate whether the stack will provide dialog
323 // If this is set to true, then To tag checking on the Dialog layer is
358 // Max time for a forked response to arrive. After this time, the original dialog
450 // Notify may or may not create a dialog. This is handled in
454 // Dialog dable.
496 // Dialog dable.
553 * Print the dialog table
635 SIPDialog dialog = this.earlyDialogTable.get(dialogId); local
    [all...]
  /frameworks/base/core/java/android/app/
Activity.java 563 * but not in the foreground, such as one sitting behind a foreground dialog)
616 Dialog mDialog;
882 final Dialog dialog = onCreateDialog(dialogId, args); local
    [all...]
  /external/webkit/WebKit/wx/
WebView.h 317 , dialog(false)
327 bool dialog; member in class:wxWebKitWindowFeatures

Completed in 1101 milliseconds

1 23 4