Home | History | Annotate | Download | only in MC

Lines Matching refs:Contents

504 /// \brief Write the contents of a fragment to the given object writer. Expects
667 // Check that contents are only things legal inside a virtual section.
673 // Check that we aren't trying to write a non-zero contents (or fixups)
675 // directives to fill the contents of virtual sections.
1025 OS << " Contents:[";
1026 const SmallVectorImpl<char> &Contents = DF->getContents();
1027 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
1029 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
1031 OS << "] (" << Contents.size() << " bytes)";
1049 OS << " Contents:[";
1050 const SmallVectorImpl<char> &Contents = CEIF->getContents();
1051 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
1053 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
1055 OS << "] (" << Contents.size() << " bytes)";