Searched refs:inlineValueSB (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DExprExpression.java104 * See the comment in AddExpression#inlineValueSB() for
107 protected StringBuffer inlineValueSB(Environment env, method in class:ExprExpression
110 return right.inlineValueSB(env, ctx, buffer);
H A DAddExpression.java86 * dispatch to the special method inlineValueSB, which handles
91 StringBuffer buffer = inlineValueSB(env, ctx, new StringBuffer());
130 * compiler, noticed this and suggested that the method inlineValueSB()
145 * See also Expression#inlineValueSB() and ExprExpression#inlineValueSB().
147 protected StringBuffer inlineValueSB(Environment env, method in class:AddExpression
152 // of some sort. Call the generic inlineValueSB()
153 return super.inlineValueSB(env, ctx, buffer);
156 buffer = left.inlineValueSB(env, ctx, buffer);
158 buffer = right.inlineValueSB(en
[all...]
H A DExpression.java367 * See AddExpression#inlineValueSB() for detailed comments.
369 protected StringBuffer inlineValueSB(Environment env, method in class:Expression

Completed in 164 milliseconds