Home
last modified time | relevance | path

Searched refs:toTypeFunction (Results 1 – 23 of 23) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dfunc.c424 TypeFunction *tf = fd->type->toTypeFunction(); in initInferAttributes()
510 linkage = treq->nextOf()->toTypeFunction()->linkage; in semantic()
534 TypeFunction *tf = type->toTypeFunction(); in semantic()
703 TypeFunction *tfo = originalType->toTypeFunction(); in semantic()
704 TypeFunction *tfx = type->toTypeFunction(); in semantic()
1159 f = type->toTypeFunction(); in semantic()
2610 TypeFunction *tf = type->toTypeFunction(); in buildResultVar()
3184 TypeFunction *tf = f->type->toTypeFunction(); in overloadModMatch()
3254 TypeFunction *tf = this->type->toTypeFunction(); in overloadModMatch()
3319 TypeFunction *tf = type->toTypeFunction(); in leastAsSpecialized()
[all …]
H A Ddclass.c805 TypeFunction *btf = fd->type->toTypeFunction(); in semantic()
1883 tf = ifd->type->toTypeFunction(); in fillVtbl()
H A Ddstruct.c49 tftostring = tftostring->merge()->toTypeFunction(); in search_toString()
H A Dmtype.h340 TypeFunction *toTypeFunction();
H A Dmtype.c2347 TypeFunction *Type::toTypeFunction() in toTypeFunction() function
4835 TypeFunction *tf = fd_aaLen->type->toTypeFunction(); in dotExp()
4842 e->type = fd_aaLen->type->toTypeFunction()->next; in dotExp()
5466 TypeFunction *tf = copy()->toTypeFunction(); in semantic()
6317 TypeFunction *t = Type::addStorageClass(stc)->toTypeFunction(); in addStorageClass()
9379 TypeFunction *tf = td->next->toTypeFunction(); in isLazyArray()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dfunc.d881 auto tf = f.type.toTypeFunction(); in overloadModMatch()
944 auto tf = this.type.toTypeFunction(); in overloadModMatch()
1013 TypeFunction tf = type.toTypeFunction(); in leastAsSpecialized()
1014 TypeFunction tg = g.type.toTypeFunction(); in leastAsSpecialized()
1204 functionToBufferWithIdent(type.toTypeFunction(), &buf, toChars(), isStatic); in toFullSignature()
1335 TypeFunction tf = type.toTypeFunction(); in initInferAttributes()
1359 TypeFunction tf = type.toTypeFunction(); in isPure()
1414 return type.toTypeFunction().trust == TRUST.safe; in isSafe()
1426 return type.toTypeFunction().trust == TRUST.trusted; in isTrusted()
1439 type.toTypeFunction().trust = TRUST.system; in setUnsafe()
[all …]
H A Dtraits.d477 static TypeFunction toTypeFunction(RootObject o, out FuncDeclaration fdp) in semanticTraits()
1312 TypeFunction tf = toTypeFunction((*e.args)[0], fd); in semanticTraits()
1342 TypeFunction tf = toTypeFunction(o, fd); in semanticTraits()
1370 TypeFunction tf = toTypeFunction(o, fd); in semanticTraits()
1424 auto tf = toTypeFunction(o, fd); in semanticTraits()
1514 TypeFunction tf = toTypeFunction(o, fd); in semanticTraits()
H A Dcanthrow.d82 … e.checkOverridenDtor(null, f, dd => dd.type.toTypeFunction().isnothrow, "not nothrow"); in canThrow()
H A Ddstruct.d58 tftostring = tftostring.merge().toTypeFunction(); in search_toString()
H A Dclone.d578 tf = tf.addSTC(STC.const_).toTypeFunction(); in buildXopEquals()
702 tf = tf.addSTC(STC.const_).toTypeFunction(); in buildXopCmp()
1595 auto tf = ctorDecl.type.toTypeFunction(); in needCopyCtor()
H A Dsemantic2.d640 auto type = ifd.type.toTypeFunction(); in visit()
H A Ddclass.d88 auto tf = ifd.type.toTypeFunction(); in fillVtbl()
H A Dmtype.h322 TypeFunction *toTypeFunction();
H A Ddsymbolsem.d3032 funcdecl._linkage = treq.nextOf().toTypeFunction().linkage; in funcDeclarationSemantic()
3099 TypeFunction tf = funcdecl.type.toTypeFunction(); in funcDeclarationSemantic()
3223 TypeFunction tfo = funcdecl.originalType.toTypeFunction(); in funcDeclarationSemantic()
3866 f = funcdecl.type.toTypeFunction(); in funcDeclarationSemantic()
4013 TypeFunction tf = ctd.type.toTypeFunction(); in visit()
5239 auto btf = fd.type.toTypeFunction(); in visit()
H A Dtypesem.d1173 TypeFunction tf = mtype.copy().toTypeFunction(); in typeSemantic()
3717 TypeFunction tf = fd_aaLen.type.toTypeFunction(); in dotExp()
3724 e.type = fd_aaLen.type.toTypeFunction().next; in dotExp()
H A Dsemantic3.d1399 …ldDtor || !global.params.dtorFields || global.params.betterC || ctor.type.toTypeFunction.isnothrow) in visit()
H A Dmtype.d2731 final TypeFunction toTypeFunction() in toTypeFunction() function
4452 TypeFunction t = Type.addStorageClass(stc).toTypeFunction(); in addStorageClass()
6820 TypeFunction tf = td.next.toTypeFunction(); in isLazyArray()
H A Dexpression.d1187 … checkOverridenDtor(sc, f, dd => dd.type.toTypeFunction().purity != PURE.impure, "impure"); in checkPurity()
1427 … checkOverridenDtor(sc, f, dd => dd.type.toTypeFunction().trust > TRUST.system, "@system"); in checkSafety()
1465 checkOverridenDtor(sc, f, dd => dd.type.toTypeFunction().isnogc, "non-@nogc"); in checkNogc()
H A Ddtemplate.d2705 auto dtmod = dt.type.toTypeFunction(); in applyFunction()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dd-frontend.cc64 TypeFunction *tf = fd->type->toTypeFunction (); in eval_builtin()
H A Dtoir.cc965 TypeFunction *tf = this->func_->type->toTypeFunction (); in visit()
H A Dtypeinfo.cc1065 TypeFunction *tf = sd->xhash->type->toTypeFunction (); in visit()
H A DChangeLog-2020573 * d-frontend.cc (eval_builtin): Use toTypeFunction instead of cast.