Searched defs:tabLength (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSourceToHTMLConverter.java276 * @param tabLength the number of spaces for each tab.
279 private static void addLine(Content pre, String line, int tabLength, argument
283 Util.replaceTabs(tabLength, lineBuffer);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DUtil.java830 * @param tabLength the length of each tab.
833 public static void replaceTabs(int tabLength, StringBuilder s) { argument
834 if (whitespace == null || whitespace.length() < tabLength)
835 whitespace = String.format("%" + tabLength + "s", " ");
838 int spaceCount = tabLength - index % tabLength;

Completed in 40 milliseconds