Searched refs:addedCount (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DContiguousPagedList.java138 final int addedCount = newlyAppended - changedCount;
144 if (addedCount != 0) {
145 callback.onInserted(endPosition + changedCount, addedCount);
150 final int addedCount = newlyPrepended - changedCount;
155 if (addedCount != 0) {
156 callback.onInserted(0, addedCount);
260 public void onPagePrepended(int leadingNulls, int changedCount, int addedCount) { argument
262 mPrependItemsRequested = mPrependItemsRequested - changedCount - addedCount;
271 notifyInserted(0, addedCount);
273 offsetBoundaryAccessIndices(addedCount);
278 onPageAppended(int endPosition, int changedCount, int addedCount) argument
[all...]
H A DPagedStorage.java268 final int addedCount = count - changedCount;
273 mPositionOffset -= addedCount;
276 callback.onPagePrepended(mLeadingNullCount, changedCount, addedCount);
299 final int addedCount = count - changedCount;
306 changedCount, addedCount);
/frameworks/support/compat/src/main/java/androidx/core/view/accessibility/
H A DAccessibilityRecordCompat.java576 * @param addedCount The number of added characters.
583 public void setAddedCount(int addedCount) { argument
584 mRecord.setAddedCount(addedCount);
/frameworks/support/emoji/core/src/main/java/androidx/emoji/text/
H A DEmojiProcessor.java219 int addedCount = 0;
226 while (currentOffset < end && addedCount < maxEmojiCount) {
250 addedCount++;
261 if (sm.isInFlushableState() && addedCount < maxEmojiCount) {
268 addedCount++;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java566 * @param addedCount The number of added characters.
570 public void setAddedCount(int addedCount) { argument
572 mAddedCount = addedCount;
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPasswordTextView.java327 int removedCount, int addedCount) {
334 event.setAddedCount(addedCount);
326 sendAccessibilityEventTypeViewTextChanged(CharSequence beforeText, int fromIndex, int removedCount, int addedCount) argument
/frameworks/base/core/java/android/app/
H A DFragmentManager.java2982 final int addedCount = mAdded.size();
2983 for (int i = 0; i < addedCount; i++) {
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragmentManager.java3209 final int addedCount = mAdded.size();
3210 for (int i = 0; i < addedCount; i++) {
/frameworks/base/core/java/android/widget/
H A DTextView.java11201 int fromIndex, int removedCount, int addedCount) {
11206 event.setAddedCount(addedCount);
11200 sendAccessibilityEventTypeViewTextChanged(CharSequence beforeText, int fromIndex, int removedCount, int addedCount) argument

Completed in 218 milliseconds