Searched refs:packedPosition (Results 1 - 2 of 2) sorted by path

/frameworks/base/core/java/android/widget/
H A DExpandableListPosition.java89 static ExpandableListPosition obtainPosition(long packedPosition) { argument
90 if (packedPosition == ExpandableListView.PACKED_POSITION_VALUE_NULL) {
95 elp.groupPos = ExpandableListView.getPackedPositionGroup(packedPosition);
96 if (ExpandableListView.getPackedPositionType(packedPosition) ==
99 elp.childPos = ExpandableListView.getPackedPositionChild(packedPosition);
H A DExpandableListView.java60 * {@link ExpandableListContextMenuInfo#packedPosition} being a packed position
904 * @param packedPosition The group and/or child positions to be converted in
910 public int getFlatListPosition(long packedPosition) { argument
912 .obtainPosition(packedPosition);
1026 * @param packedPosition The packed position for which to return the type.
1031 public static int getPackedPositionType(long packedPosition) { argument
1032 if (packedPosition == PACKED_POSITION_VALUE_NULL) {
1036 return (packedPosition & PACKED_POSITION_MASK_TYPE) == PACKED_POSITION_MASK_TYPE
1045 * @param packedPosition The packed position from which the group position
1050 public static int getPackedPositionGroup(long packedPosition) { argument
1069 getPackedPositionChild(long packedPosition) argument
1252 ExpandableListContextMenuInfo(View targetView, long packedPosition, long id) argument
1271 public long packedPosition; field in class:ExpandableListView.ExpandableListContextMenuInfo
[all...]

Completed in 64 milliseconds