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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
aggregate.d 473 Type telem = vx.type;
474 if (telem.ty == Tsarray)
482 while ((tsa = telem.toBasetype().isTypeSArray()) !is null)
483 telem = tsa.next;
484 if (telem.ty == Tvoid)
485 telem = Type.tuns8.addMod(telem.mod);
487 if (telem.needsNested() && ctorinit)
488 e = telem.defaultInit(loc);
490 e = telem.defaultInitLiteral(loc)
    [all...]
expression.d 3030 TY telem = type.nextOf().toBasetype().ty;
3031 if (telem.isSomeChar || (telem == Tvoid && (!elements || elements.dim == 0)))
3034 if (telem == Twchar)
3036 else if (telem == Tdchar)
statementsem.d 1062 auto telem = (*fs.parameters)[dim - 1].type;
1065 // if telem has been specified explicitly,
1066 // converting array literal elements to telem might make it @nogc.
1067 fs.aggr = fs.aggr.implicitCastTo(sc, telem.sarrayOf(edim));
typesem.d 836 Type telem = (*tt.arguments)[cast(size_t)d].type;
837 return telem.addMod(mtype.mod);
expressionsem.d 9685 Type telem = t1;
9686 while (telem.ty == Tarray)
9687 telem = telem.nextOf();
9690 (telem.ty != Tvoid || e2x.op == EXP.null_) &&
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-compiler.cc 80 Type *telem = expr->type->nextOf (); local
81 tree vectype = build_vector_type (build_ctype (telem), nunits);
d-convert.cc 784 Type *telem = tbtype->nextOf ()->baseElemOf (); local
786 if (same_type_p (telem, ebtype))
expr.cc 2448 Type *telem = e->newtype->toBasetype (); local
2454 gcc_assert (telem->ty == TY::Tarray);
2455 telem = telem->toBasetype ()->nextOf ();
2456 gcc_assert (telem);
2465 libcall_fn libcall = telem->isZeroInit ()

Completed in 92 milliseconds