Searched refs:HexadecimalUnsignedLong (Results 1 – 2 of 2) sorted by relevance
79 public static readonly Parser<ulong> HexadecimalUnsignedLong = field in Antmicro.Renode.PlatformDescription.Syntax.Grammar82 …public static readonly Parser<uint> HexadecimalUnsignedInt = HexadecimalUnsignedLong.Select(x => (…83 … public static readonly Parser<int> HexadecimalInt = HexadecimalUnsignedLong.Select(x => (int)x);163 from begin in HexadecimalUnsignedLong.Or(DecimalUnsignedLong)166 …from end in HexadecimalUnsignedLong.Or(DecimalUnsignedLong).Select(x => plus.IsEmpty ? x : begin +…
26 var result = Grammar.HexadecimalUnsignedLong(input); in ShouldParseHexadecimalLong()