Home | History | Annotate | Download | only in widget

Lines Matching refs:CHILD

36  * <li> cPos - Child position, the position of a child among all the children
47 * ListAdapter expects to/from group and child positions that the ExpandableListAdapter
59 * and group/child positions. See {@link GroupMetadata}.
97 * flat list position corresponds to a group, or b) child pos if it
98 * corresponds to a child. Performs a binary search on the expanded
103 * @return the group position or child position of the specified flat list
131 * contains the child we're looking for. If we are looking for a
149 * last child's flat list position, so search right
168 /* The flat list position is a child of the middle group */
171 * Subtract the first child's flat list position from the
172 * specified flat list pos to get the child's position within
176 return PositionMetadata.obtain(flPos, ExpandableListPosition.CHILD,
248 * Translates either a group pos or a child pos (+ group it belongs to) to a
249 * flat list position. If searching for a child and its group is not expanded, this will
250 * return null since the child isn't being shown in the ListView, and hence it has no
254 * or child position
281 * contains the child we're looking for.
306 } else if (pos.type == ExpandableListPosition.CHILD) {
307 /* If it's a child, calculate the flat list pos */
379 if (pos.type == ExpandableListPosition.CHILD) {
407 } else if (posMetadata.position.type == ExpandableListPosition.CHILD) {
427 } else if (posMetadata.position.type == ExpandableListPosition.CHILD) {
448 } else if (posMetadata.position.type == ExpandableListPosition.CHILD) {
524 /* Update child count as we go through */
565 /* Num children for this group is its last child's fl pos minus
872 * position to either a) group position for groups, or b) child position for
884 * This group's last child's flat list position, so basically
951 * or child) and some extra information regarding referred item (such as
960 /** Data type to hold the position and its type (child/group) */