reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
  300   EXPECT_TRUE(cstring.segmentName.equals("__TEXT"));
  301   EXPECT_TRUE(cstring.sectionName.equals("__cstring"));
  302   EXPECT_EQ(cstring.type, S_CSTRING_LITERALS);
  303   EXPECT_EQ(cstring.attributes, SectionAttr(0));
  304   EXPECT_EQ((uint16_t)cstring.alignment, 1U);
  305   EXPECT_EQ(cstring.address, Hex64(0x02D));
  306   EXPECT_EQ(cstring.content.size(), 7UL);
  307   EXPECT_EQ((int)(cstring.content[0]), 0x68);
  308   EXPECT_EQ((int)(cstring.content[1]), 0x65);
  309   EXPECT_EQ((int)(cstring.content[2]), 0x6c);
  310   EXPECT_TRUE(cstring.indirectSymbols.empty());
  311   EXPECT_TRUE(cstring.relocations.empty());