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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 256 String[] indentationLevels = null;
303 indentationLevels = m.measure(initialDepth, root);
317 for (int i = depth + 1; i < indentationLevels.length; i++) {
318 indentationLevels[i] = null;
328 if (indentationLevels != null) {
329 printer.setIndentationLevels(indentationLevels);
615 String[] indentationLevels = new String[mMaxDepth + 1];
619 indentationLevels[depth] = indentation;
622 return indentationLevels;
XmlPrettyPrinter.java 94 * @param indentationLevels an array of strings to use for the various indentation
97 public void setIndentationLevels(String[] indentationLevels) {
98 mIndentationLevels = indentationLevels;
    [all...]

Completed in 27 milliseconds