Searched refs:unsvalue (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | lexer.d | 333 t.unsvalue = 0; in scan() 342 t.unsvalue = *p - '0'; in scan() 354 t.unsvalue = p[1]; // simple one character literal in scan() 549 t.unsvalue = global.versionNumber(); in scan() 1725 t.unsvalue = escapeSequence(); in charConstant() 1730 t.unsvalue = escapeSequence(); in charConstant() 1734 t.unsvalue = escapeSequence(); in charConstant() 1751 t.unsvalue = '?'; in charConstant() 1766 t.unsvalue = c; in charConstant() 1794 t.unsvalue = '?'; in charConstant() [all …]
|
| H A D | tokens.d | 638 uinteger_t unsvalue; member 951 sprintf(&buffer[0], "%uU", cast(uint)unsvalue); in toChars() 967 sprintf(&buffer[0], "%lluUL", cast(ulong)unsvalue); in toChars()
|
| H A D | tokens.h | 462 uinteger_t unsvalue; member
|
| H A D | parse.d | 2180 s = new AST.DebugSymbol(token.loc, cast(uint)token.unsvalue); in parseDebugSpecification() 2209 level = cast(uint)token.unsvalue; in parseDebugCondition() 2229 s = new AST.VersionSymbol(token.loc, cast(uint)token.unsvalue); in parseVersionSpecification() 2263 level = cast(uint)token.unsvalue; in parseVersionCondition() 7898 e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tuns32); in parsePrimaryExp() 7908 e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tuns64); in parsePrimaryExp() 7996 e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tchar); in parsePrimaryExp() 8001 e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.twchar); in parsePrimaryExp() 8006 e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tdchar); in parsePrimaryExp()
|
| H A D | cparse.d | 684 e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tuns32); in cparsePrimaryExp() 694 e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tuns64); in cparsePrimaryExp() 4906 const n = t.unsvalue; in pragmaPack()
|