HomeSort by relevance Sort by last modified time
    Searched defs:dialog (Results 176 - 200 of 299) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/qemu/distrib/sdl-1.2.15/src/video/macdsp/
SDL_dspvideo.c 499 /* Put up dialog on main display to select which display to use */
669 /* put up a dialog to verify display change */
672 /* resource id's for dialog */
677 DialogPtr dialog; local
685 dialog = GetNewDialog (rDialog, NULL, (WindowPtr) -1);
686 if (dialog == NULL)
690 SetPort (GetDialogPort(dialog));
692 SetPort ((WindowPtr) dialog);
695 SetDialogDefaultItem (dialog, bCancel);
696 SetDialogCancelItem (dialog, bCancel)
    [all...]
  /external/wpa_supplicant_8/src/ap/
gas_serv.c 71 wpa_msg(hapd->msg_ctx, MSG_ERROR, "ANQP: Could not create dialog for "
98 wpa_printf(MSG_DEBUG, "ANQP: Could not find dialog for "
563 wpa_printf(MSG_DEBUG, "GAS: Timeout triggered, clearing dialog for "
564 "dialog token %d", dia->dialog_token);
801 wpa_printf(MSG_INFO, "ANQP: Could not create dialog "
802 "for " MACSTR " (dialog token %u)",
846 "GAS: GAS Initial Request from " MACSTR " (dialog token %u) ",
935 struct gas_dialog_info *dialog)
938 u8 dialog_token = dialog->dialog_token;
941 if (dialog->sd_resp == NULL)
1025 struct gas_dialog_info *dialog; local
    [all...]
  /frameworks/base/core/java/android/preference/
VolumePreference.java 19 import android.app.Dialog;
51 /** May be null if the dialog isn't visible. */
77 // dialog doesn't also show the normal volume adjust toast.
132 Dialog dialog = getDialog(); local
133 if (dialog != null && dialog.isShowing()) {
134 View view = dialog.getWindow().getDecorView()
137 // Stopped while dialog was showing, revert changes
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 36 import javax.sip.Dialog;
310 public ClientTransaction sendReinvite(Dialog dialog,
313 Request request = dialog.createRequest(Request.INVITE);
328 dialog.sendRequest(clientTransaction);
424 public void sendInviteAck(ResponseEvent event, Dialog dialog)
429 Request ack = dialog.createAck(cseq);
431 dialog.sendAck(ack);
434 public void sendBye(Dialog dialog) throws SipException
501 Dialog dialog = ((DialogTerminatedEvent) event).getDialog(); local
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstaller.java 21 import android.app.Dialog;
155 protected Dialog onCreateDialog (int dialogId) {
164 ProgressDialog dialog = new ProgressDialog(this); local
165 dialog.setMessage(getString(R.string.extracting_pkcs12));
166 dialog.setIndeterminate(true);
167 dialog.setCancelable(false);
168 return dialog;
325 private Dialog createPkcs12PasswordDialog() {
337 Dialog d = new AlertDialog.Builder(this)
341 public void onClick(DialogInterface dialog, int id)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/interactions/
PhoneNumberInteraction.java 20 import android.app.Dialog;
65 * dialog to pick one. Creating one of these interactions should be done through the static
176 * {@link DialogFragment} used for displaying a dialog with a list of phone numbers of which
211 public Dialog onCreateDialog(Bundle savedInstanceState) {
229 public void onClick(DialogInterface dialog, int which) {
232 final AlertDialog alertDialog = (AlertDialog)dialog;
246 dialog.dismiss();
333 * or a disambiguation dialog to determine which phone number should be used. If there
334 * is a primary phone number, it will be automatically used and a disambiguation dialog
347 * disambiguation dialog will be shown regardless of whether or not a primary phone numbe
    [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/Gallery2/src/com/android/gallery3d/ui/
MenuExecutor.java 72 ProgressDialog dialog = new ProgressDialog(context); local
73 dialog.setTitle(titleId);
74 dialog.setMax(progressMax);
75 dialog.setCancelable(false);
76 dialog.setIndeterminate(false);
78 dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
80 return dialog;
290 public void onClick(DialogInterface dialog, int which) {
304 public void onCancel(DialogInterface dialog) {
  /packages/apps/Mms/src/com/android/mms/ui/
MessagingPreferenceActivity.java 22 import android.app.Dialog;
358 protected Dialog onCreateDialog(int id) {
365 public void onClick(DialogInterface dialog, int which) {
371 dialog.dismiss();
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 19 import android.app.Dialog;
344 protected Dialog onCreateDialog(int id) {
346 ProgressDialog dialog = new ProgressDialog(this); local
347 dialog.setMessage(getResources().getString(R.string.restore_default_apn));
348 dialog.setCancelable(false);
349 return dialog;
355 protected void onPrepareDialog(int id, Dialog dialog) {
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 27 import android.app.Dialog;
86 public Dialog onCreateDialog(final int id) {
87 Dialog dialog = null; local
89 dialog = new AlertDialog.Builder(getActivity())
96 public void onClick(DialogInterface dialog, int which) {
130 dialog = new AlertDialog.Builder(getActivity())
136 dialog = new AlertDialog.Builder(getActivity())
142 return dialog;
  /packages/apps/Settings/src/com/android/settings/inputmethod/
KeyboardLayoutDialogFragment.java 24 import android.app.Dialog;
92 public Dialog onCreateDialog(Bundle savedInstanceState) {
100 public void onClick(DialogInterface dialog, int which) {
107 public void onClick(DialogInterface dialog, int which) {
139 public void onCancel(DialogInterface dialog) {
140 super.onCancel(dialog);
176 AlertDialog dialog = (AlertDialog)getDialog(); local
177 if (dialog != null) {
178 dialog.getListView().setItemChecked(data.current, true);
208 AlertDialog dialog = (AlertDialog)getDialog() local
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/p2p/
WifiP2pSettings.java 22 import android.app.Dialog;
206 public void onClick(DialogInterface dialog, int which) {
226 //disconnect dialog listener
229 public void onClick(DialogInterface dialog, int which) {
245 //cancel connect dialog listener
248 public void onClick(DialogInterface dialog, int which) {
265 //delete persistent group dialog listener
268 public void onClick(DialogInterface dialog, int which) {
420 public Dialog onCreateDialog(int id) {
432 AlertDialog dialog = new AlertDialog.Builder(getActivity() local
445 AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
463 AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
473 AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
OutgoingCallBroadcaster.java 23 import android.app.Dialog;
94 // Dialog IDs
280 * decision may also involve popping up a dialog to ask the user to
385 // isFinishing() return false when 1. broadcast is still ongoing, or 2. dialog is being
674 // disturb the dialog), but we *do* need it here in onStop() to be
675 // sure we clean up if the user hits HOME while the dialog is up.
677 // Note it's safe to call removeDialog() even if there's no dialog
704 Dialog dialog; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizardPage.java 170 DirectoryDialog dialog = new DirectoryDialog(mExistingDirButton.getShell(), SWT.OPEN); local
171 String file = dialog.open();
175 dialog.setFilterPath(path);
181 DirectoryDialog dialog = new DirectoryDialog(mNewDirButton.getShell(), SWT.OPEN); local
184 dialog.setFilterPath(path);
186 String file = dialog.open();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettings.java 22 import android.app.Dialog;
629 // notifications tray to show the network location provider consent dialog.
682 final Dialog[] dialog = new Dialog[1];
683 dialog[0] = MediaRouteDialogPresenter.createDialog(mContext,
688 dialog[0].dismiss();
693 dialog[0].getWindow().setType(WindowManager.LayoutParams.TYPE_VOLUME_OVERLAY);
694 dialog[0].show();
826 final Dialog dialog = builder.create(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 22 import android.app.Dialog;
162 SELECTING_ACCOUNT, // Account select dialog is showing
230 // Account select dialog is showing. Don't setup the editor yet.
251 // No Account specified. Let the user choose from a disambiguation dialog.
324 // it without showing a dialog.
330 return; // Don't show a dialog.
542 CancelEditDialogFragment dialog = new CancelEditDialogFragment(); local
543 dialog.setTargetFragment(fragment, 0);
544 dialog.show(fragment.getFragmentManager(), "cancelEditor");
548 public Dialog onCreateDialog(Bundle savedInstanceState)
549 AlertDialog dialog = new AlertDialog.Builder(getActivity()) local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCheckSettingsFragment.java 21 import android.app.Dialog;
51 * check the accounts settings. 3. A stateless progress dialog (which will be recreated on
196 // Make doubly sure that the dialog isn't pointing at us before we're removed from the
224 // If we are attached, create, recover, and/or update the dialog
231 // 1. get rid of progress dialog (if any)
239 // 1. get rid of progress dialog (if any)
241 // 2. launch the error dialog, if needed
256 // 1. get rid of progress dialog (if any)
258 // 2. launch the error dialog, if needed
269 // 1. get rid of progress dialog (if any
697 final AlertDialog dialog = (AlertDialog) getDialog(); local
713 final ProgressDialog dialog = new ProgressDialog(context); local
    [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;
165 Dialog.applyDialogFont(comp);
550 * Show a dialog that lists all main types
578 SelectionDialog dialog = new TestSelectionDialog(shell, types); local
579 dialog.setTitle(JUnitMessages.JUnitLaunchConfigurationTab_testdialog_title);
580 dialog.setMessage(JUnitMessages.JUnitLaunchConfigurationTab_testdialog_message);
581 if (dialog.open() == Window.CANCEL) {
585 Object[] results = dialog.getResult();
604 * Show a dialog that lets the user select a Android project. This in turn provides
923 ElementTreeSelectionDialog dialog = new ElementTreeSelectionDialog(getShell(), local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 685 * Show a dialog with errors for the given file
687 * @param shell the parent shell to attach the dialog to
695 LintListDialog dialog = new LintListDialog(shell, file, editor); local
696 dialog.open();
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pService.java 1617 AlertDialog dialog = new AlertDialog.Builder(mContext) local
2092 AlertDialog dialog = new AlertDialog.Builder(mContext) local
2120 AlertDialog dialog = new AlertDialog.Builder(mContext) local
2141 AlertDialog dialog = new AlertDialog.Builder(mContext) local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/system/
ash_system_tray_delegate.cc 683 } else { // Show paring dialog for the unpaired device.
684 BluetoothPairingDialog* dialog = variable
686 // The dialog deletes itself on close.
687 dialog->Show();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.cpp 927 int dialog = static_cast<int>(dialogType); local
928 ASSERT_WITH_SECURITY_IMPLICATION(0 <= dialog && dialog < static_cast<int>(arraysize(kDialogs)));
934 WebKit::Platform::current()->histogramEnumeration("Renderer.ModalDialogsDuringPageDismissal", dismissal * arraysize(kDialogs) + dialog, arraysize(kDialogs) * arraysize(kDismissals));
936 String message = String("Blocked ") + kDialogs[dialog] + "('" + dialogMessage + "') during " + kDismissals[dismissal] + ".";
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformancesView.java 245 DirectoryDialog dialog = new DirectoryDialog(getSite().getShell(), SWT.OPEN); local
246 dialog.setText(getTitleToolTip());
247 dialog.setMessage(msg);
249 dialog.setFilterPath(filter);
251 String path = dialog.open();
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 24 import android.app.Dialog;
741 protected Dialog onCreateDialog(int id) {
742 Dialog dialog = null; local
745 dialog = new AlertDialog.Builder(this)
748 public void onClick(DialogInterface dialog, int whichButton) {
765 return dialog;

Completed in 746 milliseconds

1 2 3 4 5 6 78 91011>>