Home
last modified time | relevance | path

Searched refs:getChild (Results 1 – 25 of 34) sorted by relevance

12

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/asn1/
DAsn1NodeTest.java77 assertEquals(1, node.getChild(0x35).getChildren().size()); in testChildren()
79 assertEquals(0x36, node.getChild(0x35).getChildren().get(0).getTag()); in testChildren()
83 assertTrue(node.getChild(0x35).hasChild(0x36)); in testChildren()
84 assertFalse(node.getChild(0x35).hasChild(0x39)); in testChildren()
97 assertEquals(0, node.getChild(0x34).getChildren(0x37).size()); in testNonExitingChildren()
99 assertEquals(0, node.getChild(0x11).getChildren(0x37).size()); in testNonExitingChildren()
100 assertEquals(0, node.getChild(0x11).getChildren().size()); in testNonExitingChildren()
102 node.getChild(0x35).getChild(0x37); in testNonExitingChildren()
108 node.getChild(0x35, 0x37); in testNonExitingChildren()
114 node.getChild(0x11).getChild(0x37); in testNonExitingChildren()
[all …]
DAsn1DecoderTest.java52 Asn1Node node = root.getChild(0x5A); in testNormalOperation()
81 Asn1Node node = root.getChild(0x5A); in testHighTagNumberForm()
98 Asn1Node childOfFirst = firstRoot.getChild(0x5A); in testNodeList()
111 Asn1Node childOfSecond = secondRoot.getChild(0x5A); in testNodeList()
135 Asn1Node childOfFirst = firstRoot.getChild(0x5A); in testMissingData()
164 Asn1Node childOfFirst = firstRoot.getChild(0x5A); in testEmptyData()
176 Asn1Node childOfSecond = secondRoot.getChild(0x5A); in testEmptyData()
200 Asn1Node node = root.getChild(0x5A); in testLongFormLength()
/frameworks/base/sax/tests/saxtests/src/android/sax/
DSafeSaxTest.java213 Element entry = root.getChild(ATOM_NAMESPACE, "entry"); in newContentHandler()
217 entry.getChild(ATOM_NAMESPACE, "id") in newContentHandler()
224 entry.getChild(ATOM_NAMESPACE, "published") in newContentHandler()
233 Element author = entry.getChild(ATOM_NAMESPACE, "author"); in newContentHandler()
234 author.getChild(ATOM_NAMESPACE, "name") in newContentHandler()
241 Element mediaGroup = entry.getChild(MEDIA_NAMESPACE, "group"); in newContentHandler()
243 mediaGroup.getChild(MEDIA_NAMESPACE, "thumbnail") in newContentHandler()
253 mediaGroup.getChild(MEDIA_NAMESPACE, "content") in newContentHandler()
263 mediaGroup.getChild(MEDIA_NAMESPACE, "player") in newContentHandler()
273 mediaGroup.getChild(MEDIA_NAMESPACE, "title") in newContentHandler()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccCard.java244 .getChild(Tags.TAG_CTX_COMP_0).getChildren(Tags.TAG_PROFILE_INFO); in getAllProfiles()
255 stripTrailingFs(profileNode.getChild(Tags.TAG_ICCID).asBytes()); in getAllProfiles()
288 .getChild(Tags.TAG_CTX_COMP_0).getChildren(Tags.TAG_PROFILE_INFO); in getProfile()
294 stripTrailingFs(profileNode.getChild(Tags.TAG_ICCID).asBytes()); in getProfile()
407 .getChild(Tags.TAG_EID).asBytes()); in getEid()
511 (byte[] response) -> parseResponse(response).getChild(Tags.TAG_CTX_0).asString(), in getDefaultSmdpAddress()
528 (byte[] response) -> parseResponse(response).getChild(Tags.TAG_CTX_1).asString(), in getSmdsAddress()
581 node.getChild(Tags.TAG_SEQUENCE, Tags.TAG_CTX_COMP_1).getChildren(); in getRulesAuthTable()
587 builder.add(node.getChild(Tags.TAG_SEQUENCE, Tags.TAG_CTX_0).asBits(), in getRulesAuthTable()
588 Arrays.asList(opIds), node.getChild(Tags.TAG_SEQUENCE, in getRulesAuthTable()
[all …]
DEuiccSpecVersion.java60 versionType = node.getChild(TAG_VERSION).asBytes(); in fromOpenChannelResponse()
63 node.getChild(TAG_ISD_R_APP_TEMPLATE, TAG_VERSION).asBytes(); in fromOpenChannelResponse()
/frameworks/base/sax/java/android/sax/
DElement.java57 public Element getChild(String localName) { in getChild() method in Element
58 return getChild("", localName); in getChild()
64 public Element getChild(String uri, String localName) { in getChild() method in Element
93 Element child = getChild(uri, localName); in requireChild()
/frameworks/base/media/java/android/mtp/
DMtpStorageManager.java72 MtpObject obj = mObject.getChild(path); in onEvent()
283 private MtpObject getChild(String name) { in getChild() method in MtpStorageManager.MtpObject
470 obj = obj.getChild(name); in getByPath()
617 if (parent.getChild(newName) != null) { in addObjectToCache()
668 MtpObject obj = parent.getChild(path); in handleAddedObject()
763 MtpObject obj = parent.getChild(path); in handleChangedObject()
843 if (obj.getParent().getChild(obj.getName()) != obj) { in checkConsistency()
862 obj.getChild(file.getFileName().toString()) == null && in checkConsistency()
937 if (obj.getParent().getChild(newName) != null) in beginRenameObject()
959 MtpObject oldObj = parent.getChild(oldName); in endRenameObject()
[all …]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DUiCollection.java64 UiObject item = row.getChild(new UiSelector().descriptionContains(text)); in getChildByDescription()
122 UiObject item = row.getChild(new UiSelector().text(text)); in getChildByText()
DAccessibilityNodeInfoDumper.java177 AccessibilityWindowInfo child = winfo.getChild(i); in dumpWindowRec()
222 AccessibilityNodeInfo child = node.getChild(i); in dumpNodeRec()
294 AccessibilityNodeInfo childNode = node.getChild(x); in childNafCheck()
DQueryController.java327 AccessibilityNodeInfo childNode = fromNode.getChild(i); in findNodeRegularRecursive()
457 AccessibilityNodeInfo childNode = fromNode.getChild(i); in findNodePatternRecursive()
DUiObject.java123 public UiObject getChild(UiSelector selector) throws UiObjectNotFoundException { in getChild() method in UiObject
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
DBenchmarkListAdapter.java61 public Object getChild(int groupPosition, int childPosition) { in getChild() method in BenchmarkListAdapter
103 (BenchmarkGroup.Benchmark) getChild(groupPosition, childPosition); in getChildView()
/frameworks/base/core/java/android/widget/
DExpandableListAdapter.java72 Object getChild(int groupPosition, int childPosition); in getChild() method
DSimpleExpandableListAdapter.java213 public Object getChild(int groupPosition, int childPosition) { in getChild() method in SimpleExpandableListAdapter
DCursorTreeAdapter.java167 public Cursor getChild(int groupPosition, int childPosition) { in getChild() method in CursorTreeAdapter
DExpandableListConnector.java408 retValue = mExpandableListAdapter.getChild(posMetadata.position.groupPos, in getItem()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/
DEuiccCardTest.java1060 Asn1Node child = node.getChild(Tags.TAG_CTX_0); in testAddDeviceCapability()
1068 child = node.getChild(Tags.TAG_CTX_1); in testAddDeviceCapability()
1076 child = node.getChild(Tags.TAG_CTX_2); in testAddDeviceCapability()
1084 child = node.getChild(Tags.TAG_CTX_3); in testAddDeviceCapability()
1092 child = node.getChild(Tags.TAG_CTX_4); in testAddDeviceCapability()
1100 child = node.getChild(Tags.TAG_CTX_5); in testAddDeviceCapability()
1108 child = node.getChild(Tags.TAG_CTX_6); in testAddDeviceCapability()
1116 child = node.getChild(Tags.TAG_CTX_7); in testAddDeviceCapability()
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/
DAsn1Node.java291 getChild(tag, tags); in hasChild()
305 public Asn1Node getChild(int tag, int... tags) in getChild() method in Asn1Node
/frameworks/base/tests/SilkFX/src/com/android/test/silkfx/
DMain.kt93 override fun getChild(groupPosition: Int, childPosition: Int): Demo { in onCreate() method
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
DFakeExpandableAdapter.java127 public Object getChild(int groupPosition, int childPosition) { in getChild() method in FakeExpandableAdapter
/frameworks/base/graphics/java/android/graphics/drawable/
DDrawableContainer.java484 final Drawable d = mDrawableContainerState.getChild(index); in selectDrawable()
907 public final Drawable getChild(int index) { in getChild() method in DrawableContainer.DrawableContainerState
1233 mCurrDrawable = state.getChild(mCurIndex); in setConstantState()
DAnimationDrawable.java219 return mAnimationState.getChild(index); in getFrame()
DStateListDrawable.java272 return mStateListState.getChild(index); in getStateDrawable()
/frameworks/base/core/java/com/google/android/util/
DAbstractMessageParser.java1368 public TrieNode getChild(char ch) { in getChild() method in AbstractMessageParser.TrieNode
1398 root = root.getChild(str.charAt(index++)); in matches()
1427 root = root.getChild(p.getRawText().charAt(index++)); in longestMatch()
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityWindowInfo.java430 public AccessibilityWindowInfo getChild(int index) { in getChild() method in AccessibilityWindowInfo

12