Searched refs:childrenPadding (Results 1 – 1 of 1) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
D | ExplodedRenderingHelper.java | 123 Map<Node, int[]> childrenPadding = new HashMap<Node, int[]>(count); in computePadding() local 129 childrenPadding.put(child, p); in computePadding() 135 count = childrenPadding.size(); in computePadding() 139 int[] p = childrenPadding.get(childrenPadding.keySet().iterator().next()); in computePadding() 149 combineLinearLayout(childrenPadding.values(), padding, horizontal); in computePadding() 151 combineLinearLayout(childrenPadding.values(), padding, false /*horizontal*/); in computePadding() 153 combineLinearLayout(childrenPadding.values(), padding, true /*true*/); in computePadding() 160 for (int[] p : childrenPadding.values()) { in computePadding() 213 private void combineRelativeLayout(Map<Node, int[]> childrenPadding, int[] padding) { in combineRelativeLayout() argument 227 Set<Node> nodeSet = childrenPadding.keySet(); in combineRelativeLayout() [all …]
|