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.java6818 int childId = parent.getChildId(this);
6819 if (childId == -1) {
6823 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.java437 final int childId = (int) mChildIds.get(index); in getChild() local
439 return client.getWindow(mConnectionId, childId); in getChild()
449 public void addChild(int childId) { in addChild() argument
453 mChildIds.add(childId); in addChild()
644 final int childId = parcel.readInt(); in initFromParcel() local
645 mChildIds.add(childId); in initFromParcel()
DAccessibilityInteractionClient.java1166 final long childId = current.getChildId(i); in checkFindAccessibilityNodeInfoResultIntegrity() local
1169 if (child.getSourceNodeId() == childId) { in checkFindAccessibilityNodeInfoResultIntegrity()
DAccessibilityNodeInfo.java1114 final long childId = mChildNodeIds.get(index); in getChild() local
1116 if (mLeashedChild != null && childId == LEASHED_NODE_ID) { in getChild()
1122 childId, false, FLAG_PREFETCH_DESCENDANTS, null); in getChild()
4109 final long childId = parcel.readLong(); in initFromParcel() local
4110 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.java527 long childId = childNodeInfo.getSourceNodeId(); in removeChildFromParent_clearsChild() local
535 AccessibilityNodeInfo childFromCache = mAccessibilityCache.getNode(WINDOW_ID_1, childId); in removeChildFromParent_clearsChild()
865 long childId = childNodeInfo.getSourceNodeId(); in assertEventClearsParentAndChild() local
874 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.java687 final int childId = findWindowIdLocked(userId, childToken); in populateReportedWindowLocked() local
688 if (childId >= 0) { in populateReportedWindowLocked()
689 reportedWindow.addChild(childId); in populateReportedWindowLocked()
/frameworks/base/core/java/android/view/
DAccessibilityInteractionController.java1265 final long childId = current.getChildId(j); in enforceNodeTreeConsistent() local
1266 final AccessibilityNodeInfo child = nodeMap.get(childId); in enforceNodeTreeConsistent()