Searched refs:indentation (Results 1 - 5 of 5) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DPrintAP.java44 int indentation = 0; // Indentation level; field in class:PrintAP.PrintingVisitors
79 int indentation = this.indentation;
80 if (indentation < 0)
82 else if (indentation <= 10)
83 return spaces[indentation];
86 while (indentation > 10) {
87 sb.append(spaces[indentation]);
88 indentation -= 10;
90 sb.append(spaces[indentation]);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java87 int indentation; // Indentation level; field in class:PrintingProcessor.PrintingElementVisitor
95 indentation = 0;
227 indentation++;
257 indentation--;
436 indentation++;
461 indentation--;
499 indentation++;
513 indentation--;
532 int indentation = this.indentation;
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLEncoder.java215 private int indentation = 0; field in class:XMLEncoder
248 * starting from the given <code>indentation</code>.
257 * @param indentation the number of space characters to indent the entire XML document by
261 * or if <code>indentation</code> is less than 0
277 public XMLEncoder(OutputStream out, String charset, boolean declaration, int indentation) { argument
281 if (indentation < 0) {
282 throw new IllegalArgumentException("the indentation must be >= 0");
288 this.indentation = indentation;
477 indentation
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.hpp43 int _indentation; // current indentation
61 // indentation
67 int indentation() const { return _indentation; } function in class:outputStream
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp1152 // indentation and connecting '&&'
1153 const char *indentation = " "; local
1154 fprintf(fp, "\n%s%s", indentation, (!first_constraint ? "&& " : " "));

Completed in 59 milliseconds