Home | History | Annotate | Download | only in CodeView

Lines Matching refs:Error

14 #include "llvm/Support/Error.h"
26 virtual Error visitUnknownType(CVType &Record) { return Error::success(); }
29 /// the type of the Record, or an error if it cannot be determined.
30 virtual Error visitTypeBegin(CVType &Record) { return Error::success(); }
31 virtual Error visitTypeEnd(CVType &Record) { return Error::success(); }
33 virtual Error visitUnknownMember(CVMemberRecord &Record) {
34 return Error::success();
37 virtual Error visitMemberBegin(CVMemberRecord &Record) {
38 return Error::success();
41 virtual Error visitMemberEnd(CVMemberRecord &Record) {
42 return Error::success();
46 virtual Error visitKnownRecord(CVType &CVR, Name##Record &Record) { \
47 return Error::success(); \
50 virtual Error visitKnownMember(CVMemberRecord &CVM, Name##Record &Record) { \
51 return Error::success(); \