Home
last modified time | relevance | path

Searched refs:IntConst (Results 1 – 9 of 9) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java25 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()
DDoubleConst.java50 if (right instanceof IntConst) in compute()
51 return compute0(op, (IntConst)right); in compute()
69 private DoubleConst compute0(int op, IntConst right) { in compute0()
DVisitor.java49 public void atIntConst(IntConst n) throws CompileError {} in atIntConst()
/external/javassist/src/main/javassist/compiler/
DTypeChecker.java39 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()
DParser.java32 import javassist.compiler.ast.IntConst;
886 return new IntConst(-lex.getLong(), t2); in parseUnaryExpr()
1034 return new IntConst(lex.getLong(), token); in parsePostfix()
DCodeGen.java38 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/
DCtField.java35 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/
DREADME.md761 Integer = IntConst | "+" IntConst | "-" IntConst
762 IntConst = IntConstDec | IntConstHex
/external/swiftshader/third_party/subzero/src/
DIceAssemblerARM32.cpp403 } else if (const auto *IntConst = llvm::dyn_cast<ConstantInteger32>(Amt)) { in encodeOperand() local
404 int32_t Val = IntConst->getValue(); in encodeOperand()