Home
last modified time | relevance | path

Searched refs:childNode (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/omadm/
DMoSerializerTest.java76 Node childNode = element.getFirstChild(); in testShouldReturnValidElementForWriteVersion() local
77 assertNotNull(childNode); in testShouldReturnValidElementForWriteVersion()
78 assertEquals(childNode.getNodeValue(), MoSerializer.DM_VERSION); in testShouldReturnValidElementForWriteVersion()
92 Node childNode = element.getFirstChild(); in testShouldReturnValidElementForCreateNodeForUrn() local
93 assertTrue(childNode instanceof Element); in testShouldReturnValidElementForCreateNodeForUrn()
94 assertEquals(((Element)childNode).getTagName(), MoSerializer.TAG_TYPE); in testShouldReturnValidElementForCreateNodeForUrn()
96 Node childNode2 = childNode.getFirstChild(); in testShouldReturnValidElementForCreateNodeForUrn()
115 Node childNode = element.getFirstChild(); in testShouldReturnValidElementForCreateNode() local
116 assertTrue(childNode instanceof Element); in testShouldReturnValidElementForCreateNode()
117 Node textNode = childNode.getFirstChild(); in testShouldReturnValidElementForCreateNode()
[all …]
/packages/services/Car/cpp/evs/support_library/
DConfigManager.cpp42 Json::Value childNode = parentNode[childName]; in readChildNodeAsFloat() local
43 if (!childNode.isNumeric()) { in readChildNodeAsFloat()
48 *value = childNode.asFloat(); in readChildNodeAsFloat()
/packages/services/Car/cpp/evs/apps/default/src/
DConfigManager.cpp37 Json::Value childNode = parentNode[childName]; in readChildNodeAsFloat() local
38 if (!childNode.isNumeric()) { in readChildNodeAsFloat()
43 *value = childNode.asFloat(); in readChildNodeAsFloat()
/packages/apps/Car/RotaryController/src/com/android/car/rotary/
DUtils.java209 AccessibilityNodeInfo childNode = node.getChild(i); in descendantCanTakeFocus() local
210 if (childNode != null) { in descendantCanTakeFocus()
211 boolean result = canHaveFocus(childNode); in descendantCanTakeFocus()
212 childNode.recycle(); in descendantCanTakeFocus()
/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/
DNavigatorTest.java903 AccessibilityNodeInfo childNode = mNodeBuilder in test_findNudgeTargetFocusArea_fromScrollableContainer() local