Searched defs:childId (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DBaseExpandableListAdapter.java76 * <li> bit 32-63: Lower 32 bits of the childId.
80 public long getCombinedChildId(long groupId, long childId) { argument
81 return 0x8000000000000000L | ((groupId & 0x7FFFFFFF) << 32) | (childId & 0xFFFFFFFF);
91 * <li> bit 32-63: Lower 32 bits of the childId.
H A DExpandableListAdapter.java190 * @param childId The ID of the child.
194 long getCombinedChildId(long groupId, long childId); argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java146 public long getCombinedChildId(long groupId, long childId) { argument
147 return groupId << 16 | childId;

Completed in 82 milliseconds