Searched refs:startLineInclusive (Results 1 – 1 of 1) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
D | VisualRefactoring.java | 1088 int startLineInclusive = -1; in removeElementTags() local 1107 startLineInclusive = doc.getLineOfOffset(endOffset) + 1; in removeElementTags() 1137 if (changeIndentation && startLineInclusive != -1 && endLineInclusive != -1) { in removeElementTags() 1140 setIndentation(rootEdit, indent, doc, startLineInclusive, endLineInclusive, in removeElementTags() 1149 IStructuredDocument doc, int startLineInclusive, int endLineInclusive, in removeIndentation() argument 1151 if (startLineInclusive > endLineInclusive) { in removeIndentation() 1160 for (int line = startLineInclusive; line <= endLineInclusive; line++) { in removeIndentation() 1180 IStructuredDocument doc, int startLineInclusive, int endLineInclusive, in setIndentation() argument 1182 if (startLineInclusive > endLineInclusive) { in setIndentation() 1191 for (int line = startLineInclusive; line <= endLineInclusive; line++) { in setIndentation()
|