Home
last modified time | relevance | path

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

/llvm-project/llvm/unittests/FileCheck/
H A DFileCheckTest.cpp98 bool AllowUpperHex; member
118 AllowUpperHex = Kind == ExpressionFormat::Kind::HexUpper; in SetUp()
133 MaxUint64Str = AllowUpperHex ? "FFFFFFFFFFFFFFFF" : "ffffffffffffffff"; in SetUp()
134 MaxInt64Str = AllowUpperHex ? "7FFFFFFFFFFFFFFF" : "7fffffffffffffff"; in SetUp()
135 TenStr = AllowUpperHex ? "A" : "a"; in SetUp()
136 FifteenStr = AllowUpperHex ? "F" : "f"; in SetUp()
137 AcceptedHexOnlyDigits = AllowUpperHex ? "ABCDEF" : "abcdef"; in SetUp()
138 RefusedHexOnlyDigits = AllowUpperHex ? "abcdef" : "ABCDEF"; in SetUp()