Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dmtype.h300 virtual unsigned char deduceWild(Type *t, bool isRef);
384 unsigned char deduceWild(Type *t, bool isRef);
798 unsigned char deduceWild(Type *t, bool isRef);
854 unsigned char deduceWild(Type *t, bool isRef);
H A Dmtype.d2235 MOD deduceWild(Type t, bool isRef) in deduceWild() function
3051 override final MOD deduceWild(Type t, bool isRef) in deduceWild() function
3061 wm = next.deduceWild(tn, true); in deduceWild()
3063 wm = Type.deduceWild(t, true); in deduceWild()
3067 wm = Type.deduceWild(t, isRef); in deduceWild()
3069 wm = next.deduceWild(tn, true); in deduceWild()
4663 wildmatch |= targ.deduceWild(tprm, isRef);
5942 override MOD deduceWild(Type t, bool isRef) in deduceWild() function
5945 return Type.deduceWild(t, isRef); in deduceWild()
5954 wm = ato.deduceWild(t, isRef); in deduceWild()
[all …]
H A Ddtemplate.d4336 if (wm && t.deduceWild(tparam, false)) in visit()
4517 if (wm && t.deduceWild(tparam, false)) in visit()
H A Dexpressionsem.d1732 MOD wildmatch = (tthis && !isCtorCall) ? tthis.Type.deduceWild(tf, false) : 0; in functionParameters()
1861 if (ubyte wm = arg.type.deduceWild(p.type, p.isReference())) in functionParameters()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dmtype.h313 virtual unsigned char deduceWild(Type *t, bool isRef);
383 unsigned char deduceWild(Type *t, bool isRef);
802 unsigned char deduceWild(Type *t, bool isRef);
864 unsigned char deduceWild(Type *t, bool isRef);
H A Dmtype.c1850 unsigned char Type::deduceWild(Type *t, bool) in deduceWild() function
2863 unsigned char TypeNext::deduceWild(Type *t, bool isRef) in deduceWild() function
2873 wm = next->deduceWild(tn, true); in deduceWild()
2875 wm = Type::deduceWild(t, true); in deduceWild()
2879 wm = Type::deduceWild(t, isRef); in deduceWild()
2881 wm = next->deduceWild(tn, true); in deduceWild()
6012 wildmatch |= targ->deduceWild(tprm, isRef); in callMatch()
8340 unsigned char TypeStruct::deduceWild(Type *t, bool isRef) in deduceWild() function
8343 return Type::deduceWild(t, isRef); in deduceWild()
8350 wm = aliasthisOf()->deduceWild(t, isRef); in deduceWild()
[all …]
H A Ddtemplate.c3958 if (wm && t->deduceWild(tparam, false)) in deduceType()
4148 if (wm && t->deduceWild(tparam, false)) in deduceType()
H A Dexpression.c1551 if (unsigned char wm = arg->type->deduceWild(p->type, isRef)) in functionParameters()