Searched refs:childId (Results 1 - 17 of 17) 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/support/wear/src/android/support/wear/widget/drawer/
H A DWearableDrawerView.java230 @IdRes int childId = child.getId();
231 if (childId != 0) {
232 if (childId == mPeekResId) {
236 if (childId == mContentResId && !setDrawerContentWithoutAdding(child)) {
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java411 final int childId = (int) mChildIds.get(index);
413 return client.getWindow(mConnectionId, childId);
419 * @param childId The child window id.
423 public void addChild(int childId) { argument
427 mChildIds.add(childId);
557 final int childId = parcel.readInt();
558 mChildIds.add(childId);
H A DAccessibilityInteractionClient.java811 final long childId = current.getChildId(i);
814 if (child.getSourceNodeId() == childId) {
H A DAccessibilityNodeInfo.java963 final long childId = mChildNodeIds.get(index);
966 childId, false, FLAG_PREFETCH_DESCENDANTS, null);
3383 final long childId = parcel.readLong();
3384 mChildNodeIds.add(childId);
/frameworks/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/com/android/internal/content/
H A DFileSystemProvider.java170 final String childId;
175 childId = getDocIdForFile(file);
176 addFolderToMediaStore(getFileForDocId(childId, true));
182 childId = getDocIdForFile(file);
188 return childId;
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DAccessibilityCacheTest.java342 long childId = childNodeInfo.getSourceNodeId();
350 AccessibilityNodeInfo childFromCache = mAccessibilityCache.getNode(WINDOW_ID_1, childId);
611 long childId = childNodeInfo.getSourceNodeId();
620 AccessibilityNodeInfo childFromCache = mAccessibilityCache.getNode(WINDOW_ID_1, childId);
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java3110 final int childId = child.getId();
3114 if (childId != NO_ID && b != null) {
3115 Parcelable savedState = behaviorStates.get(childId);
3130 final int childId = child.getId();
3134 if (childId != NO_ID && b != null) {
3138 behaviorStates.append(childId, state);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java1091 int childId = child.getId();
1092 if (childId == R.id.browse_container_dock && mShowingHeaders) {
1094 } else if (childId == R.id.browse_headers_dock && !mShowingHeaders) {
H A DBrowseSupportFragment.java1088 int childId = child.getId();
1089 if (childId == R.id.browse_container_dock && mShowingHeaders) {
1091 } else if (childId == R.id.browse_headers_dock && !mShowingHeaders) {
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java991 final String childId = DocumentsContract.getDocumentId(childUri);
996 && isChildDocument(documentId, childId));
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java1059 final long childId = current.getChildId(j);
1060 final AccessibilityNodeInfo child = nodeMap.get(childId);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java4277 final int childId = findWindowIdLocked(childToken);
4278 if (childId >= 0) {
4279 reportedWindow.addChild(childId);

Completed in 496 milliseconds