Lines Matching refs:checked

255      * Running count of how many items are currently checked
260 * Running state of which positions are currently checked
265 * Running state of which IDs are currently checked.
266 * If there is a value for a given key, the checked state for that ID is true
513 * find a checked item with a stable ID that moved position across
927 * Returns the checked state of the specified position. The result is only
931 * @param position The item whose checked state to return
932 * @return The item's checked state or <code>false</code> if choice mode
946 * Returns the currently checked item. The result is only valid if the choice
949 * @return The position of the currently checked item or
963 * Returns the set of checked items in the list. The result is only valid if
967 * get(int position) where position is a checked position in the
979 * Returns the set of checked items ids. The result is only valid if the
983 * @return A new array which contains the id of each checked item in the
1016 * Sets the checked state of the specified position. The is only valid if
1020 * @param position The item whose checked state is to be checked
1021 * @param value The new checked state for the item
1103 boolean checked = !mCheckStates.get(position, false);
1104 mCheckStates.put(position, checked);
1106 if (checked) {
1112 if (checked) {
1119 position, id, checked);
1124 boolean checked = !mCheckStates.get(position, false);
1125 if (checked) {
1152 * Perform a quick, in-place update of the checked or activated state
6202 * Called when an item is checked or unchecked during selection mode.
6205 * @param position Adapter position of the item that was checked or unchecked
6206 * @param id Adapter ID of the item that was checked or unchecked
6207 * @param checked <code>true</code> if the item is now checked, <code>false</code>
6211 int position, long id, boolean checked);
6228 // Initialize checked graphic state?
6262 int position, long id, boolean checked) {
6263 mWrapped.onItemCheckedStateChanged(mode, position, id, checked);