HomeSort by: relevance | last modified time | path
    Searched refs:integerexp (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
expression.h 132 IntegerExp* isIntegerExp();
244 class IntegerExp : public Expression
249 static IntegerExp *create(const Loc &loc, dinteger_t value, Type *type);
262 static IntegerExp literal();
1376 char integerexp[sizeof(IntegerExp)]; member in union:MemorySet::UnionExp::__anon15987
expressionsem.d 124 IntegerExp ie = e4.isIntegerExp();
128 auto tsa = new TypeSArray(ie.type, IntegerExp.literal!1);
251 Expression edim = new IntegerExp(ae.loc, i, Type.tsize_t);
1056 e1 = new IndexExp(loc, e1, IntegerExp.literal!1);
1395 scope IntegerExp integerexp = IntegerExp.literal!0;
1396 scope CondExp condexp = new CondExp(Loc.initial, integerexp, null, null);
2380 auto e = new AssignExp(gate.loc, new VarExp(gate.loc, gate), IntegerExp.createBool(true));
2550 override void visit(IntegerExp e
    [all...]
expression.d 566 char[__traits(classInstanceSize, IntegerExp)] integerexp;
1626 inout(IntegerExp) isIntegerExp() { return op == EXP.int64 ? cast(typeof(return))this : null; }
1775 extern (C++) final class IntegerExp : Expression
1781 super(loc, EXP.int64, __traits(classInstanceSize, IntegerExp));
1782 //printf("IntegerExp(value = %lld, type = '%s')\n", value, type ? type.toChars() : "");
1797 super(Loc.initial, EXP.int64, __traits(classInstanceSize, IntegerExp));
1802 static IntegerExp create(const ref Loc loc, dinteger_t value, Type type)
1804 return new IntegerExp(loc, value, type);
1810 emplaceExp!(IntegerExp)(pue, loc, value, type)
    [all...]

Completed in 23 milliseconds