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

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/
H A DInstructionPrinter.java129 int indentation = out.indentationLevel();
130 out.fillTo(BCI.position + indentation, ' ').print(0).fillTo(USE.position + indentation, ' ').print("0").fillTo(VALUE.position + indentation, ' ').print(
132 INSTRUCTION.position + indentation, ' ');
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/
H A DUtil.java82 * Prepends the String {@code indentation} to every line in String {@code lines}, including a
85 public static String indent(String lines, String indentation) { argument
91 return indentation + (lines.substring(0, lines.length() - 1)).replace(newLine, newLine + indentation) + newLine;
93 return indentation + lines.replace(newLine, newLine + indentation);
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/
H A DXMLEncoder.java214 private int indentation = 0; field in class:XMLEncoder
247 * starting from the given {@code indentation}.
256 * @param indentation the number of space characters to indent the entire XML document by
260 * or if {@code indentation} is less than 0
276 public XMLEncoder(OutputStream out, String charset, boolean declaration, int indentation) { argument
280 if (indentation < 0) {
281 throw new IllegalArgumentException("the indentation must be >= 0");
287 this.indentation = indentation;
477 indentation
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java93 int indentation; // Indentation level; field in class:PrintingProcessor.PrintingElementVisitor
101 indentation = 0;
233 indentation++;
262 indentation--;
313 indentation++;
317 indentation--;
536 indentation++;
561 indentation--;
599 indentation++;
613 indentation
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DLogStream.java40 * A {@code LogStream} maintains a current {@linkplain #indentationLevel() indentation} level. Each
75 private char indentation = ' '; field in class:LogStream
112 * Prepends {@link #indentation} to the current output line until its write position is equal to
119 lineBuffer.append(indentation);
161 * Gets the current indentation level for this log stream.
163 * @return the current indentation level for this log stream.
170 * Adjusts the current indentation level of this log stream.
183 * Gets the current indentation character of this log stream.
185 public char indentation() { method in class:LogStream
186 return indentation;
[all...]
/openjdk10/hotspot/src/share/vm/utilities/
H A Dostream.hpp46 int _indentation; // current indentation
73 // indentation
79 int indentation() const { return _indentation; } function in class:outputStream
/openjdk10/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp1097 // indentation and connecting '&&'
1098 const char *indentation = " "; local
1099 fprintf(fp, "\n%s%s", indentation, (!first_constraint ? "&& " : " "));

Completed in 71 milliseconds