Home
last modified time | relevance | path

Searched refs:DeclOffsets (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h458 const DeclOffset *DeclOffsets = nullptr; variable
H A DASTWriter.h247 std::vector<serialization::DeclOffset> DeclOffsets; variable
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp3071 if (DeclOffsets.size() == Index) in WriteDecl()
3072 DeclOffsets.emplace_back(RawLoc, Offset, DeclTypesBlockStartOffset); in WriteDecl()
3073 else if (DeclOffsets.size() < Index) { in WriteDecl()
3075 DeclOffsets.resize(Index+1); in WriteDecl()
3076 DeclOffsets[Index].setRawLoc(RawLoc); in WriteDecl()
3077 DeclOffsets[Index].setBitOffset(Offset, DeclTypesBlockStartOffset); in WriteDecl()
H A DASTWriter.cpp3463 RecordData::value_type Record[] = {DECL_OFFSET, DeclOffsets.size()}; in WriteTypeDeclOffsets()
3464 Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record, bytes(DeclOffsets)); in WriteTypeDeclOffsets()
H A DASTReaderDecl.cpp3272 const DeclOffset &DOffs = M->DeclOffsets[LocalDeclIndex]; in DeclCursorForID()
H A DASTReader.cpp3635 F.DeclOffsets = (const DeclOffset *)Blob.data(); in ReadASTBlock()