Searched refs:IntConst (Results 1 – 9 of 9) sorted by relevance
/external/javassist/src/main/javassist/compiler/ast/ |
D | IntConst.java | 25 public class IntConst extends ASTree { class 31 public IntConst(long v, int tokenId) { value = v; type = tokenId; } in IntConst() method in IntConst 50 if (right instanceof IntConst) in compute() 51 return compute0(op, (IntConst)right); in compute() 58 private IntConst compute0(int op, IntConst right) { in compute0() 114 return new IntConst(newValue, newType); in compute0()
|
D | DoubleConst.java | 50 if (right instanceof IntConst) in compute() 51 return compute0(op, (IntConst)right); in compute() 69 private DoubleConst compute0(int op, IntConst right) { in compute0()
|
D | Visitor.java | 49 public void atIntConst(IntConst n) throws CompileError {} in atIntConst()
|
/external/javassist/src/main/javassist/compiler/ |
D | TypeChecker.java | 39 import javassist.compiler.ast.IntConst; 428 else if (left instanceof IntConst) in isConstant() 429 newExpr = ((IntConst)left).compute(op, right); in isConstant() 495 return new IntConst(((Number)value).longValue(), token); in getConstantFieldValue() 633 if (oprand instanceof IntConst) { in isConstant() 634 IntConst c = (IntConst)oprand; in isConstant() 1061 public void atIntConst(IntConst i) throws CompileError { in atIntConst()
|
D | Parser.java | 32 import javassist.compiler.ast.IntConst; 886 return new IntConst(-lex.getLong(), t2); in parseUnaryExpr() 1034 return new IntConst(lex.getLong(), token); in parsePostfix()
|
D | CodeGen.java | 38 import javassist.compiler.ast.IntConst; 611 if (expr instanceof IntConst) in computeLabel() 612 return (int)((IntConst)expr).get(); in computeLabel() 1970 public void atIntConst(IntConst i) throws CompileError { in atIntConst()
|
/external/javassist/src/main/javassist/ |
D | CtField.java | 35 import javassist.compiler.ast.IntConst; 906 if (tree instanceof IntConst) { in getConstantValue2() 907 long value = ((IntConst)tree).get(); in getConstantValue2()
|
/external/libchrome/mojo/public/tools/bindings/ |
D | README.md | 761 Integer = IntConst | "+" IntConst | "-" IntConst 762 IntConst = IntConstDec | IntConstHex
|
/external/swiftshader/third_party/subzero/src/ |
D | IceAssemblerARM32.cpp | 403 } else if (const auto *IntConst = llvm::dyn_cast<ConstantInteger32>(Amt)) { in encodeOperand() local 404 int32_t Val = IntConst->getValue(); in encodeOperand()
|