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

References

tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
  576   EXPECT_TRUE(cstring.segmentName.equals("__TEXT"));
  577   EXPECT_TRUE(cstring.sectionName.equals("__cstring"));
  578   EXPECT_EQ(cstring.type, S_CSTRING_LITERALS);
  579   EXPECT_EQ(cstring.attributes, SectionAttr(0));
  580   EXPECT_EQ((uint16_t)cstring.alignment, 1U);
  581   EXPECT_EQ(cstring.address, Hex64(0x02A));
  582   EXPECT_EQ(cstring.content.size(), 7UL);
  583   EXPECT_EQ((int)(cstring.content[0]), 0x68);
  584   EXPECT_EQ((int)(cstring.content[1]), 0x65);
  585   EXPECT_EQ((int)(cstring.content[2]), 0x6c);
  586   EXPECT_TRUE(cstring.indirectSymbols.empty());
  587   EXPECT_TRUE(cstring.relocations.empty());