Home
last modified time | relevance | path

Searched refs:defaultType (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dtemplateparamsem.d68 if (ttp.defaultType) in visit()
70 ttp.defaultType = ttp.defaultType.typeSemantic(ttp.loc, sc); in visit()
H A Dtemplate.h150 Type *defaultType; variable
H A Ddtemplate.d4555 if (tp.defaultType) in visit()
4557 tp.defaultType.accept(this); in visit()
5378 Type defaultType; variable
5382 extern (D) this(const ref Loc loc, Identifier ident, Type specType, Type defaultType) in this() argument
5386 this.defaultType = defaultType; in this()
5396 …eParameter(loc, ident, specType ? specType.syntaxCopy() : null, defaultType ? defaultType.syntaxCo… in syntaxCopy()
5417 if (defaultType) in print()
5418 printf("\tDefault: %s\n", defaultType.toChars()); in print()
5430 Type t = defaultType; in defaultArg()
5441 return defaultType !is null; in hasDefaultArg()
[all …]
H A Dtransitivevisitor.d1156 if (tp.defaultType) in ParseVisitMethods()
1157 visitType(tp.defaultType); in ParseVisitMethods()
H A Djson.d697 property("default", "defaultDeco", type.defaultType); in visit()
H A Dcppmangle.d2018 ttp.defaultType.accept(this); in visit()
2022 tvp.defaultType.accept(this); in visit()
H A Dhdrgen.d2699 if (tp.defaultType) in visit()
2702 typeToBuffer(tp.defaultType, null, buf, hgs); in visit()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtemplate.h173 Type *defaultType; variable
177 TemplateTypeParameter(Loc loc, Identifier *ident, Type *specType, Type *defaultType);
198 TemplateThisParameter(Loc loc, Identifier *ident, Type *specType, Type *defaultType);
H A Ddtemplate.c4186 if (tp->defaultType) in deduceType()
4188 tp->defaultType->accept(this); in deduceType()
5016 Type *defaultType) in TemplateTypeParameter() argument
5021 this->defaultType = defaultType; in TemplateTypeParameter()
5033 defaultType ? defaultType->syntaxCopy() : NULL); in syntaxCopy()
5143 if (defaultType) in print()
5144 printf("\tDefault: %s\n", defaultType->toChars()); in print()
5170 Type *t = defaultType; in defaultArg()
5181 return defaultType != NULL; in hasDefaultArg()
5190 Type *defaultType) in TemplateThisParameter() argument
[all …]
H A Djson.c740 property("default", "defaultDeco", type->defaultType); in visit()
H A Dhdrgen.c3019 if (tp->defaultType) in visit()
3022 typeToBuffer(tp->defaultType, NULL); in visit()
/netbsd-src/sys/arch/mac68k/obio/
H A Diwm_fdvar.h154 fdInfo_t *defaultType; /* default floppy format */ member
H A Diwm_fd.c447 fd->defaultType = &fdTypes[IWM_800K_GCR]; in fd_attach()
1728 thisInfo = (type == 0) ? fd->defaultType : &fdTypes[type - 1]; in fdDeviceToType()