/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_LONG).show(); in showDocumentsClipped() 45 makeSnackbar(activity, message, Snackbar.LENGTH_LONG).show(); in showMove() 50 makeSnackbar(activity, message, Snackbar.LENGTH_LONG).show(); in showCopy() 55 makeSnackbar(activity, message, Snackbar.LENGTH_LONG).show(); in showCompress() 60 makeSnackbar(activity, message, Snackbar.LENGTH_LONG).show(); in showExtract() 65 makeSnackbar(activity, message, Snackbar.LENGTH_LONG).show(); in showDelete() 69 makeSnackbar(activity, R.string.file_operation_rejected, Snackbar.LENGTH_LONG).show(); in showOperationRejected() 73 makeSnackbar(activity, R.string.file_operation_error, Snackbar.LENGTH_LONG).show(); in showOperationFailed() 77 makeSnackbar(activity, R.string.rename_error, Snackbar.LENGTH_LONG).show(); in showRenameFailed() 83 Snackbar.make(view, R.string.inspector_load_error, Snackbar.LENGTH_INDEFINITE).show(); in showInspectorError() [all …]
|
D | DialogController.java | 136 mCurrentProgressDialog.show(); in showProgressDialog() 143 mActivity, R.string.toast_action_not_allowed, Snackbar.LENGTH_LONG).show(); in showActionNotAllowed() 149 mActivity, R.string.toast_no_application, Snackbar.LENGTH_LONG).show(); in showNoApplicationFound() 160 Snackbar.LENGTH_LONG).show(); in showViewInArchivesUnsupported() 171 Snackbars.makeSnackbar(mActivity, message, Snackbar.LENGTH_LONG).show(); in showShareOverLimit() 176 ConfirmFragment.show(fm, pickTarget, type); in confirmAction()
|
/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/apps/Car/SystemUI/tests/src/com/android/systemui/car/keyguard/ |
D | CarKeyguardViewControllerTest.java | 102 mCarKeyguardViewController.show(/* options= */ null); in onShow_bouncerIsSecure_showsBouncerWithSecuritySelectionReset() 105 verify(mBouncer).show(/* resetSecuritySelection= */ true); in onShow_bouncerIsSecure_showsBouncerWithSecuritySelectionReset() 111 mCarKeyguardViewController.show(/* options= */ null); in onShow_bouncerIsSecure_keyguardIsVisible() 119 mCarKeyguardViewController.show(/* options= */ null); in onShow_bouncerNotSecure_hidesBouncerAndDestroysTheView() 128 mCarKeyguardViewController.show(/* options= */ null); in onShow_bouncerNotSecure_keyguardIsNotVisible() 147 mCarKeyguardViewController.show(/* options= */ null); in onHide_keyguardShowing_hidesBouncerAndDestroysTheView() 163 mCarKeyguardViewController.show(/* options= */ null); in onHide_KeyguardNotVisible() 176 mCarKeyguardViewController.show(/* options= */ null); in setOccludedFalse_currentlyOccluded_showsKeyguard() 183 verify(mBouncer).show(true); in setOccludedFalse_currentlyOccluded_showsKeyguard() 189 mCarKeyguardViewController.show(/* options= */ null); in onCancelClicked_callsCancelClickedListener() [all …]
|
/packages/apps/Car/libs/car-ui-lib/paintbooth/src/main/java/com/android/car/ui/paintbooth/dialogs/ |
D | DialogsActivity.java | 115 .show(); in showDialog() 123 .show(); in showDialogWithIcon() 129 .show(); in showDialogWithNoButtonProvided() 144 .show(); in showDialogWithCheckbox() 155 .show(); in showDialogWithTextBox() 164 .show(); in showDialogWithOnlyPositiveButton() 174 .show(); in showDialogWithoutTitle() 178 Toast.makeText(this, "Toast message looks like this", Toast.LENGTH_LONG).show(); in showToast() 186 .show(); in showDialogWithSubtitle() 208 .show(); in showDialogWithSingleChoiceItems() [all …]
|
/packages/services/Mtp/tests/src/com/android/mtp/ |
D | TestResultInstrumentation.java | 54 show("ERROR", test, t); in addError() 60 show("FAIL", test, t); in addFailure() 66 show("PASS", test, null); in endTest() 75 void show(String message) { in show() method in TestResultInstrumentation 76 TestResultActivity.show(getContext(), " " + message); in show() 79 private void show(String tag, Test test, Throwable t) { in show() method in TestResultInstrumentation 84 TestResultActivity.show( in show()
|
/packages/apps/Car/Media/src/com/android/car/media/ |
D | MediaActivityController.java | 418 private void showCurrentNode(boolean show) { in showCurrentNode() argument 424 BrowseViewController controller = show ? getControllerForItem(currentNode) : in showCurrentNode() 428 showHideContentAnimated(show, controller.getContent(), mViewAnimEndListener); in showCurrentNode() 451 private void showHideContentAnimated(boolean show, @NonNull View content, in showHideContentAnimated() argument 460 if (!show && carUiRecyclerView.hasFocus()) { in showHideContentAnimated() 465 if (show) { in showHideContentAnimated() 474 showHideViewAnimated(show, content, mFadeDuration, listener); in showHideContentAnimated() 479 private void showSearchResults(boolean show) { in showSearchResults() argument 480 if (mViewModel.isShowingSearchResults() != show) { in showSearchResults() 481 mViewModel.setShowingSearchResults(show); in showSearchResults() [all …]
|
/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() 171 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPinSetupForBiometrics_shouldShownCorrectly() 186 setupSkipDialog.show(mActivity.getSupportFragmentManager()); in dialogMessage_whenSkipPasswordSetupForBiometrics_shouldShownCorrectly() [all …]
|
/packages/services/Telephony/testapps/SmsManagerTestApp/src/com/android/phone/testapps/smsmanagertestapp/ |
D | SmsManagerTestApp.java | 116 Toast.makeText(this, "read_phone_state denied.", Toast.LENGTH_SHORT).show(); in onRequestPermissionsResult() 136 Toast.LENGTH_LONG).show(); in onActivityResult() 139 Toast.LENGTH_SHORT).show(); in onActivityResult() 151 Toast.LENGTH_SHORT).show(); in sendOutgoingSms() 167 Toast.LENGTH_SHORT).show(); in sendOutgoingSmsService() 192 Toast.LENGTH_SHORT).show(); in getSubIdForResult() 214 Toast.LENGTH_SHORT).show(); in checkSingleRegPermission() 217 Toast.LENGTH_SHORT).show(); in checkSingleRegPermission() 242 Toast.LENGTH_LONG).show(); in getPhoneNumber()
|
/packages/apps/Car/libs/car-ui-lib/paintbooth/src/main/java/com/android/car/ui/paintbooth/toolbar/ |
D | ToolbarActivity.java | 165 .show(); in onCreate() 187 Toast.LENGTH_SHORT).show()) in onCreate() 198 Toast.LENGTH_SHORT).show()) in onCreate() 211 .show()) in onCreate() 221 Toast.LENGTH_SHORT).show()) in onCreate() 233 Toast.LENGTH_SHORT).show()) in onCreate() 244 Toast.LENGTH_SHORT).show()) in onCreate() 257 Toast.LENGTH_SHORT).show()) in onCreate() 270 Toast.LENGTH_SHORT).show()) in onCreate() 281 Toast.LENGTH_SHORT).show()) in onCreate() [all …]
|
/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/DocumentsUI/tests/functional/com/android/documentsui/ |
D | DialogUiTest.java | 88 mActivityTestRule.runOnUiThread(() -> CreateDirectoryFragment.show(mFragmentManager)); in testCreateDialogShows() 99 mActivityTestRule.runOnUiThread(() -> CreateDirectoryFragment.show(mFragmentManager)); in testCreateDialogShowsDismiss() 116 mActivityTestRule.runOnUiThread(() -> CreateDirectoryFragment.show(mFragmentManager)); in testCreateDialogShows_textInputEditText_shouldNotTruncateOnPortrait() 136 mActivityTestRule.runOnUiThread(() -> CreateDirectoryFragment.show(mFragmentManager)); in testCreateDialog_textInputEditText_shouldNotTruncateOnLargeDensity() 157 mActivityTestRule.runOnUiThread(() -> CreateDirectoryFragment.show(mFragmentManager)); in testCreateDialog_textInputEditText_shouldNotTruncateOnLargerDensity() 177 mActivityTestRule.runOnUiThread(() -> CreateDirectoryFragment.show(mFragmentManager)); in testCreateDialog_textInputEditText_shouldNotTruncateOnLargestDensity() 198 mActivityTestRule.runOnUiThread(() -> CreateDirectoryFragment.show(mFragmentManager)); in testCreateDirectoryFragmentShows_textInputEditText_shouldNotTruncateOnLandscape() 221 CreateDirectoryFragment.show(mFragmentManager); in testCreateDirectoryFragmentShows_skipWhenStateSaved() 229 DeleteDocumentFragment.show(mFragmentManager, null, null); in testDeleteDocumentFragmentShows_skipWhenStateSaved() 237 RenameDocumentFragment.show(mFragmentManager, new DocumentInfo()); in testRenameDocumentFragmentShows_skipWhenStateSaved() [all …]
|
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/ |
D | SelfManagedCallingActivity.java | 82 R.string.incomingCallNotPermittedCS , Toast.LENGTH_SHORT).show(); 89 R.string.outgoingCallNotPermittedCS , Toast.LENGTH_SHORT).show(); 196 Toast.makeText(this, R.string.outgoingCallNotPermitted , Toast.LENGTH_SHORT).show(); in placeOutgoingCall() 221 Toast.makeText(this, R.string.outgoingCallNotPermitted, Toast.LENGTH_SHORT).show(); in placeSelfManagedOutgoingCall() 247 Toast.makeText(this, R.string.incomingCallNotPermitted , Toast.LENGTH_SHORT).show(); in placeIncomingCall() 271 Toast.makeText(this, R.string.incomingCallNotPermitted , Toast.LENGTH_SHORT).show(); in placeSelfManagedIncomingCall() 286 Toast.LENGTH_LONG).show(); in enableCarMode() 292 Toast.makeText(this, "Disabling car mode", Toast.LENGTH_LONG).show(); in disableCarMode() 315 Toast.makeText(this, "Call screening role granted.", Toast.LENGTH_SHORT).show(); in onActivityResult() 317 Toast.makeText(this, "Call screening role NOT granted.", Toast.LENGTH_SHORT).show(); in onActivityResult()
|
D | TestDialerActivity.java | 164 Toast.makeText(this, message, Toast.LENGTH_SHORT).show(); in showToast() 172 Toast.makeText(this, "Privileged dialer operation failed", Toast.LENGTH_SHORT).show(); in cancelMissedCallNotification() 175 Toast.makeText(this, "Privileged dialer operation succeeded", Toast.LENGTH_SHORT).show(); in cancelMissedCallNotification() 202 Toast.LENGTH_LONG).show(); in enableCarMode() 208 Toast.LENGTH_LONG).show(); in enableCarMode() 214 Toast.makeText(this, "Disabling car mode", Toast.LENGTH_LONG).show(); in disableCarMode() 229 Toast.makeText(this, "Is UI enabled? " + isEnabled, Toast.LENGTH_LONG).show(); in toggleInCallService()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | MoveScreensaverRunnable.kt | 110 val show = AnimatorSet() in run() constant 111 show.duration = FADE_TIME in run() 112 show.interpolator = mDeceleration in run() 113 show.play(AnimatorUtils.getAlphaAnimator(mSaverView, 0f, 1f)) in run() 115 show.addListener(object : AnimatorListenerAdapter() { in run() 124 all.play(show).after(hide) in run()
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
D | NetworkRequestDialogActivity.java | 81 mDialogFragment.show(getSupportFragmentManager(), TAG); in onCreate() 92 mProgressDialog.show(); in showProgressDialog() 103 mDialogFragment.show(getSupportFragmentManager(), TAG); in showSingleSsidRequestDialog() 165 dialogFragment.show(getSupportFragmentManager(), TAG); in stopScanningAndPopErrorDialog() 211 .show(); in onUserSelectionConnectSuccess() 221 .show(); in onUserSelectionConnectFailure() 248 mDialogFragment.show(getSupportFragmentManager(), TAG); in onClickRescanButton()
|
/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/src/com/android/settings/datausage/ |
D | BillingCycleSettings.java | 158 CycleEditorFragment.show(this); in onPreferenceTreeClick() 162 BytesEditorFragment.show(this, false); in onPreferenceTreeClick() 166 BytesEditorFragment.show(this, true); in onPreferenceTreeClick() 180 ConfirmLimitFragment.show(this); in onPreferenceChange() 247 public static void show(DataUsageEditController parent, boolean isLimit) { in show() method in BillingCycleSettings.BytesEditorFragment 263 dialog.show(targetFragment.getFragmentManager(), TAG_WARNING_EDITOR); in show() 368 public static void show(BillingCycleSettings parent) { in show() method in BillingCycleSettings.CycleEditorFragment 377 dialog.show(parent.getFragmentManager(), TAG_CYCLE_EDITOR); in show() 437 public static void show(BillingCycleSettings parent) { in show() method in BillingCycleSettings.ConfirmLimitFragment 457 dialog.show(parent.getFragmentManager(), TAG_CONFIRM_LIMIT); in show()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/window/ |
D | OverlayViewGlobalStateController.java | 105 public void showView(OverlayViewController viewController, @Nullable Runnable show) { in showView() argument 119 if (show != null) { in showView() 120 show.run(); in showView() 228 mWindowInsetsController.show(navigationBars()); in refreshSystemBarVisibility() 236 mWindowInsetsController.show(navigationBars()); in refreshSystemBarVisibility() 242 mWindowInsetsController.show(statusBars()); in refreshStatusBarVisibility() 250 mWindowInsetsController.show(statusBars()); in refreshStatusBarVisibility()
|
/packages/apps/Launcher3/src/com/android/launcher3/views/ |
D | OptionsPopupView.java | 133 public static OptionsPopupView show( in show() method in OptionsPopupView 135 return show(launcher, targetRect, items, shouldAddArrow, 0 /* width */); in show() 138 public static OptionsPopupView show( in show() method in OptionsPopupView 160 popup.show(); in show() 186 show(launcher, target, getOptions(launcher), false); in showDefaultOptions() 226 Toast.makeText(launcher, R.string.safemode_widget_error, Toast.LENGTH_SHORT).show(); in openWidgets() 229 return WidgetsFullSheet.show(launcher, true /* animated */); in openWidgets() 249 Toast.makeText(launcher, R.string.msg_disabled_by_admin, Toast.LENGTH_SHORT).show(); in startWallpaperPicker()
|
/packages/apps/Dialer/java/com/android/dialer/widget/ |
D | DialerFloatingActionButton.java | 51 public void show() { in show() method in DialerFloatingActionButton 52 super.show(); in show() 57 public void show(@Nullable OnVisibilityChangedListener onVisibilityChangedListener) { in show() method in DialerFloatingActionButton 58 super.show(onVisibilityChangedListener); 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()
|
/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 …]
|