Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h456 const DeclOffset *DeclOffsets = nullptr; variable
H A DASTWriter.h216 std::vector<serialization::DeclOffset> DeclOffsets; variable
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp2743 if (DeclOffsets.size() == Index) in WriteDecl()
2744 DeclOffsets.emplace_back(getAdjustedLocation(Loc), Offset, in WriteDecl()
2746 else if (DeclOffsets.size() < Index) { in WriteDecl()
2748 DeclOffsets.resize(Index+1); in WriteDecl()
2749 DeclOffsets[Index].setLocation(getAdjustedLocation(Loc)); in WriteDecl()
2750 DeclOffsets[Index].setBitOffset(Offset, DeclTypesBlockStartOffset); in WriteDecl()
H A DASTWriter.cpp3215 RecordData::value_type Record[] = {DECL_OFFSET, DeclOffsets.size(), in WriteTypeDeclOffsets()
3217 Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record, bytes(DeclOffsets)); in WriteTypeDeclOffsets()
H A DASTReaderDecl.cpp3248 M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS]; in DeclCursorForID()
H A DASTReader.cpp3371 F.DeclOffsets = (const DeclOffset *)Blob.data(); in ReadASTBlock()