Searched defs:tabSize (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DIndentingWriter.java62 private int tabSize = 8; field in class:IndentingWriter
89 public IndentingWriter(Writer out, int step, int tabSize) { argument
96 this.tabSize = tabSize;
148 while (i >= tabSize) {
150 i -= tabSize;
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/
H A DIndentingWriter.java51 private final int tabSize; field in class:IndentingWriter
79 public IndentingWriter(Writer out, int indentStep, int tabSize) { argument
84 if (tabSize < 0) {
88 this.tabSize = tabSize;
140 while (i >= tabSize) {
142 i -= tabSize;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DPlainView.java210 tabSize = getTabSize() * metrics.charWidth('m');
506 if (tabSize == 0) {
509 int ntabs = (((int) x) - tabBase) / tabSize;
510 return tabBase + ((ntabs + 1) * tabSize);
699 int tabSize; field in class:PlainView
H A DWrappedPlainView.java319 tabSize = getTabSize() * metrics.charWidth('m');
335 if (tabSize == 0)
337 int ntabs = ((int) x - tabBase) / tabSize;
338 return tabBase + ((ntabs + 1) * tabSize);
515 int tabSize; field in class:WrappedPlainView
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DJavaCharStream.java129 protected int tabSize = 8; field in class:JavaCharStream
131 protected void setTabSize(int i) { tabSize = i; }
132 protected int getTabSize(int i) { return tabSize; }
291 column += (tabSize - (column % tabSize));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSimpleCharStream.java55 protected int tabSize = 8; field in class:SimpleCharStream
57 protected void setTabSize(int i) { tabSize = i; }
58 protected int getTabSize(int i) { return tabSize; }
195 column += (tabSize - (column % tabSize));

Completed in 53 milliseconds