Searched defs:childId (Results 1 - 4 of 4) 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.java171 public long getCombinedChildId(long groupId, long childId) { argument
172 return groupId << 16 | childId;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java303 final int childId = (int) mChildIds.get(index);
305 return client.getWindow(mConnectionId, childId);
311 * @param childId The child window id.
315 public void addChild(int childId) { argument
319 mChildIds.add(childId);
422 final int childId = parcel.readInt();
423 mChildIds.add(childId);

Completed in 110 milliseconds