/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/asn1/ |
D | Asn1NodeTest.java | 70 assertEquals(3, node.getChildren().size()); in testChildren() 71 assertEquals(0x35, node.getChildren().get(0).getTag()); in testChildren() 72 assertEquals(0x35, node.getChildren().get(1).getTag()); in testChildren() 73 assertEquals(0x37, node.getChildren().get(2).getTag()); in testChildren() 74 assertEquals(2, node.getChildren(0x35).size()); in testChildren() 75 assertEquals(0x35, node.getChildren(0x35).get(0).getTag()); in testChildren() 76 assertEquals(0x35, node.getChildren(0x35).get(1).getTag()); in testChildren() 77 assertEquals(1, node.getChild(0x35).getChildren().size()); in testChildren() 78 assertEquals(0, node.getChildren().get(1).getChildren().size()); in testChildren() 79 assertEquals(0x36, node.getChild(0x35).getChildren().get(0).getTag()); in testChildren() [all …]
|
D | Asn1DecoderTest.java | 53 assertEquals(1, root.getChildren().size()); in testNormalOperation() 54 assertEquals(1, root.getChildren(0x5A).size()); in testNormalOperation() 55 assertEquals(node, root.getChildren().get(0)); in testNormalOperation() 56 assertEquals(node, root.getChildren(0x5A).get(0)); in testNormalOperation()
|
/frameworks/av/media/libeffects/config/src/ |
D | EffectsConfig.cpp | 41 std::vector<std::reference_wrapper<const XMLElement>> getChildren(const XMLNode& node, in getChildren() function 247 for (auto& xmlApply : getChildren(xmlStream, "apply")) { in parseStream() 294 for (auto& xmlConfig : getChildren(doc, "audio_effects_conf")) { in parseWithPath() 297 for (auto& xmlLibraries : getChildren(xmlConfig, "libraries")) { in parseWithPath() 298 for (auto& xmlLibrary : getChildren(xmlLibraries, "library")) { in parseWithPath() 304 for (auto& xmlEffects : getChildren(xmlConfig, "effects")) { in parseWithPath() 305 for (auto& xmlEffect : getChildren(xmlEffects)) { in parseWithPath() 311 for (auto& xmlPreprocess : getChildren(xmlConfig, "preprocess")) { in parseWithPath() 312 for (auto& xmlStream : getChildren(xmlPreprocess, "stream")) { in parseWithPath() 318 for (auto& xmlPostprocess : getChildren(xmlConfig, "postprocess")) { in parseWithPath() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
D | GroupMembershipManagerImpl.java | 59 return !isGroupSummary(entry) && entry.getParent().getChildren().size() == 1; in isOnlyChildInGroup() 64 public List<NotificationEntry> getChildren(ListEntry entry) { in getChildren() method in GroupMembershipManagerImpl 66 return ((GroupEntry) entry).getChildren(); in getChildren() 71 return entry.getRepresentativeEntry().getParent().getChildren(); in getChildren()
|
D | GroupMembershipManager.java | 70 List<NotificationEntry> getChildren(ListEntry summary); in getChildren() method
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/ |
D | FakeExpandableAdapter.java | 71 List<DataBindingItem> children = dataBindingItem.getChildren(); in createItems() 97 createItems(item, item.getChildren().size(), item.getCount(), mChildrenTypes, depth); in createItems() 104 List<AdapterItem> children = item.getChildren(); in getChildItem() 118 return item.getChildren().size(); in getChildrenCount()
|
D | AdapterItem.java | 51 List<AdapterItem> getChildren() { in getChildren() method in AdapterItem
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | PreparationCoordinatorTest.java | 244 final NotificationEntry child0 = group.getChildren().get(0); in testPartiallyInflatedGroupsAreFilteredOut() 265 final NotificationEntry child0 = group.getChildren().get(0); in testPartiallyInflatedGroupsAreFilteredOutSummaryVersion() 266 final NotificationEntry child1 = group.getChildren().get(1); in testPartiallyInflatedGroupsAreFilteredOutSummaryVersion() 290 final NotificationEntry child0 = group.getChildren().get(0); in testCompletedInflatedGroupsAreReleased() 291 final NotificationEntry child1 = group.getChildren().get(1); in testCompletedInflatedGroupsAreReleased() 315 final NotificationEntry child0 = group.getChildren().get(0); in testPartiallyInflatedGroupsAreReleasedAfterTimeout() 352 fireAddEvents(ge.getChildren()); in fireAddEvents()
|
/frameworks/base/media/java/android/mtp/ |
D | MtpStorageManager.java | 287 private Collection<MtpObject> getChildren() { in getChildren() method in MtpStorageManager.MtpObject 469 getChildren(obj); in getByPath() 547 Collection<MtpObject> children = getChildren(parent); in getObjects() 573 private synchronized Collection<MtpObject> getChildren(MtpObject object) { in getChildren() method in MtpStorageManager 603 return object.getChildren(); in getChildren() 658 Collection<MtpObject> children = new ArrayList<>(removed.getChildren()); in removeObjectFromCache() 854 if (!obj.isVisited() && obj.getChildren().size() > 0) { in checkConsistency() 870 for (MtpObject child : obj.getChildren()) { in checkConsistency() 902 getChildren(parent); // Ensure parent is visited in beginSendObject() 1001 for (MtpObject child : new ArrayList<>(obj.getChildren())) in endRemoveObject() [all …]
|
/frameworks/base/core/tests/coretests/src/android/content/ |
D | UriMatcherTest.java | 125 ArrayList<UriMatcher> mChildren = getChildren(authorityChild); in testTextCreatesNoDuplicateStrings() 141 private ArrayList<UriMatcher> getChildren(UriMatcher matcher) in getChildren() method in UriMatcherTest 156 ArrayList<UriMatcher> children = getChildren(matcher); in getOnlyChild()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
D | HighPriorityProviderTest.java | 164 when(mGroupMembershipManager.getChildren(summary)).thenReturn( in testIsHighPriority_checkChildrenToCalculatePriority_legacy() 204 when(mGroupMembershipManager.getChildren(parentEntry)).thenReturn( in testIsHighPriority_checkChildrenToCalculatePriority() 224 when(mGroupMembershipManager.getChildren(parentEntry)).thenReturn( in testIsHighPriority_childEntryRankingUpdated()
|
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/ |
D | RenderTests.java | 757 assertEquals(-90, rootLayout.getChildren().get(0).getTop()); in testScrollingAndMeasure() 758 assertEquals(-30, rootLayout.getChildren().get(0).getLeft()); in testScrollingAndMeasure() 759 assertEquals(90, rootLayout.getChildren().get(0).getBottom()); in testScrollingAndMeasure() 760 assertEquals(150, rootLayout.getChildren().get(0).getRight()); in testScrollingAndMeasure() 763 assertEquals(-450, rootLayout.getChildren().get(5).getChildren().get(0).getTop()); in testScrollingAndMeasure() 764 assertEquals(90, rootLayout.getChildren().get(5).getChildren().get(0).getLeft()); in testScrollingAndMeasure() 765 assertEquals(-270, rootLayout.getChildren().get(5).getChildren().get(0).getBottom()); in testScrollingAndMeasure() 766 assertEquals(690, rootLayout.getChildren().get(5).getChildren().get(0).getRight()); in testScrollingAndMeasure() 1365 for (ViewInfo child : vInfo.getChildren()) { in paintBorders() 1560 ViewInfo buttonInfo = rootInfo.getChildren().get(0); in testTranslation()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/ |
D | ShadeViewDifferTest.java | 211 final List<NodeSpec> children = spec.getChildren(); in checkMatchesSpec() 224 if (!childSpec.getChildren().isEmpty()) { in checkMatchesSpec() 295 spec.getChildren().add(childBuilder.build(spec)); in build()
|
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/ |
D | Asn1Node.java | 313 List<Asn1Node> children = node.getChildren(); in getChild() 340 public List<Asn1Node> getChildren(int tag) in getChildren() method in Asn1Node 346 List<Asn1Node> children = getChildren(); in getChildren() 368 public List<Asn1Node> getChildren() throws InvalidAsn1DataException { in getChildren() method in Asn1Node
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | GroupEntry.java | 56 public List<NotificationEntry> getChildren() { in getChildren() method in GroupEntry
|
D | ShadeListBuilder.java | 527 for (int j = 0; j < groupEntry.getChildren().size(); j++) { in stabilizeGroupingNotifs() 687 if (!ge.getChildren().isEmpty()) { in annulAddition() 693 || entry.getParent().getChildren().contains(entry)) { in annulAddition() 723 for (NotificationEntry child : parent.getChildren()) { in sortList() 735 mGroups.values().removeIf(ge -> ge.getSummary() == null && ge.getChildren().isEmpty()); in freeEmptyGroups() 968 count += ((GroupEntry) entry).getChildren().size(); in countChildren()
|
D | NotifPipeline.java | 242 numNotifs += parentEntry.getChildren().size(); in getShadeListCount()
|
D | ListDumper.java | 58 List<NotificationEntry> children = ge.getChildren(); in dumpTree()
|
/frameworks/base/tools/aapt/ |
D | XMLNode.h | 72 const Vector<sp<XMLNode> >& getChildren() const; 73 Vector<sp<XMLNode> >& getChildren();
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/ |
D | EuiccCard.java | 244 .getChild(Tags.TAG_CTX_COMP_0).getChildren(Tags.TAG_PROFILE_INFO); in getAllProfiles() 288 .getChild(Tags.TAG_CTX_COMP_0).getChildren(Tags.TAG_PROFILE_INFO); in getProfile() 574 List<Asn1Node> nodes = root.getChildren(Tags.TAG_CTX_COMP_0); in getRulesAuthTable() 581 node.getChild(Tags.TAG_SEQUENCE, Tags.TAG_CTX_COMP_1).getChildren(); in getRulesAuthTable() 769 List<Asn1Node> metaDataSeqs = sequenceOf88.getChildren(Tags.TAG_CTX_8); in loadBoundProfilePackage() 779 List<Asn1Node> elementSeqs = sequenceOf86.getChildren(Tags.TAG_CTX_6); in loadBoundProfilePackage() 906 List<Asn1Node> nodes = root.getChild(Tags.TAG_CTX_COMP_0).getChildren(); in listNotifications() 947 List<Asn1Node> nodes = root.getChild(Tags.TAG_CTX_COMP_0).getChildren(); in retrieveNotificationList() 977 List<Asn1Node> nodes = root.getChild(Tags.TAG_CTX_COMP_0).getChildren(); in retrieveNotification() 1314 .getChildren(Tags.TAG_REF_AR_DO); in buildProfile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | PreparationCoordinator.java | 239 groupEntry.setUntruncatedChildCount(groupEntry.getChildren().size()); in inflateAllRequiredViews() 250 List<NotificationEntry> children = groupEntry.getChildren(); in inflateRequiredGroupViews() 345 for (NotificationEntry child : group.getChildren()) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/provider/ |
D | HighPriorityProvider.java | 88 List<NotificationEntry> children = mGroupMembershipManager.getChildren(entry); in hasHighPriorityChild()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/parsing/library/ |
D | OptionalClassRunner.java | 101 protected List<Runner> getChildren() { in getChildren() method in OptionalClassRunner.ClassNotFoundRunner
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/ |
D | PeopleNotificationIdentifier.kt | 119 val childTypes = groupManager.getChildren(entry) in extractPersonTypeInfo()
|
/frameworks/base/packages/Shell/tests/src/com/android/shell/ |
D | UiBot.java | 86 final List<UiObject2> notificationList = notificationScroller.getChildren(); in getNotification2()
|