HomeSort by: relevance | last modified time | path
    Searched refs:visitTypeBegin (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeRecordMapping.h 29 using TypeVisitorCallbacks::visitTypeBegin;
30 Error visitTypeBegin(CVType &Record) override;
31 Error visitTypeBegin(CVType &Record, TypeIndex Index) override;
TypeVisitorCallbackPipeline.h 41 Error visitTypeBegin(CVType &Record) override {
43 if (auto EC = Visitor->visitTypeBegin(Record))
49 Error visitTypeBegin(CVType &Record, TypeIndex Index) override {
51 if (auto EC = Visitor->visitTypeBegin(Record, Index))
TypeVisitorCallbacks.h 25 /// including the fixed-length record prefix. visitTypeBegin() should return
27 /// one of the two visitTypeBegin methods will be called, depending on whether
31 virtual Error visitTypeBegin(CVType &Record) { return Error::success(); }
32 virtual Error visitTypeBegin(CVType &Record, TypeIndex Index) {
TypeDumpVisitor.h 48 Error visitTypeBegin(CVType &Record) override;
49 Error visitTypeBegin(CVType &Record, TypeIndex Index) override;
TypeDeserializer.h 45 if (auto EC = I.Mapping.visitTypeBegin(CVT))
67 Error visitTypeBegin(CVType &Record) override {
70 return Mapping->Mapping.visitTypeBegin(Record);
73 Error visitTypeBegin(CVType &Record, TypeIndex Index) override {
74 return visitTypeBegin(Record);
116 consumeError(Mapping.Mapping.visitTypeBegin(FieldList));
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
SimpleTypeSerializer.cpp 46 cantFail(Mapping.visitTypeBegin(CVT));
RecordName.cpp 38 Error visitTypeBegin(CVType &Record) override;
39 Error visitTypeBegin(CVType &Record, TypeIndex Index) override;
50 Error TypeNameComputer::visitTypeBegin(CVType &Record) {
51 llvm_unreachable("Must call visitTypeBegin with a TypeIndex!");
55 Error TypeNameComputer::visitTypeBegin(CVType &Record, TypeIndex Index) {
CVTypeVisitor.cpp 124 if (auto EC = Callbacks.visitTypeBegin(Record, Index))
131 if (auto EC = Callbacks.visitTypeBegin(Record))
ContinuationRecordBuilder.cpp 72 cantFail(Mapping.visitTypeBegin(Type));
TypeDumpVisitor.cpp 169 Error TypeDumpVisitor::visitTypeBegin(CVType &Record) {
170 return visitTypeBegin(Record, TypeIndex::fromArrayIndex(TpiTypes.size()));
173 Error TypeDumpVisitor::visitTypeBegin(CVType &Record, TypeIndex Index) {
TypeRecordMapping.cpp 212 Error TypeRecordMapping::visitTypeBegin(CVType &CVR) {
237 Error TypeRecordMapping::visitTypeBegin(CVType &CVR, TypeIndex Index) {
241 return visitTypeBegin(CVR);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.h 37 Error visitTypeBegin(codeview::CVType &Record,
MinimalTypeDumper.cpp 221 Error MinimalTypeDumpVisitor::visitTypeBegin(CVType &Record, TypeIndex Index) {

Completed in 27 milliseconds