HomeSort by relevance Sort by last modified time
    Searched defs:childPos (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/android/widget/
ExpandableListPosition.java 53 public int childPos;
68 childPos = 0;
77 if (type == CHILD) return ExpandableListView.getPackedPositionForChild(groupPos, childPos);
99 elp.childPos = ExpandableListView.getPackedPositionChild(packedPosition);
106 static ExpandableListPosition obtain(int type, int groupPos, int childPos, int flatListPos) {
110 elp.childPos = childPos;
ExpandableListConnector.java 175 final int childPos = flPos - (midExpGm.flPos + 1);
177 midExpGm.gPos, childPos, midExpGm, midExpGroupIndex);
275 pos.groupPos, pos.childPos, null, 0);
305 pos.groupPos, pos.childPos, midExpGm, midExpGroupIndex);
308 return PositionMetadata.obtain(midExpGm.flPos + pos.childPos
309 + 1, pos.type, pos.groupPos, pos.childPos,
348 pos.childPos, null, leftExpGroupIndex);
362 pos.childPos, null, rightExpGroupIndex);
380 retValue = mExpandableListAdapter.isChildSelectable(pos.groupPos, pos.childPos);
409 posMetadata.position.childPos);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ExpandableListTester.java 174 long childPos = ExpandableListView.getPackedPositionForChild(groupIndex, childIndex);
177 childPos,
182 mExpandableListView.getFlatListPosition(childPos));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 70 int childPos = ExpandableListView.getPackedPositionChild(info.packedPosition);
71 Toast.makeText(this, title + ": Child " + childPos + " clicked in group " + groupPos,
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
ItemGroup.java 208 int childPos = -1;
210 for (int i = childIndex; childPos < 0 && i < childCount; i++) {
213 childPos = mHierarchyStart.get(i, -1);
215 if (childPos < 0) {
219 childPos = getCount();
221 return childPos;

Completed in 1265 milliseconds