Searched refs:sectionIndex (Results 1 – 4 of 4) sorted by relevance
78 public int getPositionForSection(final int sectionIndex) { in getPositionForSection() argument79 return mSectionIndexer.getPositionForSection(sectionIndex); in getPositionForSection()
50 public int getPositionForSection(final int sectionIndex) { in getPositionForSection() argument56 Math.max(Math.min(sectionIndex, mSectionStartingPositions.size() - 1), 0)); in getPositionForSection()
109 public int getPositionForSection(int sectionIndex) { in getPositionForSection() argument114 return mIndexer.getPositionForSection(sectionIndex); in getPositionForSection()
411 override fun getPositionForSection(sectionIndex: Int): Int { in getPositionForSection()412 return if (sections!!.isEmpty()) 0 else mSectionHeaderPositions!![sectionIndex] in getPositionForSection()