Lines Matching refs:IntegerExp
1117 IntegerExp integerexp(0); in arrayExpressionToCommonType()
1921 …ression *e = new AssignExp(gate->loc, new VarExp(gate->loc, gate), new IntegerExp(gate->loc, 1, Ty… in functionParameters()
2857 IntegerExp::IntegerExp(Loc loc, dinteger_t value, Type *type) in IntegerExp() function
2858 : Expression(loc, TOKint64, sizeof(IntegerExp)) in IntegerExp()
2873 IntegerExp::IntegerExp(dinteger_t value) in IntegerExp() function
2874 : Expression(Loc(), TOKint64, sizeof(IntegerExp)) in IntegerExp()
2880 IntegerExp *IntegerExp::create(Loc loc, dinteger_t value, Type *type) in create()
2882 return new IntegerExp(loc, value, type); in create()
2885 bool IntegerExp::equals(RootObject *o) in equals()
2891 IntegerExp *ne = (IntegerExp *)o; in equals()
2901 void IntegerExp::setInteger(dinteger_t value) in setInteger()
2907 void IntegerExp::normalize() in normalize()
2940 dinteger_t IntegerExp::toInteger() in toInteger()
2946 real_t IntegerExp::toReal() in toReal()
2956 real_t IntegerExp::toImaginary() in toImaginary()
2961 complex_t IntegerExp::toComplex() in toComplex()
2966 bool IntegerExp::isBool(bool result) in isBool()
2972 Expression *IntegerExp::toLvalue(Scope *, Expression *e) in toLvalue()
6192 new IntegerExp(loc, 1, Type::tint32)) in PostExp()
6699 Expression *e = new IntegerExp(loc, loc.linnum, Type::tint32); in resolveLoc()
6862 Expression *edim = new IntegerExp(ae->loc, i, Type::tsize_t); in resolveOpDollar()