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

/external/javassist/src/main/javassist/compiler/ast/
H A DIntConst.java24 public class IntConst extends ASTree { class in inherits:ASTree
28 public IntConst(long v, int tokenId) { value = v; type = tokenId; } method in class:IntConst
45 if (right instanceof IntConst)
46 return compute0(op, (IntConst)right);
53 private IntConst compute0(int op, IntConst right) {
109 return new IntConst(newValue, newType);
H A DDoubleConst.java45 if (right instanceof IntConst)
46 return compute0(op, (IntConst)right);
64 private DoubleConst compute0(int op, IntConst right) {
H A DVisitor.java48 public void atIntConst(IntConst n) throws CompileError {}
/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java401 else if (left instanceof IntConst)
402 newExpr = ((IntConst)left).compute(op, right);
470 return new IntConst(((Number)value).longValue(), token);
599 if (oprand instanceof IntConst) {
600 IntConst c = (IntConst)oprand;
992 public void atIntConst(IntConst i) throws CompileError {
H A DParser.java873 return new IntConst(-lex.getLong(), t2);
1018 return new IntConst(lex.getLong(), token);
H A DCodeGen.java566 if (expr instanceof IntConst)
567 return (int)((IntConst)expr).get();
1896 public void atIntConst(IntConst i) throws CompileError {
/external/javassist/src/main/javassist/
H A DCtField.java23 import javassist.compiler.ast.IntConst;
859 if (tree instanceof IntConst) {
860 long value = ((IntConst)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 156 milliseconds