OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GridMatch
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridMatch.java
27
class
GridMatch
implements Comparable<
GridMatch
> {
59
GridMatch
(SegmentType type, int distance, int matchedLine, int cellIndex,
70
// Implements Comparable<
GridMatch
>
72
public int compareTo(
GridMatch
o) {
GridDropHandler.java
58
private
GridMatch
mColumnMatch;
59
private
GridMatch
mRowMatch;
105
List<
GridMatch
> columnMatches = new ArrayList<
GridMatch
>();
106
List<
GridMatch
> rowMatches = new ArrayList<
GridMatch
>();
143
columnMatches.add(new
GridMatch
(SegmentType.LEFT, 0, x1, mGrid.getColumn(x1),
147
rowMatches.add(new
GridMatch
(SegmentType.TOP, 0, y1, mGrid.getRow(y1),
233
mColumnMatch = new
GridMatch
(horizontalType, 0, x1, column, createColumn, 0);
234
mRowMatch = new
GridMatch
(verticalType, 0, y1, row, createRow, 0)
[
all
...]
GridLayoutPainter.java
161
GridMatch
rowMatch = data.getRowMatch();
162
GridMatch
columnMatch = data.getColumnMatch();
285
GridMatch
columnMatch = data.getColumnMatch();
286
GridMatch
rowMatch = data.getRowMatch();
Completed in 52 milliseconds