Home
last modified time | relevance | path

Searched refs:IntConstant (Results 1 – 6 of 6) sorted by relevance

/external/javassist/src/main/javassist/compiler/
DLex.java262 return IntConstant; in readNumber()
278 return IntConstant; in readNumber()
306 return IntConstant; in readNumber()
DTokenId.java104 int IntConstant = 402; field
DTypeChecker.java469 int token = (value instanceof Long) ? LongConstant : IntConstant; in getConstantFieldValue()
995 if (type == IntConstant || type == CharConstant) in atIntConst()
996 exprType = (type == IntConstant ? INT : CHAR); in atIntConst()
DParser.java870 case IntConstant : in parseUnaryExpr()
946 || t == IntConstant || t == CharConstant in nextIsClassCast()
1015 case IntConstant : in parsePostfix()
DCodeGen.java1900 if (type == IntConstant || type == CharConstant) { in atIntConst()
1901 exprType = (type == IntConstant ? INT : CHAR); in atIntConst()
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java63 newType = TokenId.IntConstant; in compute0()