Searched refs:childId (Results 1 - 14 of 14) 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.java85 int childId = child.getId();
86 if (childId == CHRONOMETER_ID && child instanceof Chronometer) {
95 } else if (childId == PROGRESSBAR_ID && child instanceof ProgressBar) {
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java373 final int childId = (int) mChildIds.get(index);
375 return client.getWindow(mConnectionId, childId);
381 * @param childId The child window id.
385 public void addChild(int childId) { argument
389 mChildIds.add(childId);
498 final int childId = parcel.readInt();
499 mChildIds.add(childId);
H A DAccessibilityInteractionClient.java809 final long childId = current.getChildId(i);
812 if (child.getSourceNodeId() == childId) {
H A DAccessibilityNodeInfo.java849 final long childId = mChildNodeIds.get(index);
852 childId, false, FLAG_PREFETCH_DESCENDANTS);
2939 final long childId = parcel.readLong();
2940 mChildNodeIds.add(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;
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java745 final String childId = DocumentsContract.getDocumentId(childUri);
750 && isChildDocument(documentId, childId));
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java1019 int childId = child.getId();
1020 if (childId == R.id.browse_container_dock && mShowingHeaders) {
1022 } else if (childId == R.id.browse_headers_dock && !mShowingHeaders) {
H A DBrowseSupportFragment.java1021 int childId = child.getId();
1022 if (childId == R.id.browse_container_dock && mShowingHeaders) {
1024 } else if (childId == R.id.browse_headers_dock && !mShowingHeaders) {
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java2910 final int childId = child.getId();
2914 if (childId != NO_ID && b != null) {
2915 Parcelable savedState = behaviorStates.get(childId);
2930 final int childId = child.getId();
2934 if (childId != NO_ID && b != null) {
2938 behaviorStates.append(childId, state);
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java932 final long childId = current.getChildId(j);
933 final AccessibilityNodeInfo child = nodeMap.get(childId);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java3596 final int childId = findWindowIdLocked(childToken);
3597 if (childId >= 0) {
3598 reportedWindow.addChild(childId);

Completed in 354 milliseconds