Home
last modified time | relevance | path

Searched refs:LoggingInfo (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DLoggingItemAnimator.java66 BaseRecyclerViewAnimationsTest.LoggingInfo in recordPreLayoutInformation()
67 … loggingInfo = new BaseRecyclerViewAnimationsTest.LoggingInfo(viewHolder, changeFlags, payloads); in recordPreLayoutInformation()
75 BaseRecyclerViewAnimationsTest.LoggingInfo in recordPostLayoutInformation()
76 loggingInfo = new BaseRecyclerViewAnimationsTest.LoggingInfo(viewHolder, 0, null); in recordPostLayoutInformation()
86 (BaseRecyclerViewAnimationsTest.LoggingInfo) preLayoutInfo, in animateDisappearance()
87 (BaseRecyclerViewAnimationsTest.LoggingInfo) postLayoutInfo)); in animateDisappearance()
97 (BaseRecyclerViewAnimationsTest.LoggingInfo) preLayoutInfo, in animateAppearance()
98 (BaseRecyclerViewAnimationsTest.LoggingInfo) postLayoutInfo)); in animateAppearance()
108 (BaseRecyclerViewAnimationsTest.LoggingInfo) preInfo, in animatePersistence()
109 (BaseRecyclerViewAnimationsTest.LoggingInfo) postInfo)); in animatePersistence()
[all …]
DItemAnimatorV2ApiTest.java67 LoggingInfo pre = mAnimator.preLayoutInfoMap.get(target); in changeMovedOutside()
128 LoggingInfo pre = mAnimator.preLayoutInfoMap.get(oldTarget); in changeMovedOutsideWithPredictiveAndTwoViewHolders()
133 LoggingInfo post = mAnimator.postLayoutInfoMap.get(newTarget); in changeMovedOutsideWithPredictiveAndTwoViewHolders()
141 LoggingInfo singleItemPre = mAnimator.preLayoutInfoMap.get(singleItemTarget); in changeMovedOutsideWithPredictiveAndTwoViewHolders()
143 LoggingInfo singleItemPost = mAnimator.postLayoutInfoMap.get(singleItemTarget); in changeMovedOutsideWithPredictiveAndTwoViewHolders()
171 LoggingInfo pre = mAnimator.preLayoutInfoMap.get(target); in changeMovedOutsideWithPredictive()
173 LoggingInfo postInfo = mAnimator.postLayoutInfoMap.get(target); in changeMovedOutsideWithPredictive()
602 Map<RecyclerView.ViewHolder, LoggingInfo> preLayoutInfoMap = new HashMap<>();
603 Map<RecyclerView.ViewHolder, LoggingInfo> postLayoutInfoMap = new HashMap<>();
621 LoggingInfo loggingInfo = new LoggingInfo(viewHolder, changeFlags, payloads); in recordPreLayoutInformation()
[all …]
DBaseRecyclerViewAnimationsTest.java629 static class LoggingInfo extends RecyclerView.ItemAnimator.ItemHolderInfo { class in BaseRecyclerViewAnimationsTest
635 LoggingInfo(RecyclerView.ViewHolder viewHolder, int changeFlags, List<Object> payloads) { in LoggingInfo() method in BaseRecyclerViewAnimationsTest.LoggingInfo
661 LoggingInfo pre, LoggingInfo post) { in AnimateChange()
669 public AnimatePersistence(RecyclerView.ViewHolder viewHolder, LoggingInfo pre, in AnimatePersistence()
670 LoggingInfo post) { in AnimatePersistence()
676 public AnimateAppearance(RecyclerView.ViewHolder viewHolder, LoggingInfo pre, in AnimateAppearance()
677 LoggingInfo post) { in AnimateAppearance()
683 public AnimateDisappearance(RecyclerView.ViewHolder viewHolder, LoggingInfo pre, in AnimateDisappearance()
684 LoggingInfo post) { in AnimateDisappearance()
691 public final LoggingInfo preInfo;
[all …]
DBaseWrapContentTest.java423 private String log(BaseRecyclerViewAnimationsTest.LoggingInfo postInfo) { in log()