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

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DItemAnimatorV2ApiTest.java198 assertEquals(0, log.postInfo.changeFlags);
202 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
206 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
223 assertEquals(FLAG_REMOVED, log.preInfo.changeFlags);
227 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
231 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
249 assertEquals(FLAG_CHANGED, log.preInfo.changeFlags);
250 assertEquals(0, log.postInfo.changeFlags);
257 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
286 assertEquals(FLAG_CHANGED, log.preInfo.changeFlags);
618 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.java632 final int changeFlags; field in class:BaseRecyclerViewAnimationsTest.LoggingInfo
635 LoggingInfo(RecyclerView.ViewHolder viewHolder, int changeFlags, List<Object> payloads) { argument
637 this.changeFlags = changeFlags;
650 "changeFlags=" + changeFlags +
/frameworks/base/core/java/android/view/
H A DKeyEvent.java1702 public static KeyEvent changeFlags(KeyEvent event, int flags) { method in class:KeyEvent
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java5525 int changeFlags = ItemAnimator
5527 changeFlags |= ItemAnimator.FLAG_APPEARED_IN_PRE_LAYOUT;
5529 holder, changeFlags, holder.getUnmodifiedPayloads());
11651 * @param changeFlags Additional information about what changes happened in the Adapter
11669 @NonNull ViewHolder viewHolder, @AdapterChanges int changeFlags,
12180 public int changeFlags; field in class:RecyclerView.ItemAnimator.ItemHolderInfo
12187 * the given ViewHolder. Clears all {@link #changeFlags}.
12198 * the given ViewHolder and sets the {@link #changeFlags} to the given flags parameter.
11668 recordPreLayoutInformation(@onNull State state, @NonNull ViewHolder viewHolder, @AdapterChanges int changeFlags, @NonNull List<Object> payloads) argument
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java5730 int changeFlags = ItemAnimator
5732 changeFlags |= ItemAnimator.FLAG_APPEARED_IN_PRE_LAYOUT;
5734 holder, changeFlags, holder.getUnmodifiedPayloads());
12209 * @param changeFlags Additional information about what changes happened in the Adapter
12227 @NonNull ViewHolder viewHolder, @AdapterChanges int changeFlags,
12738 public int changeFlags; field in class:RecyclerView.ItemAnimator.ItemHolderInfo
12745 * the given ViewHolder. Clears all {@link #changeFlags}.
12756 * the given ViewHolder and sets the {@link #changeFlags} to the given flags parameter.
12226 recordPreLayoutInformation(@onNull State state, @NonNull ViewHolder viewHolder, @AdapterChanges int changeFlags, @NonNull List<Object> payloads) argument

Completed in 199 milliseconds