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.h452 const DeclOffset *DeclOffsets = nullptr; variable
H A DASTWriter.h238 std::vector<serialization::DeclOffset> DeclOffsets; variable
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp2830 if (DeclOffsets.size() == Index) in WriteDecl()
2831 DeclOffsets.emplace_back(RawLoc, Offset, DeclTypesBlockStartOffset); in WriteDecl()
2832 else if (DeclOffsets.size() < Index) { in WriteDecl()
2834 DeclOffsets.resize(Index+1); in WriteDecl()
2835 DeclOffsets[Index].setRawLoc(RawLoc); in WriteDecl()
2836 DeclOffsets[Index].setBitOffset(Offset, DeclTypesBlockStartOffset); in WriteDecl()
H A DASTWriter.cpp3376 RecordData::value_type Record[] = {DECL_OFFSET, DeclOffsets.size()}; in WriteTypeDeclOffsets()
3377 Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record, bytes(DeclOffsets)); in WriteTypeDeclOffsets()
H A DASTReaderDecl.cpp3224 const DeclOffset &DOffs = M->DeclOffsets[LocalDeclIndex]; in DeclCursorForID()
H A DASTReader.cpp3412 F.DeclOffsets = (const DeclOffset *)Blob.data(); in ReadASTBlock()