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

/frameworks/base/core/java/android/widget/
H A DSectionIndexer.java54 * @param sectionIndex the index of the section within the array of section
59 int getPositionForSection(int sectionIndex); argument
H A DAlphabetIndexer.java140 * @param sectionIndex the section to search for
146 public int getPositionForSection(int sectionIndex) { argument
155 if (sectionIndex <= 0) {
158 if (sectionIndex >= mAlphabetLength) {
159 sectionIndex = mAlphabetLength - 1;
169 char letter = mAlphabet.charAt(sectionIndex);
187 if (sectionIndex > 0) {
189 mAlphabet.charAt(sectionIndex - 1);
H A DFastScroller.java902 int sectionIndex;
908 sectionIndex = targetSection;
934 sectionIndex = targetSection;
937 // When section reaches 0 here, sectionIndex must follow it.
939 sectionIndex = 0;
997 sectionIndex = -1;
1000 if (mCurrentSection != sectionIndex) {
1001 mCurrentSection = sectionIndex;
1003 final boolean hasPreview = transitionPreviewLayout(sectionIndex);
1016 * @param sectionIndex Th
1020 transitionPreviewLayout(int sectionIndex) argument
[all...]
/frameworks/ex/common/tests/src/com/android/common/widget/
H A DCompositeCursorAdapterTest.java58 protected View newView(Context context, int sectionIndex, Cursor cursor, int position, argument
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp479 size_t sectionIndex = 0; local
493 sectionIndex = i;
496 ALOGVV("%s: Found new best section (idx %d)", __FUNCTION__, sectionIndex);
510 __FUNCTION__, section, sectionIndex);
522 tagBegin = camera_metadata_section_bounds[sectionIndex][0];
523 tagEnd = camera_metadata_section_bounds[sectionIndex][1];
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp1059 ssize_t sectionIndex = mPSISections.indexOfKey(PID); local
1061 if (sectionIndex >= 0) {
1062 sp<PSISection> section = mPSISections.valueAt(sectionIndex);

Completed in 215 milliseconds