HomeSort by relevance Sort by last modified time
    Searched refs:horizontalEdgeType (Results 1 - 4 of 4) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ResizeHandler.java 57 * @param horizontalEdgeType the type of horizontal edge being resized, or null
62 SegmentType horizontalEdgeType, SegmentType verticalEdgeType) {
65 assert horizontalEdgeType != null || verticalEdgeType != null;
66 assert horizontalEdgeType != BASELINE && verticalEdgeType != BASELINE;
67 assert horizontalEdgeType != CENTER_HORIZONTAL && verticalEdgeType != CENTER_HORIZONTAL;
68 assert horizontalEdgeType != CENTER_VERTICAL && verticalEdgeType != CENTER_VERTICAL;
70 mHorizontalEdgeType = horizontalEdgeType;
79 if (horizontalEdgeType != null) {
80 if (horizontalEdgeType == TOP) {
82 } else if (horizontalEdgeType == BOTTOM)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
ResizeState.java 57 public SegmentType horizontalEdgeType;
BaseLayoutRule.java 623 state.horizontalEdgeType = horizontalEdge;
687 if (resizeState.horizontalEdgeType != null) {
689 switch (resizeState.horizontalEdgeType) {
696 default: assert false : resizeState.horizontalEdgeType;
723 if (resizeState.horizontalEdgeType != null) {
724 switch (resizeState.horizontalEdgeType) {
731 default: assert false : resizeState.horizontalEdgeType;
763 if (state.horizontalEdgeType != null) {
766 if (state.horizontalEdgeType == SegmentType.TOP) {
786 if (state.horizontalEdgeType == SegmentType.BOTTOM && !state.wrapHeight)
    [all...]
RelativeLayoutRule.java 268 @Nullable SegmentType horizontalEdgeType, @Nullable SegmentType verticalEdgeType,
271 horizontalEdgeType, verticalEdgeType);

Completed in 187 milliseconds