| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| semantic3.d | 277 funcdecl.fbody = null; // remove fbody which contains the error 296 if (!funcdecl.fbody && funcdecl.inferRetType && !f.next) 310 if (funcdecl.fbody || funcdecl.frequires || needEnsure) 554 if (!funcdecl.fbody) 580 if (funcdecl.fbody) 602 funcdecl.fbody = funcdecl.fbody.statementSemantic(sc2); 603 if (!funcdecl.fbody) 604 funcdecl.fbody = new CompoundStatement(Loc.initial, new Statements()) [all...] |
| clone.d | 110 const errors = global.startGagging(); // Do not report errors, even if the template opAssign fbody makes it. 370 fop.fbody = new CompoundStatement(loc, s1, s2); 376 const errors = global.startGagging(); // Do not report errors, even if the template opAssign fbody makes it. 390 fop.fbody = null; // remove fbody which contains the error 468 const errors = global.startGagging(); // Do not report errors, even if the template opAssign fbody makes it 586 fop.fbody = new ReturnStatement(loc, e); 710 fop.fbody = new ReturnStatement(loc, e); 839 fop.fbody = new CompileStatement(loc, new StringExp(loc, code)); 876 const bool dtorIsCppPrototype = ad.userDtors.dim && ad.userDtors[0]._linkage == LINK.cpp && !ad.userDtors[0].fbody; [all...] |
| target.h | 209 bool libraryObjectMonitors(FuncDeclaration *fd, Statement *fbody);
|
| target.d | 280 * fbody = entire function body of `fd` 284 extern (C++) bool libraryObjectMonitors(FuncDeclaration fd, Statement fbody);
|
| func.d | 262 Statement fbody; /// function body 393 f.fbody = fbody ? fbody.syntaxCopy() : null; 1252 return (visibility.kind == Visibility.Kind.export_) && !fbody; 1296 if (!fbody) 2215 * fbody.dsymbolSemantic() running, vresult.type might be modified. 2494 fd.fbody = frequire; 2537 fd.fbody = fensure; 3765 fbody.accept(w) [all...] |
| delegatize.d | 68 fld.fbody = s;
|
| transitivevisitor.d | 613 if (f.fbody) 615 f.fbody.accept(this); 836 AST.CompoundStatement cs = f.fbody.isCompoundStatement(); 837 AST.Statement s = !cs ? f.fbody : null;
|
| semantic2.d | 375 if (fd.fbody && fd.overnext && !fd.errors) 391 if (f2.fbody is null)
|
| lambdacomp.d | 166 ReturnStatement rs = fld.fbody.endsWithReturnStatement();
|
| dsymbolsem.d | 188 assert(!funcdecl.fbody); 3302 if (funcdecl.isAbstract() && funcdecl.fbody) 3378 if (funcdecl.fbody && funcdecl.isVirtual()) 3869 if (!funcdecl.fbody && !funcdecl.allowsContractWithoutBody()) 3929 if (funcdecl.fbody && sc._module.isRoot() && 3933 if (funcdecl.fbody && funcdecl.isMain() && sc._module.isRoot()) 4026 if (ctd.fbody || !(ctd.storage_class & STC.disable)) 4031 ctd.fbody = null; 4252 if (scd.fbody) 4253 sa.push(scd.fbody); [all...] |
| dsymbol.d | 2567 if (fd.fbody && fd2.fbody) 2570 if (fd.fbody) // fd is the definition
|
| parse.d | 2621 auto fbody = new AST.ExpStatement(loc, e); 2622 auto f = new AST.InvariantDeclaration(loc, token.loc, stc, null, fbody); 2628 auto fbody = parseStatement(ParseStatementFlags.curly); 2629 auto f = new AST.InvariantDeclaration(loc, token.loc, stc, null, fbody); 2671 f.fbody = sbody; 2703 f.fbody = null; 5042 fd.fbody = new AST.ReturnStatement(returnloc, ae); 5083 f.fbody = new AST.ReturnStatement(returnloc, parseExpression()); 5091 f.fbody = parseStatement(ParseStatementFlags.semi); 5110 f.fbody = parseStatement(ParseStatementFlags.curly) [all...] |
| hdrgen.d | 1541 if (!f.fbody) 1624 if (!f.fbody || (hgs.hdrgen && global.params.hdrStripPlainFunctions && !hgs.autoMember && !hgs.tpltMember)) 1626 if (!f.fbody && (f.fensures || f.frequires)) 1650 f.fbody.statementToBuffer(buf, hgs); 1685 CompoundStatement cs = f.fbody.isCompoundStatement(); 1692 s1 = !cs ? f.fbody : null; 1762 if(auto es = d.fbody.isExpStatement())
|
| cond.d | 198 fd.fbody = s;
|
| declaration.h | 535 Statement *fbody; member in class:FuncDeclaration
|
| ob.d | 56 //printf("fbody: %s\n", funcdecl.fbody.toChars()); 62 toObNodes(obstate.nodes, funcdecl.fbody); 1177 foreachExpAndVar(funcdecl.fbody, &dgExp, &dgVar);
|
| dinterpret.d | 644 e = interpret(pue, fd.fbody, &istatex); 2872 if (!e.member.fbody) 4923 if (!fd.fbody) 6942 assert(fd && fd.fbody); 7003 assert(fd && fd.fbody); 7305 if (pthis && !fd.fbody && fd.isCtorDeclaration() && fd.parent && fd.parent.parent && fd.parent.parent.ident == Id.object)
|
| dtemplate.d | 2782 if (fd.fbody && !m.lastf.fbody) 2784 if (!fd.fbody) 7999 if (!f || !f.fbody || f.needThis())
|
| initsem.d | 258 fd.fbody = new CompoundStatement(i.loc, new Statements());
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/ |
| typecons.d | 314 enum fbody = "_wrap_source."~name; 316 enum fbody = "_wrap_source."~name~" = a1"; 320 enum fbody = "_wrap_source."~name~"("~args!(Parameters!(TargetMembers[i].type).length)~")"; 324 "{ return "~fbody~"; }";
|
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| decl.cc | 153 if (decl->fbody) 527 if (!fd || (!fd->fbody && d->isAbstract ())) 630 if (fd && (fd->fbody || !d->isAbstract ())) 960 if (!d->fbody) 1113 if (!fd->fbody) 1253 if (fd->fbody)
|
| intrinsics.cc | 139 if (!decl->fbody)
|
| d-builtins.cc | 697 else if (fd && !fd->fbody)
|
| toir.cc | 1504 v.build_stmt (fd->fbody);
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| typecons.d | 5648 enum fbody = Policy.generateFunctionBody!(name, func); 5650 enum fbody = Policy.generateFunctionBody!(func); 5653 code ~= fbody; 6013 enum fbody = "_wrap_source."~name; 6015 enum fbody = "_wrap_source."~name~" = forward!args"; 6019 enum fbody = "_wrap_source."~name~"(forward!args)"; 6024 "{ return "~fbody~"; }";
|