Home
last modified time | relevance | path

Searched refs:TypeMixin (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dmtype.h347 TypeMixin *isTypeMixin();
683 class TypeMixin : public Type
690 TypeMixin *syntaxCopy();
H A Dvisitor.h86 class TypeMixin; variable
446 virtual void visit(TypeMixin *t) { visit((Type *)t); } in visit()
H A Dparsetimevisitor.d153 void visit(AST.TypeMixin t) { visit(cast(AST.Type)t); } in ParseTimeVisitor()
H A Dtransitivevisitor.d480 override void visit(AST.TypeMixin t) in ParseVisitMethods()
H A Dmtype.d452 sizeTy[Tmixin] = __traits(classInstanceSize, TypeMixin);
2720 …inout(TypeMixin) isTypeMixin() { return ty == Tmixin ? cast(typeof(return))this : nu… in isTypeMixin()
5293 extern (C++) final class TypeMixin : Type
5311 override TypeMixin syntaxCopy() in syntaxCopy()
5313 return new TypeMixin(loc, Expression.arraySyntaxCopy(exps)); in syntaxCopy()
H A Dtypesem.d585 static Expression visitMixin(TypeMixin t) in typeToExpression()
2013 Type visitMixin(TypeMixin mtype) in typeSemantic()
2261 RootObject compileTypeMixin(TypeMixin tm, Loc loc, Scope* sc) in compileTypeMixin()
3294 void visitMixin(TypeMixin mt) in visitMixin()
H A Dhdrgen.d3952 void visitMixin(TypeMixin t) in typeToBufferx()
3991 case Tmixin: return visitMixin(cast(TypeMixin)t); in typeToBufferx()
H A Dparse.d3651 t = new AST.TypeMixin(loc, exps);