Searched defs:updateCallback (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DDiffUtil.java688 * @param updateCallback The callback to receive the update operations.
691 public void dispatchUpdatesTo(ListUpdateCallback updateCallback) { argument
693 if (updateCallback instanceof BatchingListUpdateCallback) {
694 batchingCallback = (BatchingListUpdateCallback) updateCallback;
696 batchingCallback = new BatchingListUpdateCallback(updateCallback);
697 // replace updateCallback with a batching callback and override references to
698 // updateCallback so that we don't call it directly by mistake
700 updateCallback = batchingCallback;
749 ListUpdateCallback updateCallback, int start, int count, int globalIndex) {
751 updateCallback
748 dispatchAdditions(List<PostponedUpdate> postponedUpdates, ListUpdateCallback updateCallback, int start, int count, int globalIndex) argument
788 dispatchRemovals(List<PostponedUpdate> postponedUpdates, ListUpdateCallback updateCallback, int start, int count, int globalIndex) argument
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DSystemMediaRouteProvider.java321 updateCallback();
633 protected void updateCallback() { method in class:SystemMediaRouteProvider.JellybeanImpl
783 protected void updateCallback() { method in class:SystemMediaRouteProvider.JellybeanMr1Impl
784 super.updateCallback();
847 protected void updateCallback() { method in class:SystemMediaRouteProvider.JellybeanMr2Impl
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskView.java288 AnimationProps toAnimation, ValueAnimator.AnimatorUpdateListener updateCallback) {
306 if (updateCallback != null) {
307 updateCallback.onAnimationUpdate(null);
321 if (updateCallback != null) {
323 updateCallbackAnim.addUpdateListener(updateCallback);
287 updateViewPropertiesToTaskTransform(TaskViewTransform toTransform, AnimationProps toAnimation, ValueAnimator.AnimatorUpdateListener updateCallback) argument

Completed in 130 milliseconds