OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:childPos
(Results
1 - 4
of
4
) 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
181
long
childPos
= ExpandableListView.getPackedPositionForChild(groupIndex, childIndex);
184
childPos
,
189
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,
Completed in 54 milliseconds