Searched refs:DoubleConst (Results 1 - 8 of 8) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
H A DDoubleConst.java24 public class DoubleConst extends ASTree { class in inherits:ASTree
28 public DoubleConst(double v, int tokenId) { value = v; type = tokenId; } method in class:DoubleConst
47 else if (right instanceof DoubleConst)
48 return compute0(op, (DoubleConst)right);
53 private DoubleConst compute0(int op, DoubleConst right) {
64 private DoubleConst compute0(int op, IntConst right) {
68 private static DoubleConst compute(int op, double value1, double value2,
92 return new DoubleConst(newValue, newType);
H A DIntConst.java47 else if (right instanceof DoubleConst)
48 return compute0(op, (DoubleConst)right);
112 private DoubleConst compute0(int op, DoubleConst right) {
136 return new DoubleConst(newValue, right.type);
H A DVisitor.java49 public void atDoubleConst(DoubleConst n) throws CompileError {}
/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java403 else if (left instanceof DoubleConst)
404 newExpr = ((DoubleConst)left).compute(op, right);
466 return new DoubleConst(((Number)value).doubleValue(), token);
611 else if (oprand instanceof DoubleConst) {
612 DoubleConst c = (DoubleConst)oprand;
1001 public void atDoubleConst(DoubleConst d) throws CompileError {
H A DParser.java877 return new DoubleConst(-lex.getDouble(), t2);
1022 return new DoubleConst(lex.getDouble(), token);
H A DCodeGen.java1910 public void atDoubleConst(DoubleConst d) throws CompileError {
/external/javassist/src/main/javassist/
H A DCtField.java24 import javassist.compiler.ast.DoubleConst;
870 else if (tree instanceof DoubleConst) {
871 double value = ((DoubleConst)tree).get();
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 125 milliseconds