Home
last modified time | relevance | path

Searched refs:getParentNode (Results 1 – 22 of 22) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DSetScrollViewSizeFix.java52 if (node instanceof Element && node.getParentNode() instanceof Element) { in apply()
54 Element parent = (Element) node.getParentNode(); in apply()
DLinearLayoutWeightFix.java53 if (node instanceof Element && node.getParentNode() instanceof Element) { in apply()
55 Element parent = (Element) node.getParentNode(); in apply()
DRemoveUselessViewFix.java57 if (node instanceof Element && node.getParentNode() instanceof Element) { in apply()
59 Element parent = (Element) node.getParentNode(); in apply()
DAddSuppressAttribute.java165 node = node.getParentNode(); in createFixes()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DUnwrapRefactoring.java112 Node parent = first.getParentNode(); in checkInitialConditions()
128 if (element.getParentNode() != parent) { in checkInitialConditions()
137 if (mContainer.getParentNode() instanceof Document) { in checkInitialConditions()
185 if (mContainer.getParentNode() instanceof Document) { in computeChanges()
DGridLayoutConverter.java387 if (LINEAR_LAYOUT.equals(element.getParentNode().getNodeName())) { in assignCellAttributes()
843 Node parent = view.getElement().getParentNode(); in analyzeKnownLayouts()
DUseCompoundDrawableRefactoring.java323 if (layout.getParentNode() instanceof Document) { in computeChanges()
DRelativeLayoutConversionHelper.java313 Node parent = element.getParentNode(); in computeKnownConstraints()
843 node = node.getParentNode(); in isAncestor()
DVisualRefactoring.java719 } else if (first.getParentNode() == last.getParentNode()) { in initElements()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DDomUtilities.java82 current = current.getParentNode(); in getCommonAncestor()
87 node2 = node2.getParentNode(); in getCommonAncestor()
129 node = node.getParentNode(); in getDepth()
291 return Pair.of(node.getParentNode(), node); in getNodeContext()
317 return Pair.of(node.getParentNode(), node); in getNodeContext()
364 left = node.getParentNode(); in getNode()
371 right = node.getParentNode(); in getNode()
489 node = node.getParentNode(); in getParentElement()
583 Node parent = elements.get(0).getParentNode(); in isContiguous()
588 if (parent != node.getParentNode()) { in isContiguous()
DOutlinePage.java808 e.getParentNode() != null in update()
809 && e.getParentNode().getNodeName().equals(GRID_LAYOUT)) { in update()
838 } else if (e.getParentNode() != null in update()
839 && e.getParentNode().getNodeName() != null in update()
840 && e.getParentNode().getNodeName().endsWith(GRID_LAYOUT)) { in update()
851 String colCount = ((Element) e.getParentNode()).getAttributeNS( in update()
DViewHierarchy.java447 return mDomNodeToView.get(node.getParentNode()); in findViewInfoFor()
DSelectionManager.java558 xmlNode = xmlNode.getParentNode(); in select()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
DValuesContentAssist.java148 parentNode.getParentNode() != null && in computeTextValues()
149 TAG_STYLE.equals(parentNode.getParentNode().getNodeName())) { in computeTextValues()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DLayoutContentAssist.java78 if (currentNode.getParentNode().getNodeType() == Node.ELEMENT_NODE) { in getChoicesForElement()
79 String parentName = currentNode.getParentNode().getNodeName(); in getChoicesForElement()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidContentAssist.java300 if (currentNode.getParentNode().getNodeType() == Node.ELEMENT_NODE) { in getChoicesForElement()
301 grandparent = getDescriptor(currentNode.getParentNode().getNodeName()); in getChoicesForElement()
302 } else if (currentNode.getParentNode().getNodeType() == Node.DOCUMENT_NODE) { in getChoicesForElement()
405 Node grandParent = currentNode.getParentNode(); in getChoicesForAttribute()
407 Node greatGrandParent = grandParent.getParentNode(); in getChoicesForAttribute()
DHyperlinks.java1339 Node parentNode = context.getNode().getParentNode(); in detectHyperlinks()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
DMockXmlNode.java175 public Node getParentNode() { in getParentNode() method in MockXmlNode
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
DApplicationToggle.java274 mUndoXmlParent = xml_node.getParentNode(); in removeApplicationNode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
DRenameResourceXmlTextAction.java246 node = node.getParentNode(); in findItemDefinition()
/sdk/attribute_stats/src/
DAnalyzer.java288 String parentTag = element.getParentNode().getNodeName(); in countLayoutAttributes()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiElementNode.java1124 Node xmlParent = oldXmlNode.getParentNode(); in deleteXmlNode()