Lines Matching refs:Segment
72 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section,
77 assert(Segment.size() <= 16 && Section.size() <= 16 &&
78 "Segment or section string too long");
80 if (i < Segment.size())
81 SegmentName[i] = Segment[i];
172 StringRef &Segment, // Out.
185 Segment = GetEmptyOrTrim(0);
191 // Verify that the segment is present and not too long.
192 if (Segment.empty() || Segment.size() > 16)
193 return "mach-o section specifier requires a segment whose length is "
198 return "mach-o section specifier requires a segment and section "