Lines Matching refs:Error
19 Error CodeViewRecordIO::beginRecord(Optional<uint32_t> MaxLength) { in beginRecord()
24 return Error::success(); in beginRecord()
27 Error CodeViewRecordIO::endRecord() { in endRecord()
38 return Error::success(); in endRecord()
60 Error CodeViewRecordIO::padToAlignment(uint32_t Align) { in padToAlignment()
66 Error CodeViewRecordIO::skipPadding() { in skipPadding()
70 return Error::success(); in skipPadding()
74 return Error::success(); in skipPadding()
81 Error CodeViewRecordIO::mapByteVectorTail(ArrayRef<uint8_t> &Bytes) { in mapByteVectorTail()
89 return Error::success(); in mapByteVectorTail()
92 Error CodeViewRecordIO::mapByteVectorTail(std::vector<uint8_t> &Bytes) { in mapByteVectorTail()
99 return Error::success(); in mapByteVectorTail()
102 Error CodeViewRecordIO::mapInteger(TypeIndex &TypeInd) { in mapInteger()
106 return Error::success(); in mapInteger()
113 return Error::success(); in mapInteger()
116 Error CodeViewRecordIO::mapEncodedInteger(int64_t &Value) { in mapEncodedInteger()
132 return Error::success(); in mapEncodedInteger()
135 Error CodeViewRecordIO::mapEncodedInteger(uint64_t &Value) { in mapEncodedInteger()
145 return Error::success(); in mapEncodedInteger()
148 Error CodeViewRecordIO::mapEncodedInteger(APSInt &Value) { in mapEncodedInteger()
158 Error CodeViewRecordIO::mapStringZ(StringRef &Value) { in mapStringZ()
168 return Error::success(); in mapStringZ()
171 Error CodeViewRecordIO::mapGuid(GUID &Guid) { in mapGuid()
185 return Error::success(); in mapGuid()
188 Error CodeViewRecordIO::mapStringZVectorZ(std::vector<StringRef> &Value) { in mapStringZVectorZ()
206 return Error::success(); in mapStringZVectorZ()
209 Error CodeViewRecordIO::writeEncodedSignedInteger(const int64_t &Value) { in writeEncodedSignedInteger()
232 return Error::success(); in writeEncodedSignedInteger()
235 Error CodeViewRecordIO::writeEncodedUnsignedInteger(const uint64_t &Value) { in writeEncodedUnsignedInteger()
256 return Error::success(); in writeEncodedUnsignedInteger()