Searched refs:DoubleConst (Results 1 - 8 of 8) sorted by relevance
/external/javassist/src/main/javassist/compiler/ast/ |
H A D | DoubleConst.java | 24 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 D | IntConst.java | 47 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 D | Visitor.java | 49 public void atDoubleConst(DoubleConst n) throws CompileError {}
|
/external/javassist/src/main/javassist/compiler/ |
H A D | TypeChecker.java | 403 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 D | Parser.java | 877 return new DoubleConst(-lex.getDouble(), t2); 1022 return new DoubleConst(lex.getDouble(), token);
|
H A D | CodeGen.java | 1910 public void atDoubleConst(DoubleConst d) throws CompileError {
|
/external/javassist/src/main/javassist/ |
H A D | CtField.java | 24 import javassist.compiler.ast.DoubleConst; 870 else if (tree instanceof DoubleConst) { 871 double value = ((DoubleConst)tree).get();
|
/external/robolectric/lib/main/ |
H A D | javassist-3.14.0-GA.jar | META-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ... |
Completed in 125 milliseconds