reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
540 EXPECT_TRUE(sect1.segmentName.equals("__TEXT")); 541 EXPECT_TRUE(sect1.sectionName.equals("__text")); 542 EXPECT_EQ((uint32_t)(sect1.type), (uint32_t)(llvm::MachO::S_REGULAR)); 543 EXPECT_EQ((uint32_t)(sect1.attributes), 546 EXPECT_EQ((uint16_t)sect1.alignment, 4U); 547 EXPECT_EQ((uint64_t)sect1.address, 0x0ULL); 548 EXPECT_EQ(sect1.content.size(), 32UL); 549 EXPECT_EQ((int)(sect1.content[0]), 0x80); 550 EXPECT_EQ((int)(sect1.content[1]), 0x40); 551 EXPECT_EQ(sect1.relocations.size(), 3UL); 552 const Relocation& reloc1 = sect1.relocations[0]; 560 const Relocation& reloc2 = sect1.relocations[1]; 568 const Relocation& reloc3 = sect1.relocations[2];