Searched refs:indent (Results 76 - 100 of 202) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyleConstants.java178 * The amount of space to indent the first
187 * The amount to indent the left side
194 * The amount to indent the right side
245 * indent and extra whitespace should be placed on
261 * indent and extra whitespace should be placed on
270 * text lined up with the left and right indent
592 * Gets the first line indent setting.
598 Float indent = (Float) a.getAttribute(FirstLineIndent);
599 if (indent != null) {
600 return indent
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMinimalHTMLWriter.java165 indent();
196 * indented. Also increments the indent level.
201 indent();
210 * indented. Also decrements the indent level.
216 indent();
269 indent();
275 indent();
377 indent();
433 indent();
649 indent();
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/trace/
H A DEventThread.java55 static String nextBaseIndent = ""; // Starting indent for next thread
149 StringBuffer indent; field in class:EventThread.ThreadTrace
154 indent = new StringBuffer(baseIndent);
160 writer.print(indent);
167 indent.append("| ");
171 indent.setLength(indent.length()-2);
198 indent = new StringBuffer(baseIndent);
204 indent.append("| ");
212 indent
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DInlineTree.java90 public void printImpl(PrintStream st, int indent) { argument
91 for (int i = 0; i < indent; i++) st.print(" ");
98 subt.at(i).printImpl(st, indent + 2);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicyReferenceData.java119 final String indent = PolicyUtils.Text.createIndent(indentLevel);
122 buffer.append(indent).append("reference data {").append(PolicyUtils.Text.NEW_LINE);
130 buffer.append(indent).append('}');
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DDoStatement.java127 public void print(PrintStream out, int indent) { argument
128 super.print(out, indent);
130 body.print(out, indent);
H A DIfStatement.java192 public void print(PrintStream out, int indent) { argument
193 super.print(out, indent);
197 ifTrue.print(out, indent);
200 ifFalse.print(out, indent);
H A DBreakStatement.java98 public void print(PrintStream out, int indent) { argument
99 super.print(out, indent);
H A DContinueStatement.java108 public void print(PrintStream out, int indent) { argument
109 super.print(out, indent);
H A DInlineReturnStatement.java104 public void print(PrintStream out, int indent) { argument
105 super.print(out, indent);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DUnsupportedElement.java73 public void display(int indent) { argument
74 indent(indent);
77 displayContents(indent + IndentIncrement);
H A DChoose.java51 public void display(int indent) { argument
52 indent(indent);
54 indent(indent + IndentIncrement);
55 displayContents(indent + IndentIncrement);
H A DCopy.java65 public void display(int indent) { argument
66 indent(indent);
68 indent(indent + IndentIncrement);
69 displayContents(indent + IndentIncrement);
H A DForEach.java56 public void display(int indent) { argument
57 indent(indent);
59 indent(indent + IndentIncrement);
61 displayContents(indent + IndentIncrement);
H A DParam.java91 public void display(int indent) { argument
92 indent(indent);
95 indent(indent + IndentIncrement);
98 displayContents(indent + IndentIncrement);
H A DVariableBase.java165 public void display(int indent) { argument
166 indent(indent);
169 indent(indent + IndentIncrement);
172 displayContents(indent + IndentIncrement);
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DCommandNode.java59 indent(writer, depth);
H A DConstantNode.java51 indent(writer, depth);
H A DAbstractNamedNode.java86 indent(writer, depth);
96 indent(writer, depth);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DValueGen24.java299 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
311 stream.println(indent + "super._read (istream);");
328 index = ((JavaGenerator)member.generator ()).read (index, indent, name + '.' + memberName, member, stream);
330 stream.println (indent + name + '.' + memberName + " = " +
340 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
351 stream.println(indent + "super._write (ostream);");
367 index = ((JavaGenerator)member.generator ()).write (index, indent, name + '.' + memberName, member, stream);
369 stream.println (indent + Util.helperName (mType, true) + // <d61056>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicySubject.java137 final String indent = PolicyUtils.Text.createIndent(indentLevel);
140 buffer.append(indent).append("policy subject {").append(PolicyUtils.Text.NEW_LINE);
145 buffer.append(indent).append('}');
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DPrintAP.java78 String indent(){ method in class:PrintAP.PrintingVisitors
189 System.out.print(PrintingVisitors.this.indent());
232 System.out.print(PrintingVisitors.this.indent());
240 System.out.print(this.indent());
285 System.out.print(PrintingVisitors.this.indent());
316 System.out.print(PrintingVisitors.this.indent());
320 System.out.print(PrintingVisitors.this.indent());
325 System.out.print(PrintingVisitors.this.indent());
333 System.out.print(PrintingVisitors.this.indent());
433 System.out.print(PrintingVisitors.this.indent());
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CFGPrinter.cpp126 output()->indent();
135 output()->indent();
142 output()->indent();
284 output()->indent();
292 output()->indent();
299 output()->indent();
306 output()->indent();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java258 indent();
310 indent();
314 indent();
319 indent();
330 indent();
401 indent();
439 indent();
502 indent();
531 private void indent() { method in class:PrintingProcessor.PrintingElementVisitor
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DInfoWindow.java73 protected void show(Point corner, int indent) { argument
84 setLocation(corner.x + indent, corner.y + indent);
87 setLocation(corner.x - indent - size.width, corner.y + indent);
90 setLocation(corner.x + indent, corner.y - indent - size.height);
93 setLocation(corner.x - indent - size.width, corner.y - indent - size.height);

Completed in 95 milliseconds

123456789