Home
last modified time | relevance | path

Searched refs:DeprecatedDeclaration (Results 1 – 22 of 22) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dattrib.c437 DeprecatedDeclaration::DeprecatedDeclaration(Expression *msg, Dsymbols *decl) in DeprecatedDeclaration() function
444 Dsymbol *DeprecatedDeclaration::syntaxCopy(Dsymbol *s) in syntaxCopy()
447 return new DeprecatedDeclaration(msg->syntaxCopy(), Dsymbol::arraySyntaxCopy(decl)); in syntaxCopy()
459 Scope *DeprecatedDeclaration::newScope(Scope *sc) in newScope()
469 void DeprecatedDeclaration::setScope(Scope *sc) in setScope()
487 void DeprecatedDeclaration::semantic2(Scope *sc) in semantic2()
493 const char *DeprecatedDeclaration::getMessage() in getMessage()
H A Dattrib.h71 class DeprecatedDeclaration : public StorageClassDeclaration
77 DeprecatedDeclaration(Expression *msg, Dsymbols *decl);
H A Dscope.h116 DeprecatedDeclaration *depdecl; // customized deprecation message
H A Ddsymbol.h162 DeprecatedDeclaration *depdecl; // customized deprecation message
H A Dvisitor.h99 class DeprecatedDeclaration; variable
393 virtual void visit(DeprecatedDeclaration *s) { visit((StorageClassDeclaration *)s); } in visit()
H A Dstatement.c409 void visit(DeprecatedDeclaration *d) { result = visitMembers(d->loc, d->decl); } in toStatement()
H A Dhdrgen.c1256 void visit(DeprecatedDeclaration *d) in visit()
H A Dparse.c647 s = new DeprecatedDeclaration(pAttrs->depmsg, a); in parseDeclDefs()
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dattrib.h59 class DeprecatedDeclaration : public StorageClassDeclaration
65 DeprecatedDeclaration *syntaxCopy(Dsymbol *s);
H A Dscope.h119 DeprecatedDeclaration *depdecl; // customized deprecation message
H A Ddenum.d280 StorageClass stc, UserAttributeDeclaration uad, DeprecatedDeclaration dd) in this()
H A Dattrib.d337 extern (C++) final class DeprecatedDeclaration : StorageClassDeclaration
348 override DeprecatedDeclaration syntaxCopy(Dsymbol s) in syntaxCopy()
351 return new DeprecatedDeclaration(msg.syntaxCopy(), Dsymbol.arraySyntaxCopy(decl)); in syntaxCopy()
H A Ddsymbol.h184 DeprecatedDeclaration *depdecl; // customized deprecation message
H A Dvisitor.h102 class DeprecatedDeclaration; variable
379 virtual void visit(DeprecatedDeclaration *s) { visit((StorageClassDeclaration *)s); } in visit()
H A Ddscope.d133 DeprecatedDeclaration depdecl; /// customized deprecation message
H A Dsemantic2.d542 override void visit(DeprecatedDeclaration dd) in visit()
H A Dparsetimevisitor.d84 void visit(AST.DeprecatedDeclaration s) { visit(cast(AST.StorageClassDeclaration)s); } in ParseTimeVisitor()
H A Dtransitivevisitor.d526 override void visit(AST.DeprecatedDeclaration d) in ParseVisitMethods()
H A Ddsymbol.d255 DeprecatedDeclaration depdecl; // customized deprecation message
H A Dparse.d754 s = new AST.DeprecatedDeclaration(pAttrs.depmsg, a);
3138 AST.DeprecatedDeclaration dd; in parseEnum()
3141 dd = new AST.DeprecatedDeclaration(deprecationMessage, null); in parseEnum()
H A Dhdrgen.d955 override void visit(DeprecatedDeclaration d) in visit()
H A Ddsymbolsem.d164 const(char)* getMessage(DeprecatedDeclaration dd) in getMessage()