Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dtokens.h93 TOKassign, TOKnot, TOKtilde, enumerator
H A Dparse.c2677 if (token.value == TOKnot) in parseMixin()
2753 if (token.value == TOKnot) in parseTemplateArguments()
2765 if (token.value == TOKnot && (tok = peekNext()) != TOKis && tok != TOKin) in parseTemplateArguments()
3125 if (token.value == TOKnot) in parseBasicType()
3266 if (token.value == TOKnot) in parseBasicTypeStartingAt()
4971 case TOKnot: in parseStatement()
5992 if (t->value == TOKnot) in isBasicType()
6009 if (t->value != TOKnot) in isBasicType()
6632 if (t->value == TOKnot) in skipAttributes()
6722 if (token.value == TOKnot && (save = peekNext()) != TOKis && save != TOKin) in parsePrimaryExp()
[all …]
H A Dtokens.c400 Token::tochars[TOKnot] = "!"; in TokenInitializer()
H A Dlexer.c821 t->value = TOKnot; // ! in scan()
H A Ddinterpret.c2929 case TOKnot: *pue = Not(e->type, e1); break; in visit()
4285 while (e->op == TOKnot) in isPointerCmpExp()
4449 while (ex->op == TOKnot) in interpretFourPointerRelation()
H A Dexpression.c5722 : UnaExp(loc, TOKnot, sizeof(NotExp), e) in NotExp()