Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
DGridDropHandler.java106 List<GridMatch> rowMatches = new ArrayList<GridMatch>(); in computeMatches() local
117 addTopMatch(y1, rowMatches, max, row, rowY); in computeMatches()
118 addBaselineMatch(feedback.dragBaseline, y1, rowMatches, max, row, rowY); in computeMatches()
119 addBottomMatch(y2, rowMatches, max); in computeMatches()
127 addRowGapMatch(bounds, y1, y2, rowMatches, max); in computeMatches()
146 if (rowMatches.size() == 0 && y1 >= bounds.y) { in computeMatches()
147 rowMatches.add(new GridMatch(SegmentType.TOP, 0, y1, mGrid.getRow(y1), in computeMatches()
152 Collections.sort(rowMatches); in computeMatches()
163 if (rowMatches.size() > 0) { in computeMatches()
164 mRowMatch = rowMatches.get(0); in computeMatches()
[all …]