Home
last modified time | relevance | path

Searched refs:TOKin (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtokens.h136 TOKdebug, TOKdeprecated, TOKin, TOKout, TOKinout, TOKlazy, enumerator
H A Dsideeffect.c170 case TOKin: in lambdaHasSideEffect()
H A Dparse.c593 (tk->value == TOKlparen || tk->value == TOKlcurly || tk->value == TOKin || in parseDeclDefs()
2020 case TOKin: stc = STCin; goto L2; in parseParameters()
2756 if (tok != TOKis && tok != TOKin) in parseTemplateArguments()
2765 if (token.value == TOKnot && (tok = peekNext()) != TOKis && tok != TOKin) in parseTemplateArguments()
3938 … (tk->value == TOKlparen || tk->value == TOKlcurly || tk->value == TOKin || tk->value == TOKout || in parseDeclarations()
4367 case TOKin: in parseContracts()
6334 case TOKin: in isDeclarator()
6377 case TOKin: in isParameters()
6722 if (token.value == TOKnot && (save = peekNext()) != TOKis && save != TOKin) in parsePrimaryExp()
7219 if (token.value == TOKnot && peekNext() != TOKis && peekNext() != TOKin) in parsePostExp()
[all …]
H A Dtokens.c295 { "in", TOKin },
H A Dhdrgen.c3288 { STCin, TOKin, NULL }, in stcToChars()
H A Dexpression.c6503 : BinExp(loc, TOKin, sizeof(InExp), e1, e2) in InExp()