Searched refs:offsetPosition (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
D | DividerView.java | 1178 int offsetPosition = (int) (start + in applyDismissingParallax() local 1184 taskRect.left = offsetPosition - width; in applyDismissingParallax() 1185 taskRect.right = offsetPosition; in applyDismissingParallax() 1188 taskRect.left = offsetPosition + mDividerSize; in applyDismissingParallax() 1189 taskRect.right = offsetPosition + width + mDividerSize; in applyDismissingParallax() 1192 taskRect.top = offsetPosition - height; in applyDismissingParallax() 1193 taskRect.bottom = offsetPosition; in applyDismissingParallax() 1196 taskRect.top = offsetPosition + mDividerSize; in applyDismissingParallax() 1197 taskRect.bottom = offsetPosition + height + mDividerSize; in applyDismissingParallax()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RecyclerView.java | 3974 holder.offsetPosition(to - from, false); in offsetPositionRecordsForMove() 3976 holder.offsetPosition(inBetweenOffset, false); in offsetPositionRecordsForMove() 3994 holder.offsetPosition(itemCount, false); in offsetPositionRecordsForInsert() 4015 holder.offsetPosition(-itemCount, applyToPreLayout); in offsetPositionRecordsForRemove() 5273 private boolean tryBindViewHolderByDeadline(ViewHolder holder, int offsetPosition, in tryBindViewHolderByDeadline() argument 5283 mAdapter.bindViewHolder(holder, offsetPosition); in tryBindViewHolderByDeadline() 5315 final int offsetPosition = mAdapterHelper.findPositionOffset(position); in bindViewToPosition() local 5316 if (offsetPosition < 0 || offsetPosition >= mAdapter.getItemCount()) { in bindViewToPosition() 5318 + "position " + position + "(offset:" + offsetPosition + ")." in bindViewToPosition() 5321 tryBindViewHolderByDeadline(holder, offsetPosition, position, FOREVER_NS); in bindViewToPosition() [all …]
|