Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DResizeState.java63 public boolean wrapWidth; field in ResizeState
108 if (wrapWidth) { in getWidthAttribute()
DBaseLayoutRule.java680 int wrapWidth = resizeState.wrapBounds.w;
701 gc.drawLine(b.x + b.w - wrapWidth, y, b.x + b.w, y);
704 gc.drawLine(b.x, y, b.x + wrapWidth, y);
716 x = b.x + b.w - wrapWidth;
719 x = b.x + wrapWidth;
759 state.wrapWidth = state.wrapHeight = false;
774 state.wrapWidth = true;
798 if (state.verticalEdgeType == SegmentType.RIGHT && !state.wrapWidth) {
870 && (newBounds.w != oldBounds.w || resizeState.wrapWidth || resizeState.fillWidth)) {
DLinearLayoutRule.java889 if (resizeState.wrapWidth || resizeState.fillWidth) {
954 resizeState.wrapWidth = true;
994 if (newBounds.w != oldBounds.w || resizeState.wrapWidth || resizeState.fillWidth) {
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
DLogCatPanel.java1301 private List<String> wrapMessage(String msg, int wrapWidth) {
1302 if (msg.length() < wrapWidth) {
1312 int copylen = Math.min(wrapWidth, len);