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

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DExpr.jj46 private static LValue lastLValue;
48 LValue peek() {
49 return (LValue)stack.peek();
52 LValue pop() {
53 return (LValue)stack.pop();
56 void push(LValue lval) {
412 { LValue exprVal = pop(); pop().setValue(exprVal); push(exprVal);}
426 { LValue falseBranch = pop(); LValue trueBranch = pop();
488 { LValue lef
[all...]
H A DLValue.java40 abstract class LValue { class
42 // The JDI Value object for this LValue. Once we have this Value,
43 // we have to remember it since after we return the LValue object
45 // the 'toString' value for the LValue in which case it will
48 // for the LValue. This is especially wrong when the LValue
85 void setValue(LValue lval) throws ParseException {
89 LValue memberLValue(ExpressionParser.GetFrame frameGetter,
98 LValue memberLValue(String fieldName, ThreadReference thread) throws ParseException {
108 // Return the Value for this LValue tha
[all...]
H A DExpressionParser.java46 Stack<LValue> stack = new Stack<LValue>();
50 private static LValue lastLValue;
52 LValue peek() {
56 LValue pop() {
60 void push(LValue lval) {
270 LValue exprVal = pop();
328 LValue falseBranch = pop();
329 LValue trueBranch = pop();
479 LValue lef
[all...]

Completed in 45 milliseconds