Searched refs:mCheckStates (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsListView.java245 SparseBooleanArray mCheckStates; field in class:AbsListView
855 if (mCheckStates != null) {
856 mCheckStates.clear();
893 if (mChoiceMode != CHOICE_MODE_NONE && mCheckStates != null) {
894 return mCheckStates.get(position);
910 if (mChoiceMode == CHOICE_MODE_SINGLE && mCheckStates != null && mCheckStates.size() == 1) {
911 return mCheckStates.keyAt(0);
928 return mCheckStates;
961 if (mCheckStates !
[all...]
H A DListView.java1890 if (mChoiceMode != CHOICE_MODE_NONE && mCheckStates != null) {
1892 ((Checkable) child).setChecked(mCheckStates.get(position));
1895 child.setActivated(mCheckStates.get(position));
3651 if (mChoiceMode != CHOICE_MODE_NONE && mCheckStates != null && mAdapter != null) {
3652 final SparseBooleanArray states = mCheckStates;
3664 // Trim array if needed. mCheckStates may contain false values
H A DGridView.java1402 if (mChoiceMode != CHOICE_MODE_NONE && mCheckStates != null) {
1404 ((Checkable) child).setChecked(mCheckStates.get(position));
1407 child.setActivated(mCheckStates.get(position));

Completed in 310 milliseconds