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

/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
773 * @param packedPosition The group and/or child positions to be converted in
779 public int getFlatListPosition(long packedPosition) { argument
781 .obtainPosition(packedPosition);
895 * @param packedPosition The packed position for which to return the type.
900 public static int getPackedPositionType(long packedPosition) { argument
901 if (packedPosition == PACKED_POSITION_VALUE_NULL) {
905 return (packedPosition & PACKED_POSITION_MASK_TYPE) == PACKED_POSITION_MASK_TYPE
914 * @param packedPosition The packed position from which the group position
919 public static int getPackedPositionGroup(long packedPosition) { argument
938 getPackedPositionChild(long packedPosition) argument
1085 ExpandableListContextMenuInfo(View targetView, long packedPosition, long id) argument
1104 public long packedPosition; field in class:ExpandableListView.ExpandableListContextMenuInfo
[all...]

Completed in 98 milliseconds