Lines Matching refs:ByteData
37 if (byte_datum.GetType() == ByteData::kAscii0) { in GetByteDataValues()
48 hex_string += ByteData::Byte2Hex((size >> 8) & 0xFF); in AddMarkerAndSize()
49 hex_string += ByteData::Byte2Hex(size & 0xFF); in AddMarkerAndSize()
51 byte_data_.emplace_back(ByteData::kHex, hex_string); in AddMarkerAndSize()
60 byte_data_.emplace_back(ByteData::kHex, hex_string); in AddMarkerAndSizePlaceholder()
68 const ByteData& byte_datum = byte_data_[index]; in ReplaceSizePlaceholder()
69 if (byte_datum.GetType() != ByteData::kHex) { in ReplaceSizePlaceholder()
77 if (!ByteData::Hex2Byte(value[0], value[1], &flag) || in ReplaceSizePlaceholder()
78 !ByteData::Hex2Byte(value[2], value[3], &type)) { in ReplaceSizePlaceholder()
86 value.replace(2, 2, ByteData::Byte2Hex((size >> 8) & 0xFF)); in ReplaceSizePlaceholder()
87 value.replace(4, 2, ByteData::Byte2Hex(size & 0xFF)); in ReplaceSizePlaceholder()
88 byte_data_[index] = ByteData(ByteData::kHex, value); in ReplaceSizePlaceholder()
95 byte_data_.emplace_back(ByteData::kAscii0, kXmpExtendedId); in AddExtendedXmpHeader()
96 byte_data_.emplace_back(ByteData::kAscii, guid_value); in AddExtendedXmpHeader()
97 byte_data_.emplace_back(ByteData::kAscii, string(8, '0')); in AddExtendedXmpHeader()
101 byte_data_.emplace_back(ByteData::kAscii, kXmpMetaPrefix); in AddXmpMetaPrefix()
105 byte_data_.emplace_back(ByteData::kAscii, kXmpMetaSuffix); in AddXmpMetaSuffix()
109 byte_data_.emplace_back(ByteData::kAscii, kRdfPrefix); in AddRdfPrefix()
113 byte_data_.emplace_back(ByteData::kAscii, kRdfSuffix); in AddRdfSuffix()
117 byte_data_.emplace_back(ByteData::kAscii, kRdfDescriptionPrefix); in AddRdfDescriptionPrefix()
121 byte_data_.emplace_back(ByteData::kAscii, kRdfDescriptionSuffix); in AddRdfDescriptionSuffix()
127 byte_data_.emplace_back(ByteData::kAscii, property_name_equals_quote); in AddXmpPropertyPrefix()
131 byte_data_.emplace_back(ByteData::kAscii, "\""); in AddXmpPropertySuffix()
137 byte_data_.emplace_back(ByteData::kAscii, property_value); in AddXmpPropertyNameAndValue()