Searched refs:offsetPosition (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/legacysplitscreen/ |
D | DividerView.java | 1240 int offsetPosition = (int) (start + fraction in applyDismissingParallax() local 1246 taskRect.left = offsetPosition - width; in applyDismissingParallax() 1247 taskRect.right = offsetPosition; in applyDismissingParallax() 1250 taskRect.left = offsetPosition + mDividerSize; in applyDismissingParallax() 1251 taskRect.right = offsetPosition + width + mDividerSize; in applyDismissingParallax() 1254 taskRect.top = offsetPosition - height; in applyDismissingParallax() 1255 taskRect.bottom = offsetPosition; in applyDismissingParallax() 1258 taskRect.top = offsetPosition + mDividerSize; in applyDismissingParallax() 1259 taskRect.bottom = offsetPosition + height + mDividerSize; in applyDismissingParallax()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RecyclerView.java | 4095 holder.offsetPosition(to - from, false); in offsetPositionRecordsForMove() 4097 holder.offsetPosition(inBetweenOffset, false); in offsetPositionRecordsForMove() 4115 holder.offsetPosition(itemCount, false); in offsetPositionRecordsForInsert() 4136 holder.offsetPosition(-itemCount, applyToPreLayout); in offsetPositionRecordsForRemove() 5394 private boolean tryBindViewHolderByDeadline(ViewHolder holder, int offsetPosition, in tryBindViewHolderByDeadline() argument 5404 mAdapter.bindViewHolder(holder, offsetPosition); in tryBindViewHolderByDeadline() 5436 final int offsetPosition = mAdapterHelper.findPositionOffset(position); in bindViewToPosition() local 5437 if (offsetPosition < 0 || offsetPosition >= mAdapter.getItemCount()) { in bindViewToPosition() 5439 + "position " + position + "(offset:" + offsetPosition + ")." in bindViewToPosition() 5442 tryBindViewHolderByDeadline(holder, offsetPosition, position, FOREVER_NS); in bindViewToPosition() [all …]
|