Home | History | Annotate | Download | only in widget

Lines Matching defs:CHILD

22  * ExpandableListPosition can refer to either a group's position or a child's
23 * position. Referring to a child's position requires both a group position (the
24 * group containing the child) and a child position (the child's position within
35 * This data type represents a child position
37 public final static int CHILD = 1;
46 * group of the child being referred to
51 * The position of the child within its parent group
57 * the corresponding flat list position for the group or child is known)
77 if (type == CHILD) return ExpandableListView.getPackedPositionForChild(groupPos, childPos);
86 return obtain(CHILD, groupPosition, childPosition, 0);
98 elp.type = CHILD;