Home
last modified time | relevance | path

Searched refs:childId (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
DContentCaptureSessionTest.java59 final AutofillId childId = mSession1.newAutofillId(parentId, 108L); in testNewAutofillId_valid() local
60 assertThat(childId.getViewId()).isEqualTo(42); in testNewAutofillId_valid()
61 assertThat(childId.getVirtualChildLongId()).isEqualTo(108L); in testNewAutofillId_valid()
62 assertThat(childId.getVirtualChildIntId()).isEqualTo(View.NO_ID); in testNewAutofillId_valid()
63 assertThat(childId.getSessionId()).isEqualTo(mSession1.getId()); in testNewAutofillId_valid()
97 final AutofillId childId = mSession1.newAutofillId(parentId, 108L); in testNewVirtualViewStructure() local
98 assertThat(structure.getAutofillId()).isEqualTo(childId); in testNewVirtualViewStructure()
/frameworks/base/core/java/android/widget/
DBaseExpandableListAdapter.java80 public long getCombinedChildId(long groupId, long childId) { in getCombinedChildId() argument
81 return 0x8000000000000000L | ((groupId & 0x7FFFFFFF) << 32) | (childId & 0xFFFFFFFF); in getCombinedChildId()
DExpandableListAdapter.java194 long getCombinedChildId(long groupId, long childId); in getCombinedChildId() argument
DExpandableListConnector.java428 final long childId = mExpandableListAdapter.getChildId(posMetadata.position.groupPos, in getItemId() local
430 retValue = mExpandableListAdapter.getCombinedChildId(groupId, childId); in getItemId()
/frameworks/base/core/java/com/android/internal/widget/
DTextProgressBar.java85 int childId = child.getId(); in addView() local
86 if (childId == CHRONOMETER_ID && child instanceof Chronometer) { in addView()
95 } else if (childId == PROGRESSBAR_ID && child instanceof ProgressBar) { in addView()
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityWindowInfo.java411 final int childId = (int) mChildIds.get(index); in getChild() local
413 return client.getWindow(mConnectionId, childId); in getChild()
423 public void addChild(int childId) { in addChild() argument
427 mChildIds.add(childId); in addChild()
561 final int childId = parcel.readInt(); in initFromParcel() local
562 mChildIds.add(childId); in initFromParcel()
DAccessibilityInteractionClient.java891 final long childId = current.getChildId(i); in checkFindAccessibilityNodeInfoResultIntegrity() local
894 if (child.getSourceNodeId() == childId) { in checkFindAccessibilityNodeInfoResultIntegrity()
DAccessibilityNodeInfo.java1000 final long childId = mChildNodeIds.get(index); in getChild() local
1003 childId, false, FLAG_PREFETCH_DESCENDANTS, null); in getChild()
3651 final long childId = parcel.readLong(); in initFromParcel() local
3652 mChildNodeIds.add(childId); in initFromParcel()
/frameworks/base/core/java/com/android/internal/content/
DFileSystemProvider.java243 final String childId; in createDocument() local
248 childId = getDocIdForFile(file); in createDocument()
249 onDocIdChanged(childId); in createDocument()
255 childId = getDocIdForFile(file); in createDocument()
256 onDocIdChanged(childId); in createDocument()
263 return childId; in createDocument()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
DFakeExpandableAdapter.java171 public long getCombinedChildId(long groupId, long childId) { in getCombinedChildId() argument
172 return groupId << 16 | childId; in getCombinedChildId()
/frameworks/base/core/tests/coretests/src/android/view/accessibility/
DAccessibilityCacheTest.java358 long childId = childNodeInfo.getSourceNodeId(); in removeChildFromParent_clearsChild() local
366 AccessibilityNodeInfo childFromCache = mAccessibilityCache.getNode(WINDOW_ID_1, childId); in removeChildFromParent_clearsChild()
694 long childId = childNodeInfo.getSourceNodeId(); in assertEventClearsParentAndChild() local
703 AccessibilityNodeInfo childFromCache = mAccessibilityCache.getNode(WINDOW_ID_1, childId); in assertEventClearsParentAndChild()
/frameworks/base/core/java/android/provider/
DDocumentsProvider.java1109 final String childId = DocumentsContract.getDocumentId(childUri); in callUnchecked() local
1114 && isChildDocument(documentId, childId)); in callUnchecked()
/frameworks/base/services/core/java/com/android/server/rollback/
DRollbackManagerServiceImpl.java834 for (int childId : info.getChildSessionIds()) { in enableRollback()
835 PackageInstaller.SessionInfo child = installer.getSessionInfo(childId); in enableRollback()
/frameworks/base/core/java/android/view/
DAccessibilityInteractionController.java1144 final long childId = current.getChildId(j); in enforceNodeTreeConsistent() local
1145 final AccessibilityNodeInfo child = nodeMap.get(childId); in enforceNodeTreeConsistent()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java2948 final int childId = findWindowIdLocked(childToken); in populateReportedWindowLocked() local
2949 if (childId >= 0) { in populateReportedWindowLocked()
2950 reportedWindow.addChild(childId); in populateReportedWindowLocked()