Searched refs:getChild (Results 1 - 25 of 48) sorted by path

12

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java126 AccessibilityNodeInfo child = node.getChild(i);
198 AccessibilityNodeInfo childNode = node.getChild(x);
H A DQueryController.java257 // with getChild(By selector) after a container and pattern selectors
327 AccessibilityNodeInfo childNode = fromNode.getChild(i);
457 AccessibilityNodeInfo childNode = fromNode.getChild(i);
H A DUiCollection.java64 UiObject item = row.getChild(new UiSelector().descriptionContains(text));
122 UiObject item = row.getChild(new UiSelector().text(text));
H A DUiObject.java123 public UiObject getChild(UiSelector selector) throws UiObjectNotFoundException { method in class:UiObject
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java841 public AccessibilityNodeInfo getChild(int index) { method in class:AccessibilityNodeInfo
H A DAccessibilityWindowInfo.java366 public AccessibilityWindowInfo getChild(int index) { method in class:AccessibilityWindowInfo
/frameworks/base/core/java/android/widget/
H A DCursorTreeAdapter.java167 public Cursor getChild(int groupPosition, int childPosition) { method in class:CursorTreeAdapter
H A DExpandableListAdapter.java72 Object getChild(int groupPosition, int childPosition); method in interface:ExpandableListAdapter
H A DExpandableListConnector.java408 retValue = mExpandableListAdapter.getChild(posMetadata.position.groupPos,
H A DSimpleExpandableListAdapter.java213 public Object getChild(int groupPosition, int childPosition) { method in class:SimpleExpandableListAdapter
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java1354 public TrieNode getChild(char ch) { method in class:AbstractMessageParser.TrieNode
1384 root = root.getChild(str.charAt(index++));
1413 root = root.getChild(p.getRawText().charAt(index++));
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java217 return mAnimationState.getChild(index);
H A DDrawableContainer.java466 final Drawable d = mDrawableContainerState.getChild(index);
864 * @deprecated Use {@link #getChild} instead.
873 public final Drawable getChild(int index) { method in class:DrawableContainer.DrawableContainerState
1199 final ConstantState state = getChild(i).getConstantState();
1213 mCurrDrawable = state.getChild(mCurIndex);
H A DStateListDrawable.java263 return mStateListState.getChild(index);
/frameworks/base/media/java/android/media/
H A DMediaScanner.java1767 Element body = root.getChild("body");
1768 Element seq = body.getChild("seq");
1769 Element media = seq.getChild("media");
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DOMADMAdapter.java228 OMAConstructed node = (OMAConstructed) parent.getChild(name);
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DMOManager.java272 getChild(TAG_PerProviderSubscription);
307 OMANode currentUD = moTree.getRoot().getChild(TAG_UpdateIdentifier);
376 OMANode oldUdi = targetTree.getChild(TAG_UpdateIdentifier);
381 targetTree.replaceNode(oldUdi, modRoot.getChild(TAG_UpdateIdentifier));
383 targetTree.addChild(modRoot.getChild(TAG_UpdateIdentifier));
687 OMANode spRoot = ppsRoot.getChild(TAG_HomeSP);
706 OMANode hessidNode = ssidRoot.getChild(TAG_HESSID);
707 ssids.put(ssidRoot.getChild(TAG_SSID).getValue(), getMac(hessidNode));
716 String homeOI = homeOIRoot.getChild(TAG_HomeOI).getValue();
717 if (Boolean.parseBoolean(homeOIRoot.getChild(TAG_HomeOIRequire
860 public static OMANode getChild(OMANode node, String key) throws OMAException { method in class:MOManager
[all...]
H A DOMAConstructed.java39 target = target.getChild(element);
103 public OMANode getChild(String name) { method in class:OMAConstructed
H A DOMANode.java80 public abstract OMANode getChild(String name) throws OMAException; method in class:OMANode
H A DOMAScalar.java53 public OMANode getChild(String name) throws OMAException { method in class:OMAScalar
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUClient.java468 nodes = Arrays.asList(root.getChild(name));
/frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
H A DPolicy.java39 OMANode rpNode = node.getChild(TAG_PreferredRoamingPartnerList);
53 OMANode bhtNode = node.getChild(TAG_MinBackhaulThreshold);
67 mPolicyUpdate = new UpdateInfo(node.getChild(TAG_PolicyUpdate));
69 OMANode sxNode = node.getChild(TAG_SPExclusionList);
82 OMANode rptNode = node.getChild(TAG_RequiredProtoPortTuple);
H A DSubscriptionParameters.java27 mCDate = MOManager.getTime(node.getChild(TAG_CreationDate));
28 mXDate = MOManager.getTime(node.getChild(TAG_ExpirationDate));
29 mType = MOManager.getString(node.getChild(TAG_TypeOfSubscription));
31 OMANode ulNode = node.getChild(TAG_UsageLimits);
55 mStartDate = MOManager.getTime(node.getChild(TAG_StartDate));
H A DUpdateInfo.java42 OMANode unp = policyUpdate.getChild(TAG_UsernamePassword);
44 mUsername = MOManager.getString(unp.getChild(TAG_Username));
45 String pw = MOManager.getString(unp.getChild(TAG_Password));
53 OMANode trustRoot = MOManager.getChild(policyUpdate, TAG_TrustRoot);
/frameworks/base/sax/java/android/sax/
H A DElement.java57 public Element getChild(String localName) { method in class:Element
58 return getChild("", localName);
64 public Element getChild(String uri, String localName) { method in class:Element
93 Element child = getChild(uri, localName);

Completed in 381 milliseconds

12