23 void yaml::ScalarTraits<yaml::BinaryRef>::output(
30 if (Scalar.
size() % 2 != 0)
31 return "BinaryRef hex string must contain an even number of nybbles.";
34 for (
unsigned I = 0,
N = Scalar.
size();
I !=
N; ++
I)
35 if (!isxdigit(Scalar[
I]))
36 return "BinaryRef hex string must contain only hex digits.";
42 if (!DataIsHexString) {
46 for (
unsigned I = 0,
N = Data.
size();
I !=
N;
I += 2) {
56 if (DataIsHexString) {
60 for (uint8_t Byte : Data)
61 OS << hexdigit(Byte >> 4) <<
hexdigit(Byte & 0xf);
This class represents lattice values for constants.
LLVM_NODISCARD LLVM_ATTRIBUTE_ALWAYS_INLINE size_t size() const
size - Get the string size.
char hexdigit(unsigned X, bool LowerCase=false)
hexdigit - Return the hexadecimal character for the given number X (which should be less than 16)...
size_t size() const
size - Get the array size.
void writeAsBinary(raw_ostream &OS) const
Write the contents (regardless of whether it is binary or a hex string) as binary to the given raw_os...
raw_ostream & write(unsigned char C)
ArrayRef< uint8_t >::size_type binary_size() const
The number of bytes that are represented by this BinaryRef.
std::enable_if< std::numeric_limits< T >::is_signed, bool >::type getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
Specialized YAMLIO scalar type for representing a binary blob.
This class implements an extremely fast bulk output stream that can only output to a stream...
StringRef - Represent a constant reference to a string, i.e.
void writeAsHex(raw_ostream &OS) const
Write the contents (regardless of whether it is binary or a hex string) as hex to the given raw_ostre...