Home
last modified time | relevance | path

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

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