Lines Matching refs:Contents
365 StringRef &Contents) { in handleCompressedSection() argument
372 if (!consumeCompressedDebugSectionHeader(Contents, OriginalSize) || in handleCompressedSection()
373 zlib::uncompress(Contents, UncompressedSections.back(), OriginalSize) != in handleCompressedSection()
379 Contents = UncompressedSections.back(); in handleCompressedSection()
406 StringRef Contents; in handleSection() local
407 if (auto Err = Section.getContents(Contents)) in handleSection()
410 if (auto Err = handleCompressedSection(UncompressedSections, Name, Contents)) in handleSection()
422 (CurEntry.Contributions[Index].Length = Contents.size()); in handleSection()
427 InfoSection = Contents; in handleSection()
430 AbbrevSection = Contents; in handleSection()
439 CurStrOffsetSection = Contents; in handleSection()
441 CurStrSection = Contents; in handleSection()
443 CurTypesSection.push_back(Contents); in handleSection()
445 CurCUIndexSection = Contents; in handleSection()
447 CurTUIndexSection = Contents; in handleSection()
450 Out.EmitBytes(Contents); in handleSection()