Home
last modified time | relevance | path

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

/dports/lang/gcc9/gcc-9.4.0/gcc/d/dmd/
H A Dstatement.h103 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
491 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/devel/avr-gcc/gcc-10.2.0/gcc/d/dmd/
H A Dstatement.h103 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
490 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/d/dmd/
H A Dstatement.h103 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
490 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/d/dmd/
H A Dstatement.h103 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
491 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/lang/gcc10/gcc-10.3.0/gcc/d/dmd/
H A Dstatement.h103 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
490 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/d/dmd/
H A Dstatement.h103 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
491 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/d/dmd/
H A Dstatement.h112 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
500 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/d/dmd/
H A Dstatement.h112 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
500 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/lang/gcc11/gcc-11.2.0/gcc/d/dmd/
H A Dstatement.h112 virtual GotoDefaultStatement *isGotoDefaultStatement() { return NULL; } in isGotoDefaultStatement() function
500 GotoDefaultStatement *isGotoDefaultStatement() { return this; } in isGotoDefaultStatement() function
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/d/dmd/
H A Dstatement.h140 …GotoDefaultStatement *isGotoDefaultStatement() { return stmt == STMTgotoDefault ? (GotoDefaultStat… in isGotoDefaultStatement() function
H A Dstatement.d375 …inout(GotoDefaultStatement) isGotoDefaultStatement() { return stmt == STMT.GotoDefault ? cast(type… in isGotoDefaultStatement() function
H A Dob.d813 case STMT.GotoDefault: visitGotoDefault(s.isGotoDefaultStatement()); break; in toObNodes()