Home | History | Annotate | Download | only in CodeView

Lines Matching refs:Error

14 #include "llvm/Support/Error.h"
24 virtual Error visitUnknownType(CVType &Record) { return Error::success(); }
27 /// the type of the Record, or an error if it cannot be determined. Exactly
32 virtual Error visitTypeBegin(CVType &Record) { return Error::success(); }
33 virtual Error visitTypeBegin(CVType &Record, TypeIndex Index) {
34 return Error::success();
36 virtual Error visitTypeEnd(CVType &Record) { return Error::success(); }
38 virtual Error visitUnknownMember(CVMemberRecord &Record) {
39 return Error::success();
42 virtual Error visitMemberBegin(CVMemberRecord &Record) {
43 return Error::success();
46 virtual Error visitMemberEnd(CVMemberRecord &Record) {
47 return Error::success();
51 virtual Error visitKnownRecord(CVType &CVR, Name##Record &Record) { \
52 return Error::success(); \
55 virtual Error visitKnownMember(CVMemberRecord &CVM, Name##Record &Record) { \
56 return Error::success(); \