| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | importc.d | 59 else if (tb.isTypeFunction()) in cAdjustParamType() 90 else if (t.isTypeFunction()) in arrayFuncConv() 353 if (auto tf = t1.isTypeFunction()) in cTypeEquivalence() 354 return cFuncEquivalence(tf, tf.isTypeFunction()); in cTypeEquivalence()
|
| H A D | canthrow.d | 74 auto tf = f.type.toBasetype().isTypeFunction(); in canThrow() 134 auto tf = t.isTypeFunction(); in canThrow() 140 if (td && td.nextOf().isTypeFunction().isnothrow) in canThrow()
|
| H A D | escape.d | 288 if (par && fdc && fdc.type.isTypeFunction()) in checkParamArgumentEscape() 478 TypeFunction tf = ctor.type.isTypeFunction(); in checkConstructorEscape() 602 if (p == fd && fd.type && fd.type.isTypeFunction()) in checkAssignEscape() 604 TypeFunction tf = fd.type.isTypeFunction(); in checkAssignEscape() 1110 if (auto tf = func.type.isTypeFunction()) in checkNewEscape() 1376 TypeFunction tf = fd.type.isTypeFunction(); in checkReturnEscapeImpl() 1423 if (auto tf = fd.type.isTypeFunction()) in inferReturn() 1434 if (auto tf = fd.type.isTypeFunction()) in inferReturn() 1689 tf = dg.next.isTypeFunction(); in visit() 1692 tf = t1.isTypeFunction(); in visit() [all …]
|
| H A D | transitivevisitor.d | 331 if (auto tf = t.isTypeFunction()) in ParseVisitMethods() 395 if (auto tf = t.next.isTypeFunction()) in ParseVisitMethods() 418 visitFunctionType(t.next.isTypeFunction(), null); in ParseVisitMethods() 640 visitFunctionType(fd.type.isTypeFunction(), d); in ParseVisitMethods() 822 auto tf = f.type.isTypeFunction(); in ParseVisitMethods() 832 auto tf = f.type.isTypeFunction(); in ParseVisitMethods()
|
| H A D | opover.d | 1592 matchParamsToOpApply(fdapply.type.isTypeFunction(), fes.parameters, true); in inferApplyArgTypes() 1688 if (!matchParamsToOpApply(td.next.isTypeFunction(), fes.parameters, true)) in inferApplyArgTypes() 1720 auto tf = f.type.isTypeFunction(); in findBestOpApplyMatch() 1740 auto bestTf = fd_best.type.isTypeFunction(); in findBestOpApplyMatch() 1810 TypeFunction tdg = de.next.isTypeFunction(); in matchParamsToOpApply()
|
| H A D | ob.d | 1432 auto tf = t.isTypeFunction(); in genKill() 1436 tf = t.nextOf().isTypeFunction(); in genKill() 2136 auto tf = t.isTypeFunction(); in checkObErrors() 2140 tf = t.nextOf().isTypeFunction(); in checkObErrors()
|
| H A D | dmangle.d | 521 TypeFunction tf = fd.type.isTypeFunction(); in mangleFunc() 522 TypeFunction tfo = fd.originalType.isTypeFunction(); in mangleFunc()
|
| H A D | cparse.d | 1738 if (specifier.alignExps && dt.isTypeFunction()) in cparseDeclaration() 1754 dt.isTypeFunction() && // function type not inherited from a typedef in cparseDeclaration() 1759 auto s = cparseFunctionDefinition(id, dt.isTypeFunction(), specifier); in cparseDeclaration() 4689 if (auto tf = t.isTypeFunction()) 4742 if (t.isTypeFunction()) 4749 return (*pt).isTypeFunction() !is null;
|
| H A D | semantic3.d | 219 auto f = funcdecl.type.isTypeFunction(); in visit() 246 auto tf = funcdecl.type.isTypeFunction(); in visit() 1363 funcdecl.type.isTypeFunction().islive) in visit()
|
| H A D | expressionsem.d | 372 auto tf = ce.f.type.isTypeFunction(); in checkPropertyCall() 378 tf = ce.f.type.isTypeFunction(); in checkPropertyCall() 728 if (fd.type.isTypeFunction().isproperty) in resolvePropertiesOnly() 733 if (fd.type.isTypeFunction().isproperty || in resolvePropertiesOnly() 749 if (fd.type.isTypeFunction().isproperty || in resolvePropertiesOnly() 761 if (fd.type.isTypeFunction().isproperty) in resolvePropertiesOnly() 791 else if (e1.isDotVarExp() && e1.type.isTypeFunction()) in resolvePropertiesOnly() 796 …else if (e1.isVarExp() && e1.type && e1.type.isTypeFunction() && (sc.intypeof || !e1.isVarExp().va… in resolvePropertiesOnly() 1177 auto tf = fd.type.isTypeFunction(); 1240 …else if (e1.isDotVarExp() && e1.type && (e1.type.toBasetype().isTypeFunction() || e1.isDotVarExp()… [all …]
|
| H A D | dtemplate.d | 847 auto tf = fd.type.isTypeFunction(); in evaluateConstraint() 1172 TypeFunction tf = fd.type.isTypeFunction().syntaxCopy(); in matchWithInstance() 2383 auto tf = fd.type.isTypeFunction(); in doHeaderInstantiation() 3015 auto tf1 = fd.type.isTypeFunction(); in applyTemplate() 3016 auto tf2 = m.lastf.type.isTypeFunction(); in applyTemplate() 3120 auto tf = m.lastf.type.isTypeFunction(); 3884 if (auto tp = tparam.isTypeFunction()) in visit() 4806 auto tof = to.nextOf().isTypeFunction(); in visit() 5013 case Tfunction: return visitFunction(tb.isTypeFunction()); in reliesOnTemplateParameters()
|
| H A D | mtype.d | 549 TypeFunction t1 = this.isTypeFunction(); 550 TypeFunction t2 = t.isTypeFunction(); 2292 t = new TypeDelegate(t.isTypeFunction()); in substWildTo() 2708 …inout(TypeFunction) isTypeFunction() { return ty == Tfunction ? cast(typeof(return))this : nu… in isTypeFunction() function 4092 if (auto thisTf = this.next.isTypeFunction()) in implicitConvTo() 5144 auto tf = next.syntaxCopy().isTypeFunction(); in syntaxCopy() 5195 MATCH m = this.next.isTypeFunction().implicitPointerConv(toDg.next); in implicitConvTo()
|
| H A D | expression.d | 3888 else if (to.ty == Tpointer && (tof = to.nextOf().isTypeFunction()) !is null) 3907 TypeFunction tf = fd.type.isTypeFunction(); 3961 auto tfx = fd.type.isTypeFunction(); 5102 auto tf = tb.isTypeFunction(); in isLvalue() 5126 if (auto tf = e1.type.isTypeFunction()) in addDtorHook() 5254 if (var.type.isTypeFunction()) in modifiableLvalue() 6966 functionToBufferWithIdent(fd.type.isTypeFunction(), &buf, funcStr, fd.isStatic); in resolveLoc()
|
| H A D | mtype.h | 335 TypeFunction *isTypeFunction();
|
| H A D | doc.d | 298 TypeFunction tf = a.dim == 1 ? isTypeFunction(s) : null; in write() 335 TypeFunction tf = isTypeFunction(member); in isCVariadicParameter() 2647 private TypeFunction isTypeFunction(Dsymbol s) in isTypeFunction() function 2665 TypeFunction tf = isTypeFunction(s); in isFunctionParameter()
|
| H A D | dcast.d | 843 auto tf = (e.f ? e.f.type : e.e1.type).toBasetype().isTypeFunction(); in implicitConvTo() 1206 TypeFunction tf = fd.type.isTypeFunction(); in implicitConvTo() 3007 TypeFunction tf1 = t1n.isTypeFunction(); in typeMerge() 3008 TypeFunction tf2 = t2n.isTypeFunction(); in typeMerge()
|
| H A D | func.d | 558 if (auto tf = type.isTypeFunction()) in declareThis() 2625 TypeFunction fdtype = type.isTypeFunction(); in getParameterList() 3250 auto tf = fd.type.isTypeFunction(); in resolveFuncCall()
|
| H A D | typesem.d | 509 if (auto tf = t.isTypeFunction()) in stripDefaultArgs() 515 TypeFunction tr = tf.copy().isTypeFunction(); in stripDefaultArgs() 2233 case Tfunction: return visitFunction(type.isTypeFunction()); in typeSemantic() 4802 case Tfunction: return visitFunction(mt.isTypeFunction());
|
| H A D | dsymbolsem.d | 802 if (fd.type.isTypeFunction().iswild) in visit() 3060 if (auto tf = fd.type.isTypeFunction()) in funcDeclarationSemantic() 3079 if (auto tjf = tj.isTypeFunction()) in funcDeclarationSemantic() 3246 auto fn = fnext.type.isTypeFunction(); in funcDeclarationSemantic() 6093 if (auto tf = fd.type.isTypeFunction()) in templateInstanceSemantic()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | doc.c | 114 TypeFunction *isTypeFunction(Dsymbol *s); 129 TypeFunction *tf = isTypeFunction((*a)[i]); in isCVariadicParameter() 140 TypeFunction *tf = isTypeFunction(s); in isFunctionParameter() 1733 TypeFunction *tf = a->dim == 1 ? isTypeFunction(s) : NULL; in write() 2139 TypeFunction *isTypeFunction(Dsymbol *s) in isTypeFunction() function
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | Wasm.h | 51 bool isTypeFunction() const { in isTypeFunction() function
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | d-codegen.cc | 2047 if (fd->type->isTypeFunction ()->trust == TRUST::safe) in array_bounds_check() 2088 tf = t->isTypeFunction (); in get_function_type() 2090 tf = t->isTypeDelegate ()->next->isTypeFunction (); in get_function_type()
|
| H A D | d-builtins.cc | 539 TypeFunction *tf = t ? t->isTypeFunction () : NULL; in d_build_builtins_module()
|
| H A D | typeinfo.cc | 764 TypeFunction *ti = d->tinfo->isTypeFunction (); in visit()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 1250 return Index < Symbols.size() && Symbols[Index].isTypeFunction(); in isValidFunctionSymbol() 1474 if (Sym.isTypeFunction()) in getSymbolFlags()
|