/packages/apps/Dialer/java/com/android/dialer/main/impl/toolbar/ |
D | MainToolbar.java | 75 public void slideUp(boolean animate, View container) { in slideUp() argument 87 slideUp(animate, container); in slideUp() 97 animate() in slideUp() 99 .setDuration(animate ? SLIDE_DURATION : 0) in slideUp() 103 .animate() in slideUp() 105 .setDuration(animate ? SLIDE_DURATION : 0) in slideUp() 111 public void slideDown(boolean animate, View container) { in slideDown() argument 116 animate() in slideDown() 118 .setDuration(animate ? SLIDE_DURATION : 0) in slideDown() 122 .animate() in slideDown() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
D | ConversationInputManager.java | 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() 209 public void hideAllInputs(final boolean animate) { in hideAllInputs() argument 212 showHideInternal(mInputs[i], false, animate); in hideAllInputs() 223 public boolean toggleSimSelector(final boolean animate, final SubscriptionListEntry subEntry) { in toggleSimSelector() argument 225 return mSimInput.toggle(animate); in toggleSimSelector() [all …]
|
D | ConversationSimSelector.java | 52 final boolean animate = mPendingShow.second; in onSubscriptionListDataLoaded() 58 show, animate); in onSubscriptionListDataLoaded() 80 public boolean show(boolean animate) { in show() argument 82 return showHide(true, animate); in show() 86 public boolean hide(boolean animate) { in hide() argument 87 return showHide(false, animate); in hide() 90 private boolean showHide(final boolean show, final boolean animate) { in showHide() argument 96 mSimSelectorView.showOrHide(show, animate); in showHide() 99 mPendingShow = Pair.create(show, animate); in showHide()
|
D | ConversationActivityUiState.java | 33 void onConversationContactPickerUiStateChanged(int oldState, int newState, boolean animate); in onConversationContactPickerUiStateChanged() argument 207 private void performUiStateUpdate(final int conversationContactState, final boolean animate) { in performUiStateUpdate() argument 215 notifyOnOverallUiStateChanged(oldState, mConversationContactUiState, animate); in performUiStateUpdate() 221 final int oldState, final int newState, final boolean animate) { in notifyOnOverallUiStateChanged() argument 231 mHost.onConversationContactPickerUiStateChanged(oldState, newState, animate); in notifyOnOverallUiStateChanged()
|
D | ConversationInput.java | 31 final boolean animate); in showHideInternal() argument 41 public abstract boolean show(boolean animate); in show() argument 42 public abstract boolean hide(boolean animate); in hide() argument 66 public boolean toggle(final boolean animate) { in toggle() argument
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/widget/ |
D | LoadingViewController.java | 48 public void showContent(boolean animate) { in showContent() argument 52 handleLoadingContainer(true /* show */, animate); in showContent() 60 public void handleLoadingContainer(boolean done, boolean animate) { in handleLoadingContainer() argument 61 handleLoadingContainer(mLoadingView, mContentView, done, animate); in handleLoadingContainer() 73 boolean animate) { in handleLoadingContainer() argument 74 setViewShown(loading, !done, animate); in handleLoadingContainer() 75 setViewShown(content, done, animate); in handleLoadingContainer() 78 private static void setViewShown(final View view, boolean shown, boolean animate) { in setViewShown() argument 79 if (animate) { in setViewShown()
|
/packages/apps/Settings/src/com/android/settings/widget/ |
D | LoadingViewController.java | 48 public void showContent(boolean animate) { in showContent() argument 52 handleLoadingContainer(true /* show */, animate); in showContent() 60 public void handleLoadingContainer(boolean done, boolean animate) { in handleLoadingContainer() argument 61 handleLoadingContainer(mLoadingView, mContentView, done, animate); in handleLoadingContainer() 73 boolean animate) { in handleLoadingContainer() argument 74 setViewShown(loading, !done, animate); in handleLoadingContainer() 75 setViewShown(content, done, animate); in handleLoadingContainer() 78 private static void setViewShown(final View view, boolean shown, boolean animate) { in setViewShown() argument 79 if (animate) { in setViewShown()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | AbstractFloatingView.java | 128 public final void close(boolean animate) { in close() argument 129 animate &= Utilities.areAnimationsEnabled(getContext()); in close() 134 handleClose(animate); in close() 138 protected abstract void handleClose(boolean animate); in handleClose() argument 225 public static void closeOpenViews(ActivityContext activity, boolean animate, in closeOpenViews() argument 235 abs.close(animate); in closeOpenViews() 241 public static void closeAllOpenViews(ActivityContext activity, boolean animate) { in closeAllOpenViews() argument 242 closeOpenViews(activity, animate, TYPE_ALL); in closeAllOpenViews() 250 public static void closeAllOpenViewsExcept(ActivityContext activity, boolean animate, in closeAllOpenViewsExcept() argument 252 closeOpenViews(activity, animate, TYPE_ALL & ~type); in closeAllOpenViewsExcept()
|
/packages/apps/PermissionController/src/com/android/permissioncontroller/permission/ui/handheld/ |
D | PermissionsFrameFragment.java | 115 protected void setLoading(boolean loading, boolean animate) { in setLoading() argument 116 setLoading(loading, animate, false); in setLoading() 119 private void setLoading(boolean loading, boolean animate, boolean force) { in setLoading() argument 124 animate = false; in setLoading() 127 setViewShown(mPrefsView, !loading, animate); in setLoading() 130 setViewShown(mLoadingView, loading, animate); in setLoading() 187 private void setViewShown(final View view, boolean shown, boolean animate) { in setViewShown() argument 188 if (animate) { in setViewShown()
|
/packages/apps/PermissionController/src/com/android/permissioncontroller/permission/ui/television/ |
D | PermissionsFrameFragment.java | 85 protected void setLoading(boolean loading, boolean animate) { in setLoading() argument 86 setLoading(loading, animate, false); in setLoading() 89 private void setLoading(boolean loading, boolean animate, boolean force) { in setLoading() argument 94 animate = false; in setLoading() 97 setViewShown(mPrefsView, !loading, animate); in setLoading() 100 setViewShown(mLoadingView, loading, animate); in setLoading() 105 private void setViewShown(final View view, boolean shown, boolean animate) { in setViewShown() argument 106 if (animate) { in setViewShown()
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
D | FloatingActionButtonController.java | 115 public void align(int align, boolean animate) { in align() argument 116 align(align, 0 /*offsetX */, 0 /* offsetY */, animate); in align() 127 public void align(int align, int offsetX, int offsetY, boolean animate) { in align() argument 135 if (animate && mFloatingActionButtonContainer.isShown()) { in align() 136 mFloatingActionButtonContainer.animate() in align() 153 public void resize(int dimension, boolean animate) { in resize() argument 154 if (animate) { in resize()
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
D | BummerView.java | 37 boolean animate = false; 40 animate = mAnimate; 54 if (animate) { 55 animate().x(newx) 84 public void setAnimationParams(boolean animate, int delay, int animTime) { in setAnimationParams() argument 85 mAnimate = animate; in setAnimationParams()
|
/packages/apps/Dialer/java/com/android/dialer/main/impl/ |
D | MainSearchController.java | 141 public void showDialpad(boolean animate) { in showDialpad() argument 143 showDialpad(animate, false); in showDialpad() 146 private void showDialpad(boolean animate, boolean fromNewIntent) { in showDialpad() argument 155 toolbar.slideUp(animate, fragmentContainer); in showDialpad() 156 toolbar.expand(animate, Optional.absent(), /* requestFocus */ false); in showDialpad() 196 private void hideDialpad(boolean animate) { in hideDialpad() argument 219 toolbar.slideDown(animate, fragmentContainer); in hideDialpad() 223 dialpadFragment.setAnimate(animate); in hideDialpad() 225 animate, in hideDialpad() 321 private void closeSearch(boolean animate) { in closeSearch() argument [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/display/ |
D | PreviewPagerAdapter.java | 120 final boolean animate) { in setPreviewLayer() argument 128 setVisibility(lastLayer, View.INVISIBLE, animate); in setPreviewLayer() 143 setVisibility(nextLayer, View.VISIBLE, animate); in setPreviewLayer() 150 private void setVisibility(final View view, final int visibility, boolean animate) { in setVisibility() argument 152 if (!animate) { in setVisibility() 160 view.animate() in setVisibility() 173 view.animate() in setVisibility()
|
/packages/apps/TV/src/com/android/tv/ui/ |
D | TvViewUiManager.java | 261 public int setDisplayMode(int displayMode, boolean storeInPreference, boolean animate) { in setDisplayMode() argument 267 applyDisplayMode(mTvView.getVideoDisplayAspectRatio(), animate, false); in setDisplayMode() local 272 public void restoreDisplayMode(boolean animate) { in restoreDisplayMode() argument 275 setDisplayMode(displayMode, false, animate); in restoreDisplayMode() 320 int color, FrameLayout.LayoutParams targetLayoutParams, boolean animate) { in setBackgroundColor() argument 321 if (animate) { in setBackgroundColor() 358 boolean animate) { in setTvViewPosition() argument 375 + animate); in setTvViewPosition() 380 if (animate) { in setTvViewPosition() 500 float videoDisplayAspectRatio, boolean animate, boolean forceUpdate) { in applyDisplayMode() argument [all …]
|
/packages/apps/Browser2/src/org/chromium/webview_shell/ |
D | WebViewAnimationTestActivity.java | 126 mWebView.animate().translationX(100f).translationY(100f); in runTranslate() 128 mWebView.animate().translationX(0f).translationY(0f); in runTranslate() 134 mWebView.animate().scaleX(.5f).scaleY(.5f); in runScale() 136 mWebView.animate().scaleX(1f).scaleY(1f); in runScale() 142 mWebView.animate().rotationX(45f).rotationY(45f).rotation(90f); in runRotate() 144 mWebView.animate().rotationX(0f).rotationY(0f).rotation(0f); in runRotate()
|
/packages/apps/Settings/src/com/android/settings/display/ |
D | PreviewPagerAdapter.java | 121 final boolean animate) { in setPreviewLayer() argument 129 setVisibility(lastLayer, View.INVISIBLE, animate); in setPreviewLayer() 144 setVisibility(nextLayer, View.VISIBLE, animate); in setPreviewLayer() 151 private void setVisibility(final View view, final int visibility, boolean animate) { in setVisibility() argument 153 if (!animate) { in setVisibility() 161 view.animate() in setVisibility() 174 view.animate() in setVisibility()
|
/packages/apps/StorageManager/src/com/android/storagemanager/utils/ |
D | Utils.java | 27 View loading, View doneLoading, boolean done, boolean animate) { in handleLoadingContainer() argument 28 setViewShown(loading, !done, animate); in handleLoadingContainer() 29 setViewShown(doneLoading, done, animate); in handleLoadingContainer() 32 private static void setViewShown(final View view, boolean shown, boolean animate) { in setViewShown() argument 33 if (animate) { in setViewShown()
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
D | MediaPickerPanel.java | 243 void setExpanded(final boolean expanded, final boolean animate, final int startingPage) { in setExpanded() argument 244 setExpanded(expanded, animate, startingPage, false /* force */); in setExpanded() 247 private void setExpanded(final boolean expanded, final boolean animate, final int startingPage, in setExpanded() argument 257 setDesiredHeight(getDesiredHeight(), animate); in setExpanded() 270 setFullScreenView(true, animate); in setExpanded() 278 private void setDesiredHeight(int height, final boolean animate) { in setDesiredHeight() argument 284 if (animate) { in setDesiredHeight() 323 void setFullScreenView(final boolean fullScreen, final boolean animate) { in setFullScreenView() argument 333 setDesiredHeight(getDesiredHeight(), animate); in setFullScreenView() local
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/ |
D | ActionAdapter.java | 320 view.animate().alpha(alpha) in setAlpha() 421 v.animate().alpha(destAlpha).setDuration(duration).setStartDelay(delay); in prepareAndAnimateView() 423 v.animate().setInterpolator(interpolator); in prepareAndAnimateView() 425 v.animate().setListener(new AnimatorListenerAdapter() { in prepareAndAnimateView() 444 v.animate().start(); in prepareAndAnimateView() 463 checkView.animate().alpha(CHECKMARK_ANIM_UNSELECTED_ALPHA) in fadeCheckmarks() 466 checkView.animate().setInterpolator(interpolator); in fadeCheckmarks() 468 checkView.animate().setListener(new AnimatorListenerAdapter() { in fadeCheckmarks() 486 checkView.animate().alpha(CHECKMARK_ANIM_SELECTED_ALPHA).setDuration(duration) in fadeCheckmarks() 489 checkView.animate().setInterpolator(interpolator); in fadeCheckmarks() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/model/data/ |
D | FolderInfo.java | 128 public void add(WorkspaceItemInfo item, boolean animate) { in add() argument 129 add(item, contents.size(), animate); in add() 135 public void add(WorkspaceItemInfo item, int rank, boolean animate) { in add() argument 141 itemsChanged(animate); in add() 149 public void remove(WorkspaceItemInfo item, boolean animate) { in remove() argument 154 itemsChanged(animate); in remove() 172 public void itemsChanged(boolean animate) { in itemsChanged() argument 174 mListeners.get(i).onItemsChanged(animate); in itemsChanged() 181 public void onItemsChanged(boolean animate); in onItemsChanged() argument
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | WidgetsFullSheet.java | 173 private void open(boolean animate) { in open() argument 174 if (animate) { in open() 196 mContent.animate().alpha(1).setDuration(FADE_IN_DURATION); in open() 206 protected void handleClose(boolean animate) { in handleClose() argument 207 handleClose(animate, DEFAULT_OPEN_DURATION); in handleClose() 231 public static WidgetsFullSheet show(Launcher launcher, boolean animate) { in show() argument 236 sheet.open(animate); in show()
|
/packages/apps/Dialer/java/com/android/dialer/widget/ |
D | FloatingActionButtonController.java | 116 public void align(int align, boolean animate) { in align() argument 117 align(align, 0 /*offsetX */, 0 /* offsetY */, animate); in align() 128 private void align(int align, int offsetX, int offsetY, boolean animate) { in align() argument 136 if (animate && fab.isShown()) { in align() 137 fab.animate() in align()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
D | GridDocumentHolder.java | 77 public void setSelected(boolean selected, boolean animate) { in setSelected() argument 82 if (animate) { in setSelected() 95 super.setSelected(selected, animate); in setSelected() 97 if (animate) { in setSelected() 166 mIconMimeLg.animate().cancel(); in bind() 168 mIconThumb.animate().cancel(); in bind()
|
/packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/ |
D | SwipeButtonView.java | 354 public void setImageScale(float imageScale, boolean animate) { in setImageScale() argument 355 setImageScale(imageScale, animate, -1, null); in setImageScale() 368 float imageScale, boolean animate, long duration, @Nullable Interpolator interpolator) { in setImageScale() argument 370 if (!animate) { in setImageScale() 413 public void setImageAlpha(float alpha, boolean animate) { in setImageAlpha() argument 414 setImageAlpha(alpha, animate, -1, null, null); in setImageAlpha() 428 boolean animate, in setImageAlpha() argument 436 if (!animate) { in setImageAlpha()
|