Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridDropHandler.java105 List<GridMatch> columnMatches = new ArrayList<GridMatch>(); in computeMatches() local
110 addLeftSideMatch(x1, columnMatches, max); in computeMatches()
111 addRightSideMatch(x2, columnMatches, max); in computeMatches()
112 addCenterColumnMatch(bounds, x1, y1, x2, y2, columnMatches, max); in computeMatches()
126 addColumnGapMatch(bounds, x1, x2, columnMatches, max); in computeMatches()
140 if (columnMatches.size() == 0 && x1 >= bounds.x) { in computeMatches()
143 columnMatches.add(new GridMatch(SegmentType.LEFT, 0, x1, mGrid.getColumn(x1), in computeMatches()
153 Collections.sort(columnMatches); in computeMatches()
159 if (columnMatches.size() > 0) { in computeMatches()
160 mColumnMatch = columnMatches.get(0); in computeMatches()
[all …]