/packages/services/Telephony/testapps/EmbmsTestDownloadApp/src/com/android/phone/testapps/embmsdownload/ |
D | EmbmsTestDownloadApp.java | 163 "Error " + errorCode + ": " + message, Toast.LENGTH_SHORT).show()); 171 Toast.LENGTH_SHORT).show()); 178 "Initialization done", Toast.LENGTH_SHORT).show()); 222 "temp file root set to " + downloadDir, Toast.LENGTH_SHORT).show(); in onCreate() 234 "temp file root set to " + downloadDir, Toast.LENGTH_SHORT).show(); in onCreate() 249 "No download service bound", Toast.LENGTH_SHORT).show(); in onCreate() 256 "No file service selected", Toast.LENGTH_SHORT).show(); in onCreate() 288 "No download service bound", Toast.LENGTH_SHORT).show(); in onCreate() 302 "No download service bound", Toast.LENGTH_SHORT).show(); in onCreate() 308 "No DownloadRequest Pending for progress...", Toast.LENGTH_SHORT).show(); in onCreate() [all …]
|
/packages/apps/DocumentsUI/src/com/android/documentsui/ui/ |
D | Snackbars.java | 40 Snackbars.makeSnackbar(activity, msg, Snackbar.LENGTH_SHORT).show(); in showDocumentsClipped() 45 makeSnackbar(activity, message, Snackbar.LENGTH_SHORT).show(); in showMove() 50 makeSnackbar(activity, message, Snackbar.LENGTH_SHORT).show(); in showCopy() 55 makeSnackbar(activity, message, Snackbar.LENGTH_SHORT).show(); in showCompress() 60 makeSnackbar(activity, message, Snackbar.LENGTH_SHORT).show(); in showExtract() 65 makeSnackbar(activity, message, Snackbar.LENGTH_SHORT).show(); in showDelete() 69 makeSnackbar(activity, R.string.file_operation_rejected, Snackbar.LENGTH_SHORT).show(); in showOperationRejected() 73 makeSnackbar(activity, R.string.file_operation_error, Snackbar.LENGTH_SHORT).show(); in showOperationFailed() 77 makeSnackbar(activity, R.string.rename_error, Snackbar.LENGTH_SHORT).show(); in showRenameFailed() 83 Snackbar.make(view, R.string.inspector_load_error, Snackbar.LENGTH_INDEFINITE).show(); in showInspectorError() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
D | ConversationInputManager.java | 64 void showHideSimSelector(boolean show); in showHideSimSelector() argument 191 public void showHideMediaPicker(final boolean show, final boolean animate) { in showHideMediaPicker() argument 192 showHideInternal(mMediaInput, show, animate); in showHideMediaPicker() 201 public boolean showHideSimSelector(final boolean show, final boolean animate) { in showHideSimSelector() argument 202 return showHideInternal(mSimInput, show, animate); in showHideSimSelector() 205 public void showHideImeKeyboard(final boolean show, final boolean animate) { in showHideImeKeyboard() argument 206 showHideInternal(mImeInput, show, animate); in showHideImeKeyboard() 261 public boolean showHideInternal(final ConversationInput target, final boolean show, in showHideInternal() argument 267 if (target.mShowing == show) { in showHideInternal() 272 if (!show) { in showHideInternal() [all …]
|
D | ConversationSimSelector.java | 51 final boolean show = mPendingShow.first; in onSubscriptionListDataLoaded() 58 show, animate); in onSubscriptionListDataLoaded() 80 public boolean show(boolean animate) { in show() method in ConversationSimSelector 90 private boolean showHide(final boolean show, final boolean animate) { in showHide() argument 96 mSimSelectorView.showOrHide(show, animate); in showHide() 97 return mSimSelectorView.isOpen() == show; in showHide() 99 mPendingShow = Pair.create(show, animate); in showHide()
|
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/ |
D | TrampolineActivity.java | 64 .show(); in onCreate() 76 .show(); in onCreate() 98 Toast.makeText(this, R.string.dialog_file_missing_body, Toast.LENGTH_SHORT).show(); in onCreate() 116 PausedDialogFragment.show(getFragmentManager(), id, size); in onCreate() 126 .show(); in onCreate() 132 FailedDialogFragment.show(getFragmentManager(), id, reason); in onCreate() 145 public static void show(FragmentManager fm, long id, long size) { in show() method in TrampolineActivity.PausedDialogFragment 151 dialog.show(fm, TAG_PAUSED); in show() 207 public static void show(FragmentManager fm, long id, int reason) { in show() method in TrampolineActivity.FailedDialogFragment 213 dialog.show(fm, TAG_FAILED); in show()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/password/ |
D | SetupSkipDialogTest.java | 50 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in frpMessages_areShownCorrectly_whenNotSupported() 65 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in frpMessages_areShownCorrectly_whenSupported() 80 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPinSetupForFace_shouldShownCorrectly() 95 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPasswordSetupForFace_shouldShownCorrectly() 110 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPatternSetupForFace_shouldShownCorrectly() 125 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPinSetupForFingerprint_shouldShownCorrectly() 140 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPasswordSetupForFingerprint_shouldShownCorrectly() 155 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPatternSetupForFingerprint_shouldShownCorrectly()
|
/packages/services/Telephony/testapps/SmsManagerTestApp/src/com/android/phone/testapps/smsmanagertestapp/ |
D | SmsManagerTestApp.java | 106 Toast.makeText(this, "read_phone_state denied.", Toast.LENGTH_SHORT).show(); in onRequestPermissionsResult() 126 Toast.LENGTH_LONG).show(); in onActivityResult() 129 Toast.LENGTH_SHORT).show(); in onActivityResult() 141 Toast.LENGTH_SHORT).show(); in sendOutgoingSms() 157 Toast.LENGTH_SHORT).show(); in sendOutgoingSmsService() 182 Toast.LENGTH_SHORT).show(); in getSubIdForResult() 206 Toast.LENGTH_LONG).show(); in getPhoneNumber()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | MoveScreensaverRunnable.java | 130 final AnimatorSet show = new AnimatorSet(); in run() local 131 show.setDuration(FADE_TIME); in run() 132 show.setInterpolator(mDeceleration); in run() 133 show.play(getAlphaAnimator(mSaverView, 0f, 1f)) in run() 135 show.addListener(new AnimatorListenerAdapter() { in run() 145 all.play(show).after(hide); in run()
|
/packages/apps/Messaging/src/com/android/messaging/ui/contact/ |
D | ContactPickerFragment.java | 505 private void startExplodeTransitionForContactLists(final boolean show) { in startExplodeTransitionForContactLists() argument 528 toggleContactListItemsVisibilityForPendingTransition(show); in startExplodeTransitionForContactLists() 535 private void toggleContactListItemsVisibilityForPendingTransition(final boolean show) { in toggleContactListItemsVisibilityForPendingTransition() argument 540 mAllContactsListViewHolder.toggleVisibilityForPendingTransition(show, mPendingExplodeView); in toggleContactListItemsVisibilityForPendingTransition() 541 mFrequentContactsListViewHolder.toggleVisibilityForPendingTransition(show, in toggleContactListItemsVisibilityForPendingTransition() 545 private void showHideContactPagerWithAnimation(final boolean show) { in showHideContactPagerWithAnimation() argument 547 if (show == isPagerVisible) { in showHideContactPagerWithAnimation() 551 mCustomHeaderViewPager.animate().alpha(show ? 1F : 0F) in showHideContactPagerWithAnimation() 552 .setStartDelay(!show ? UiUtils.COMPOSE_TRANSITION_DURATION : 0) in showHideContactPagerWithAnimation() 557 mCustomHeaderViewPager.setAlpha(show ? 0F : 1F); in showHideContactPagerWithAnimation() [all …]
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/ |
D | NetworkRequestDialogFragmentTest.java | 91 networkRequestDialogFragment.show(mActivity.getSupportFragmentManager(), null); in display_shouldShowTheDialog() 99 networkRequestDialogFragment.show(mActivity.getSupportFragmentManager(), /* tag */ null); in display_shouldShowTitleWithAppName() 110 networkRequestDialogFragment.show(mActivity.getSupportFragmentManager(), null); in clickNegativeButton_shouldCloseTheDialog() 125 spyFakeFragment.show(mActivity.getSupportFragmentManager(), null); in onResumeAndWaitTimeout_shouldCallTimeoutDialog() 177 …networkRequestDialogFragment.show(spyActivity.getSupportFragmentManager(), "onUserSelectionConnect… in updateAccessPointList_onUserSelectionConnectSuccess_shouldFinishActivity() 278 networkRequestDialogFragment.show(mActivity.getSupportFragmentManager(), /* tag */ null); in display_shouldNotShowNeutralButton() 288 networkRequestDialogFragment.show(mActivity.getSupportFragmentManager(), /* tag */ null); in onMatchManyResult_showNeutralButton() 313 networkRequestDialogFragment.show(mActivity.getSupportFragmentManager(), /* tag */ null); in clickNeutralButton_hideNeutralButton() 337 networkRequestDialogFragment.show(mActivity.getSupportFragmentManager(), /* tag */ null); in cancelDialog_callsReject()
|
/packages/apps/Launcher3/SecondaryDisplayLauncher/src/com/android/launcher3/ |
D | SecondaryDisplayLauncher.java | 109 popup.show(); in onCreate() 121 pickerDialogFragment.show(fm, "fragment_app_picker"); in onMenuItemClick() 170 .show(); in launch() 197 private void showAppDrawer(boolean show) { in showAppDrawer() argument 198 if (show == mAppDrawerShown) { in showAppDrawer() 202 final Animator animator = revealAnimator(mAppDrawerView, show); in showAppDrawer() 203 if (show) { in showAppDrawer()
|
/packages/apps/Settings/src/com/android/settings/datausage/ |
D | BillingCycleSettings.java | 159 CycleEditorFragment.show(this); in onPreferenceTreeClick() 162 BytesEditorFragment.show(this, false); in onPreferenceTreeClick() 165 BytesEditorFragment.show(this, true); in onPreferenceTreeClick() 179 ConfirmLimitFragment.show(this); in onPreferenceChange() 246 public static void show(DataUsageEditController parent, boolean isLimit) { in show() method in BillingCycleSettings.BytesEditorFragment 262 dialog.show(targetFragment.getFragmentManager(), TAG_WARNING_EDITOR); in show() 355 public static void show(BillingCycleSettings parent) { in show() method in BillingCycleSettings.CycleEditorFragment 364 dialog.show(parent.getFragmentManager(), TAG_CYCLE_EDITOR); in show() 424 public static void show(BillingCycleSettings parent) { in show() method in BillingCycleSettings.ConfirmLimitFragment 444 dialog.show(parent.getFragmentManager(), TAG_CONFIRM_LIMIT); in show()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/datausage/ |
D | BillingCycleSettings.java | 159 CycleEditorFragment.show(this); in onPreferenceTreeClick() 162 BytesEditorFragment.show(this, false); in onPreferenceTreeClick() 165 BytesEditorFragment.show(this, true); in onPreferenceTreeClick() 179 ConfirmLimitFragment.show(this); in onPreferenceChange() 246 public static void show(DataUsageEditController parent, boolean isLimit) { in show() method in BillingCycleSettings.BytesEditorFragment 262 dialog.show(targetFragment.getFragmentManager(), TAG_WARNING_EDITOR); in show() 355 public static void show(BillingCycleSettings parent) { in show() method in BillingCycleSettings.CycleEditorFragment 364 dialog.show(parent.getFragmentManager(), TAG_CYCLE_EDITOR); in show() 424 public static void show(BillingCycleSettings parent) { in show() method in BillingCycleSettings.ConfirmLimitFragment 444 dialog.show(parent.getFragmentManager(), TAG_CONFIRM_LIMIT); in show()
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/ |
D | PieRenderer.java | 204 show(false); in showInCenter() 212 show(true); in showInCenter() 217 show(false); in hide() 224 private void show(boolean show) { in show() argument 225 if (show) { in show() 242 setVisible(show); in show() 243 mHandler.sendEmptyMessage(show ? MSG_OPEN : MSG_CLOSE); in show() 350 show(false); in startFadeOut() 426 show(true); in onTouchEvent() 441 show(false); in onTouchEvent() [all …]
|
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/camerafocus/ |
D | PieRenderer.java | 206 show(false); in showInCenter() 214 show(true); in showInCenter() 219 show(false); in hide() 227 private void show(boolean show) { in show() method in PieRenderer 228 if (show) { in show() 245 setVisible(show); in show() 246 handler.sendEmptyMessage(show ? MSG_OPEN : MSG_CLOSE); in show() 350 show(false); in startFadeOut() 427 show(true); in onTouchEvent() 442 show(false); in onTouchEvent() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/ |
D | PrivateVolumeSettings.java | 429 RenameFragment.show(this, mVolume); in onOptionsItemSelected() 507 SystemInfoFragment.show(this); in onPreferenceTreeClick() 512 OtherInfoFragment.show(this, mStorageManager.getBestVolumeDescription(mVolume), in onPreferenceTreeClick() 518 ConfirmClearCacheFragment.show(this); in onPreferenceTreeClick() 526 UserInfoFragment.show(this, pref.getTitle(), pref.getSummary()); in onPreferenceTreeClick() 697 public static void show(PrivateVolumeSettings parent, VolumeInfo vol) { in show() method in PrivateVolumeSettings.RenameFragment 705 dialog.show(parent.getFragmentManager(), TAG_RENAME); in show() 748 public static void show(Fragment parent) { in show() method in PrivateVolumeSettings.SystemInfoFragment 753 dialog.show(parent.getFragmentManager(), TAG_SYSTEM_INFO); in show() 772 public static void show(Fragment parent, String title, VolumeInfo sharedVol, int userId) { in show() method in PrivateVolumeSettings.OtherInfoFragment [all …]
|
D | StorageSettings.java | 263 VolumeUnmountedFragment.show(this, vol.getId()); in onPreferenceTreeClick() 266 DiskInitFragment.show(this, R.string.storage_dialog_unmountable, vol.getDiskId()); in onPreferenceTreeClick() 304 DiskInitFragment.show(this, R.string.storage_dialog_unsupported, key); in onPreferenceTreeClick() 379 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 383 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 415 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 419 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 425 public static void show(Fragment parent, String volumeId) { in show() method in StorageSettings.VolumeUnmountedFragment 432 dialog.show(parent.getFragmentManager(), TAG_VOLUME_UNMOUNTED); in show() 506 public static void show(Fragment parent, int resId, String diskId) { in show() method in StorageSettings.DiskInitFragment [all …]
|
D | StorageWizardFormatConfirm.java | 43 show(activity, diskId, null, false); in showPublic() 47 show(activity, diskId, forgetUuid, false); in showPublic() 51 show(activity, diskId, null, true); in showPrivate() 54 private static void show(FragmentActivity activity, String diskId, String formatForgetUuid, in show() method in StorageWizardFormatConfirm 63 fragment.show(activity.getSupportFragmentManager(), TAG_FORMAT_WARNING); in show()
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
D | PrivateVolumeSettings.java | 429 RenameFragment.show(this, mVolume); in onOptionsItemSelected() 507 SystemInfoFragment.show(this); in onPreferenceTreeClick() 512 OtherInfoFragment.show(this, mStorageManager.getBestVolumeDescription(mVolume), in onPreferenceTreeClick() 518 ConfirmClearCacheFragment.show(this); in onPreferenceTreeClick() 526 UserInfoFragment.show(this, pref.getTitle(), pref.getSummary()); in onPreferenceTreeClick() 697 public static void show(PrivateVolumeSettings parent, VolumeInfo vol) { in show() method in PrivateVolumeSettings.RenameFragment 705 dialog.show(parent.getFragmentManager(), TAG_RENAME); in show() 748 public static void show(Fragment parent) { in show() method in PrivateVolumeSettings.SystemInfoFragment 753 dialog.show(parent.getFragmentManager(), TAG_SYSTEM_INFO); in show() 772 public static void show(Fragment parent, String title, VolumeInfo sharedVol, int userId) { in show() method in PrivateVolumeSettings.OtherInfoFragment [all …]
|
D | StorageSettings.java | 263 VolumeUnmountedFragment.show(this, vol.getId()); in onPreferenceTreeClick() 266 DiskInitFragment.show(this, R.string.storage_dialog_unmountable, vol.getDiskId()); in onPreferenceTreeClick() 304 DiskInitFragment.show(this, R.string.storage_dialog_unsupported, key); in onPreferenceTreeClick() 379 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 383 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 415 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 419 mDescription), Toast.LENGTH_SHORT).show(); in onPostExecute() 425 public static void show(Fragment parent, String volumeId) { in show() method in StorageSettings.VolumeUnmountedFragment 432 dialog.show(parent.getFragmentManager(), TAG_VOLUME_UNMOUNTED); in show() 506 public static void show(Fragment parent, int resId, String diskId) { in show() method in StorageSettings.DiskInitFragment [all …]
|
D | StorageWizardFormatConfirm.java | 43 show(activity, diskId, null, false); in showPublic() 47 show(activity, diskId, forgetUuid, false); in showPublic() 51 show(activity, diskId, null, true); in showPrivate() 54 private static void show(FragmentActivity activity, String diskId, String formatForgetUuid, in show() method in StorageWizardFormatConfirm 63 fragment.show(activity.getSupportFragmentManager(), TAG_FORMAT_WARNING); in show()
|
/packages/apps/Dialer/java/com/android/dialer/blocking/ |
D | BlockNumberDialogFragment.java | 61 public static BlockNumberDialogFragment show( in show() method in BlockNumberDialogFragment 74 newFragment.show(fragmentManager, BlockNumberDialogFragment.BLOCK_DIALOG_FRAGMENT); in show() 183 .show(); in onActivityCreated() 225 Snackbar.make(parentView, undoMessage, Snackbar.LENGTH_LONG).show(); in blockNumber() 250 .show(); in blockNumber() 276 Snackbar.make(parentView, undoMessage, Snackbar.LENGTH_LONG).show(); in unblockNumber() 301 .show(); in unblockNumber()
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
D | RemoveAccountPreferenceController.java | 94 ConfirmRemoveAccountDialog.show(mParentFragment, mAccount, mUserHandle); in onClick() 112 public static ConfirmRemoveAccountDialog show( in show() method in RemoveAccountPreferenceController.ConfirmRemoveAccountDialog 123 dialog.show(parent.getFragmentManager(), REMOVE_ACCOUNT_DIALOG); in show() 173 RemoveAccountFailureDialog.show(getTargetFragment()); in onClick() 188 public static void show(Fragment parent) { in show() method in RemoveAccountPreferenceController.RemoveAccountFailureDialog 195 dialog.show(parent.getFragmentManager(), FAILED_REMOVAL_DIALOG); in show()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/accounts/ |
D | RemoveAccountPreferenceController.java | 95 ConfirmRemoveAccountDialog.show(mParentFragment, mAccount, mUserHandle); in onClick() 113 public static ConfirmRemoveAccountDialog show( in show() method in RemoveAccountPreferenceController.ConfirmRemoveAccountDialog 124 dialog.show(parent.getFragmentManager(), REMOVE_ACCOUNT_DIALOG); in show() 174 RemoveAccountFailureDialog.show(getTargetFragment()); in onClick() 190 public static void show(Fragment parent) { in show() method in RemoveAccountPreferenceController.RemoveAccountFailureDialog 196 dialog.show(parent.getFragmentManager(), FAILED_REMOVAL_DIALOG); in show()
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/datausage/ |
D | UsageBytesThresholdPickerDialogTest.java | 60 dialog.show(mFragment.getFragmentManager(), /* tag= */ null); in dialogInit_validValue_showsCurrentValue() 68 dialog.show(mFragment.getFragmentManager(), /* tag= */ null); in dialogInit_lowInvalidValue_showsLowestPossibleValue() 78 dialog.show(mFragment.getFragmentManager(), /* tag= */ null); in positiveButtonClick_noChangeInValue_dialogListenerNotCalled() 92 dialog.show(mFragment.getFragmentManager(), /* tag= */ null); in positiveButtonClick_changeInValue_dialogListenerCalled() 108 dialog.show(mFragment.getFragmentManager(), /* tag= */ null); in getCurrentThreshold_aboveLimit_returnLimit()
|