OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mHorizontalEdges
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelineHandler.java
137
protected List<Segment>
mHorizontalEdges
;
235
mHorizontalEdges
= new ArrayList<Segment>();
323
mHorizontalEdges
.add(new Segment(b.y, b.x, b.x2(), node, id, TOP, WITHOUT_MARGIN));
324
mHorizontalEdges
.add(new Segment(b.y - margins.top, b.x, b.x2(), node, id,
327
mHorizontalEdges
.add(new Segment(b.y, b.x, b.x2(), node, id, TOP, NO_MARGIN));
330
mHorizontalEdges
.add(new Segment(b.y2(), b.x, b.x2(), node, id, BOTTOM,
332
mHorizontalEdges
.add(new Segment(b.y2() + margins.bottom, b.x, b.x2(), node,
335
mHorizontalEdges
.add(new Segment(b.y2(), b.x, b.x2(), node, id,
380
mHorizontalEdges
.add(new Segment(b.y + baselineY, b.x, b.x2(), node, id, BASELINE,
[
all
...]
MoveHandler.java
211
List<Match> horizontalMatches = findClosest(edge,
mHorizontalEdges
);
213
addClosest(edge,
mHorizontalEdges
, horizontalMatches);
233
addClosest(edge,
mHorizontalEdges
, horizontalMatches);
241
addClosest(edge,
mHorizontalEdges
, horizontalMatches);
ResizeHandler.java
214
if (hEdge != null &&
mHorizontalEdges
.size() > 0) {
216
mHorizontalSuggestions = findClosest(hEdge,
mHorizontalEdges
);
Completed in 82 milliseconds