Home
last modified time | relevance | path

Searched defs:children (Results 1 – 25 of 76) sorted by relevance

1234

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
DManifestElementDescriptor.java49 ElementDescriptor[] children, in ManifestElementDescriptor()
70 ElementDescriptor[] children, in ManifestElementDescriptor()
90 ElementDescriptor[] children) { in ManifestElementDescriptor()
101 public ManifestElementDescriptor(String xml_name, ElementDescriptor[] children) { in ManifestElementDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DElementDescriptor.java84 ElementDescriptor[] children, in ElementDescriptor()
112 ElementDescriptor[] children, in ElementDescriptor()
135 public ElementDescriptor(String xml_name, ElementDescriptor[] children, Mandatory mandatory) { in ElementDescriptor() method in ElementDescriptor
147 public ElementDescriptor(String xml_name, ElementDescriptor[] children) { in ElementDescriptor() method in ElementDescriptor
DDocumentDescriptor.java46 public DocumentDescriptor(String xml_name, ElementDescriptor[] children) { in DocumentDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DTableLayoutRule.java98 final @NonNull List<? extends INode> children) { in addLayoutActions()
108 final List<? extends INode> children) { in addTableLayoutActions()
DTableRowRule.java57 final @NonNull List<? extends INode> children) { in addLayoutActions()
DBaseLayoutRule.java110 final List<? extends INode> children) { in createMarginAction()
190 final @NonNull List<? extends INode> children) { in addLayoutActions()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DChangeLayoutRefactoring.java199 NodeList children = e.getChildNodes(); in initElements() local
364 NodeList children = layout.getChildNodes(); in convertLinearToTable() local
411 NodeList children = layout.getChildNodes(); in convertLinearToRelative() local
427 NodeList children = layout.getChildNodes(); in convertLinearToRelative() local
529 NodeList children = layout.getChildNodes(); in removeUndefinedAttrs() local
DUseCompoundDrawableRefactoring.java155 List<Element> children = DomUtilities.getChildren(layout); in checkInitialConditions() local
224 List<Element> children = DomUtilities.getChildren(layout); in computeChanges() local
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
DManifestEditor.java354 List<UiElementNode> children = appUiNode.getUiChildren(); in updateFromExistingMarkers() local
376 List<UiElementNode> children = app_ui_node.getUiChildren(); in processMarkerChanges() local
379 processMarker(markerDelta.getMarker(), children, markerDelta.getKind()); in processMarkerChanges() local
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
DExplodeRenderingHelperTest.java242 private MockXmlNode createLinearLayout(boolean horizontal, MockXmlNode[] children) { in createLinearLayout()
251 private MockXmlNode createRelativeLayout(MockXmlNode[] children) { in createRelativeLayout()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
DMockNodeList.java37 public MockNodeList(MockXmlNode[] children) { in MockNodeList()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DViewHierarchy.java250 List<UiElementNode> children = model.getUiChildren(); in createMergeInfo() local
263 List<UiElementNode> children = model.getUiChildren(); in hasMergeRoot() local
499 List<CanvasViewInfo> children = canvasViewInfo.getChildren(); in findViewInfoAt_Recursive() local
DCanvasViewInfo.java239 List<CanvasViewInfo> children = new ArrayList<CanvasViewInfo>(); in getUniqueChildren() local
254 List<CanvasViewInfo> children = new ArrayList<CanvasViewInfo>(mChildren.size()); in getUniqueChildren() local
860 List<ViewInfo> children = viewInfo.getChildren(); in createSubtree() local
993 List<ViewInfo> children, LinkedList<UiViewElementNode> unused) { in addMismatched()
1142 private UiViewElementNode nextViewNode(List<ViewInfo> children, int index) { in nextViewNode()
DOutlinePage.java709 List<CanvasViewInfo> children = ((CanvasViewInfo) element).getUniqueChildren(); in getChildren() local
728 List<CanvasViewInfo> children = ((CanvasViewInfo) element).getChildren(); in hasChildren() local
1157 Set<INode> children = new HashSet<INode>(); in move() local
1247 List<UiElementNode> children = curr.getUiChildren(); in findPrevious() local
DDomUtilities.java142 NodeList children = node.getChildNodes(); in hasElementChildren() local
559 NodeList children = element.getChildNodes(); in getChildren() local
776 NodeList children = element.getChildNodes(); in findCorresponding() local
DOutlineDropListener.java118 Set<INode> children = new HashSet<INode>(); in performDrop() local
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
DItemElementDescriptor.java47 ElementDescriptor[] children, boolean mandatory) { in ItemElementDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
DTestNode.java100 public TestNode add(TestNode... children) { in add()
374 List<Element> children = DomUtilities.getChildren(mElement); in insertChildAt() local
408 List<Element> children = DomUtilities.getChildren(mElement); in removeChild() local
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
DAndroidTypeMoveParticipant.java315 NodeList children = element.getChildNodes(); in addLayoutReplacements() local
354 NodeList children = element.getChildNodes(); in addManifestReplacements() local
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DLintDeltaProcessor.java136 IResourceDelta[] children = delta.getAffectedChildren(); in gatherFiles() local
DLintList.java379 IMarker[] children = Arrays.copyOfRange(array, 1, array.length); in getElements() local
389 Object[] children = mChildren != null ? mChildren.get(element) : null; in hasChildren() local
395 Object[] children = mChildren.get(parentElement); in getChildren() local
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DCanvasViewInfoTest.java376 List<ViewInfo> children = new ArrayList<ViewInfo>(); in testUnmatchedMissing() local
459 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>(); in testMergeCookies() local
495 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>(); in testMergeCookies2() local
547 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>(); in testIncludeBounds() local
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRefactoringTest.java198 List<Element> children = DomUtilities.getChildren(element); in createModel() local
256 List<ViewInfo> children = new ArrayList<ViewInfo>(); in create() local
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
DViewElementDescriptor.java97 ElementDescriptor[] children, boolean mandatory) { in ViewElementDescriptor()
DCustomViewDescriptorService.java465 ViewElementDescriptor[] children = null; in createViewDescriptor() local
525 ElementDescriptor[] children, IProject project, in CustomViewDescriptor()

1234