Searched refs:childId (Results 1 - 8 of 8) 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
H A DExpandableListConnector.java428 final long childId = mExpandableListAdapter.getChildId(posMetadata.position.groupPos,
430 retValue = mExpandableListAdapter.getCombinedChildId(groupId, childId);
/frameworks/base/core/java/com/android/internal/widget/
H A DTextProgressBar.java82 int childId = child.getId();
83 if (childId == CHRONOMETER_ID && child instanceof Chronometer) {
92 } else if (childId == PROGRESSBAR_ID && child instanceof ProgressBar) {
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfoCache.java307 final long childId = childIds.valueAt(i);
308 AccessibilityNodeInfo child = mCacheImpl.get(childId);
H A DAccessibilityInteractionClient.java724 final long childId = childIds.valueAt(i);
727 if (child.getSourceNodeId() == childId) {
H A DAccessibilityNodeInfo.java705 final long childId = mChildNodeIds.get(index);
708 childId, false, FLAG_PREFETCH_DESCENDANTS);
2261 final long childId = parcel.readLong();
2262 childIds.put(i, childId);
/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;

Completed in 138 milliseconds