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.java60 final AutofillId childId = mSession1.newAutofillId(parentId, 108L); in testNewAutofillId_valid() local
61 assertThat(childId.getViewId()).isEqualTo(42); in testNewAutofillId_valid()
62 assertThat(childId.getVirtualChildLongId()).isEqualTo(108L); in testNewAutofillId_valid()
63 assertThat(childId.getVirtualChildIntId()).isEqualTo(View.NO_ID); in testNewAutofillId_valid()
64 assertThat(childId.getSessionId()).isEqualTo(mSession1.getId()); in testNewAutofillId_valid()
98 final AutofillId childId = mSession1.newAutofillId(parentId, 108L); in testNewVirtualViewStructure() local
99 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()
DRemoteViews.java7114 int childId = parent.getChildId(this);
7115 if (childId == -1) {
7119 viewId |= childId;
/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.java489 final int childId = (int) mChildIds.get(index); in getChild() local
491 return client.getWindow(mConnectionId, childId); in getChild()
501 public void addChild(int childId) { in addChild() argument
505 mChildIds.add(childId); in addChild()
699 final int childId = parcel.readInt(); in initFromParcel() local
700 mChildIds.add(childId); in initFromParcel()
DAccessibilityInteractionClient.java1361 final long childId = current.getChildId(i); in checkFindAccessibilityNodeInfoResultIntegrity() local
1364 if (child.getSourceNodeId() == childId) { in checkFindAccessibilityNodeInfoResultIntegrity()
DAccessibilityNodeInfo.java1187 final long childId = mChildNodeIds.get(index); in getChild() local
1189 if (mLeashedChild != null && childId == LEASHED_NODE_ID) { in getChild()
1195 childId, false, prefetchingStrategy, null); in getChild()
4217 final long childId = parcel.readLong(); in initFromParcel() local
4218 mChildNodeIds.add(childId); in initFromParcel()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
DFakeExpandableAdapter.java170 public long getCombinedChildId(long groupId, long childId) { in getCombinedChildId() argument
171 return groupId << 16 | childId; in getCombinedChildId()
/frameworks/base/core/java/com/android/internal/content/
DFileSystemProvider.java256 final String childId; in createDocument() local
261 childId = getDocIdForFile(file); in createDocument()
262 onDocIdChanged(childId); in createDocument()
268 childId = getDocIdForFile(file); in createDocument()
269 onDocIdChanged(childId); in createDocument()
275 return childId; in createDocument()
/frameworks/base/core/tests/coretests/src/android/view/accessibility/
DAccessibilityCacheTest.java569 long childId = childNodeInfo.getSourceNodeId(); in removeChildFromParent_clearsChild() local
577 AccessibilityNodeInfo childFromCache = mAccessibilityCache.getNode(WINDOW_ID_1, childId); in removeChildFromParent_clearsChild()
1132 long childId = childNodeInfo.getSourceNodeId(); in assertEventClearsParentAndChild() local
1141 AccessibilityNodeInfo childFromCache = mAccessibilityCache.getNode(WINDOW_ID_1, childId); in assertEventClearsParentAndChild()
/frameworks/base/core/java/android/provider/
DDocumentsProvider.java1127 final String childId = DocumentsContract.getDocumentId(childUri); in callUnchecked() local
1132 && isChildDocument(documentId, childId)); in callUnchecked()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityWindowManager.java700 final int childId = findWindowIdLocked(userId, childToken); in populateReportedWindowLocked() local
701 if (childId >= 0) { in populateReportedWindowLocked()
702 reportedWindow.addChild(childId); in populateReportedWindowLocked()
/frameworks/base/core/java/android/view/
DAccessibilityInteractionController.java1354 final long childId = current.getChildId(j); in enforceNodeTreeConsistent() local
1355 final AccessibilityNodeInfo child = nodeMap.get(childId); in enforceNodeTreeConsistent()