Searched defs:changeFlags (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DDirectoryItemAnimator.java84 @AdapterChanges int changeFlags,
87 viewHolder, changeFlags, payloads);
81 recordPreLayoutInformation( RecyclerView.State state, RecyclerView.ViewHolder viewHolder, @AdapterChanges int changeFlags, List<Object> payloads) argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DItemAnimatorV2ApiTest.java199 assertEquals(0, log.postInfo.changeFlags);
203 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
207 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
224 assertEquals(FLAG_REMOVED, log.preInfo.changeFlags);
228 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
232 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
250 assertEquals(FLAG_CHANGED, log.preInfo.changeFlags);
251 assertEquals(0, log.postInfo.changeFlags);
258 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
287 assertEquals(FLAG_CHANGED, log.preInfo.changeFlags);
619 recordPreLayoutInformation(@onNull RecyclerView.State state, @NonNull RecyclerView.ViewHolder viewHolder, @AdapterChanges int changeFlags, @NonNull List<Object> payloads) argument
[all...]
H A DLoggingItemAnimator.java65 @AdapterChanges int changeFlags, @NonNull List<Object> payloads) {
67 loggingInfo = new BaseRecyclerViewAnimationsTest.LoggingInfo(viewHolder, changeFlags, payloads);
63 recordPreLayoutInformation(@onNull RecyclerView.State state, @NonNull RecyclerView.ViewHolder viewHolder, @AdapterChanges int changeFlags, @NonNull List<Object> payloads) argument
H A DBaseRecyclerViewAnimationsTest.java628 final int changeFlags; field in class:BaseRecyclerViewAnimationsTest.LoggingInfo
631 LoggingInfo(RecyclerView.ViewHolder viewHolder, int changeFlags, List<Object> payloads) { argument
633 this.changeFlags = changeFlags;
646 "changeFlags=" + changeFlags +
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1699 public static KeyEvent changeFlags(KeyEvent event, int flags) { method in class:KeyEvent
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java5263 int changeFlags = ItemAnimator
5265 changeFlags |= ItemAnimator.FLAG_APPEARED_IN_PRE_LAYOUT;
5267 holder, changeFlags, holder.getUnmodifiedPayloads());
11352 * @param changeFlags Additional information about what changes happened in the Adapter
11370 @NonNull ViewHolder viewHolder, @AdapterChanges int changeFlags,
11878 public int changeFlags; field in class:RecyclerView.ItemAnimator.ItemHolderInfo
11885 * the given ViewHolder. Clears all {@link #changeFlags}.
11896 * the given ViewHolder and sets the {@link #changeFlags} to the given flags parameter.
11369 recordPreLayoutInformation(@onNull State state, @NonNull ViewHolder viewHolder, @AdapterChanges int changeFlags, @NonNull List<Object> payloads) argument

Completed in 553 milliseconds