Searched defs:getChild (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
H A DOMAScalar.java53 public OMANode getChild(String name) throws OMAException { method in class:OMAScalar
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 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...]
/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);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DListenerExpr.java57 public Expr getChild() { method in class:ListenerExpr
67 return getChild().isDynamic();
73 Dependency dependency = new Dependency(this, getChild());
80 return join(getResolvedType().getCanonicalName(), getChild().computeUniqueKey(), mName);
92 final KCode value = getChild().toCode();
102 if (getChild().isDynamic()) {
H A DFieldAccessExpr.java59 public Expr getChild() { method in class:FieldAccessExpr
96 if (getChild().isDynamic()) {
118 final ModelClass childType = getChild().getResolvedType();
125 getChild().getParents().remove(this);
144 boolean isStatic = getChild() instanceof StaticIdentifierExpr;
154 Expr listenerExpr = getModel().listenerExpr(getChild(), mName, listener,
198 if (dependency.getOther() == getChild()) {
247 Expr child = getChild();
270 child = getChild(); // replace the child for the next if stmt
295 final Expr child = getChild();
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DOMAScalar.java53 public OMANode getChild(String name) throws OMAException { method in class:OMAScalar
H A DOMAConstructed.java39 target = target.getChild(element);
105 public OMANode getChild(String name) { method in class:OMAConstructed
H A DOMANode.java108 public abstract OMANode getChild(String name) throws OMAException; method in class:OMANode
H A DPasspointManagementObjectManager.java268 .getChild(TAG_PerProviderSubscription);
352 OMANode oldUdi = targetTree.getChild(TAG_UpdateIdentifier);
357 targetTree.replaceNode(oldUdi, modRoot.getChild(TAG_UpdateIdentifier));
359 targetTree.addChild(modRoot.getChild(TAG_UpdateIdentifier));
646 OMANode spRoot = ppsRoot.getChild(TAG_HomeSP);
665 OMANode hessidNode = ssidRoot.getChild(TAG_HESSID);
666 ssids.put(ssidRoot.getChild(TAG_SSID).getValue(), getMac(hessidNode));
675 String homeOI = homeOIRoot.getChild(TAG_HomeOI).getValue();
676 if (Boolean.parseBoolean(homeOIRoot.getChild(TAG_HomeOIRequired).getValue())) {
689 otherHomePartners.add(fqdnNode.getChild(TAG_FQD
819 public static OMANode getChild(OMANode node, String key) throws OMAException { method in class:PasspointManagementObjectManager
[all...]
/frameworks/support/compat/api21/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompatApi21.java76 public static Object getChild(Object info, int index) { method in class:AccessibilityWindowInfoCompatApi21
77 return ((AccessibilityWindowInfo) info).getChild(index);
/frameworks/base/core/java/android/widget/
H A DExpandableListAdapter.java72 Object getChild(int groupPosition, int childPosition); method in interface:ExpandableListAdapter
H A DSimpleExpandableListAdapter.java213 public Object getChild(int groupPosition, int childPosition) { method in class:SimpleExpandableListAdapter
H A DCursorTreeAdapter.java167 public Cursor getChild(int groupPosition, int childPosition) { method in class:CursorTreeAdapter
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java128 public Object getChild(int groupPosition, int childPosition) { method in class:FakeExpandableAdapter
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java41 Object getChild(Object info, int index); method in interface:AccessibilityWindowInfoCompat.AccessibilityWindowInfoImpl
112 public Object getChild(Object info, int index) { method in class:AccessibilityWindowInfoCompat.AccessibilityWindowInfoStubImpl
196 public Object getChild(Object info, int index) { method in class:AccessibilityWindowInfoCompat.AccessibilityWindowInfoApi21Impl
197 return AccessibilityWindowInfoCompatApi21.getChild(info, index);
394 public AccessibilityWindowInfoCompat getChild(int index) { method in class:AccessibilityWindowInfoCompat
395 return wrapNonNullInstance(IMPL.getChild(mInfo, index));
H A DAccessibilityNodeInfoCompat.java735 Object getChild(Object info, int index); method in interface:AccessibilityNodeInfoCompat.AccessibilityNodeInfoImpl
965 public Object getChild(Object info, int index) { method in class:AccessibilityNodeInfoCompat.AccessibilityNodeInfoStubImpl
1622 public Object getChild(Object info, int index) { method in class:AccessibilityNodeInfoCompat.AccessibilityNodeInfoIcsImpl
1623 return AccessibilityNodeInfoCompatIcs.getChild(info, index);
2913 public AccessibilityNodeInfoCompat getChild(int index) { method in class:AccessibilityNodeInfoCompat
2914 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.getChild(mInfo, index));
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiObject.java123 public UiObject getChild(UiSelector selector) throws UiObjectNotFoundException { method in class:UiObject
/frameworks/support/compat/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java67 public static Object getChild(Object info, int index) { method in class:AccessibilityNodeInfoCompatIcs
68 return ((AccessibilityNodeInfo) info).getChild(index);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java366 public AccessibilityWindowInfo getChild(int index) { method in class:AccessibilityWindowInfo
H A DAccessibilityNodeInfo.java841 public AccessibilityNodeInfo getChild(int index) { method in class:AccessibilityNodeInfo
/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 DDrawableContainer.java466 final Drawable d = mDrawableContainerState.getChild(index);
868 * @deprecated Use {@link #getChild} instead.
877 public final Drawable getChild(int index) { method in class:DrawableContainer.DrawableContainerState
1203 final ConstantState state = getChild(i).getConstantState();
1217 mCurrDrawable = state.getChild(mCurIndex);
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 482 milliseconds

12