Home
last modified time | relevance | path

Searched refs:StaticIfCondition (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dcond.h90 class StaticIfCondition : public Condition
95 StaticIfCondition *syntaxCopy();
H A Dcond.d894 extern (C++) final class StaticIfCondition : Condition
904 override StaticIfCondition syntaxCopy() in syntaxCopy()
906 return new StaticIfCondition(loc, exp.syntaxCopy()); in syntaxCopy()
H A Dvisitor.h310 class StaticIfCondition; variable
576 virtual void visit(StaticIfCondition *c) { visit((Condition *)c); } in visit()
H A Dparsetimevisitor.d286 void visit(AST.StaticIfCondition c) { visit(cast(AST.Condition)c); } in ParseTimeVisitor()
H A Dtransitivevisitor.d1189 override void visit(AST.StaticIfCondition c) in ParseVisitMethods()
H A Dhdrgen.d2792 override void visit(StaticIfCondition c) in visit()
H A Dparse.d2304 condition = new AST.StaticIfCondition(loc, exp); in parseStaticIfCondition()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dcond.h103 class StaticIfCondition : public Condition
108 StaticIfCondition(Loc loc, Expression *exp);
H A Dcond.c701 StaticIfCondition::StaticIfCondition(Loc loc, Expression *exp) in StaticIfCondition() function
707 Condition *StaticIfCondition::syntaxCopy() in syntaxCopy()
709 return new StaticIfCondition(loc, exp->syntaxCopy()); in syntaxCopy()
712 int StaticIfCondition::include(Scope *sc, ScopeDsymbol *sds) in include()
H A Dvisitor.h301 class StaticIfCondition; variable
595 virtual void visit(StaticIfCondition *c) { visit((Condition *)c); } in visit()
H A Dhdrgen.c3090 void visit(StaticIfCondition *c) in visit()
H A Dparse.c1548 condition = new StaticIfCondition(loc, exp); in parseStaticIfCondition()