Home | History | Annotate | Download | only in widget

Lines Matching refs:elp

94         ExpandableListPosition elp = getRecycledOrCreate(); 
95 elp.groupPos = ExpandableListView.getPackedPositionGroup(packedPosition);
98 elp.type = CHILD;
99 elp.childPos = ExpandableListView.getPackedPositionChild(packedPosition);
101 elp.type = GROUP;
103 return elp;
107 ExpandableListPosition elp = getRecycledOrCreate();
108 elp.type = type;
109 elp.groupPos = groupPos;
110 elp.childPos = childPos;
111 elp.flatListPos = flatListPos;
112 return elp;
116 ExpandableListPosition elp;
119 elp = sPool.remove(0);
124 elp.resetState();
125 return elp;