Lines Matching refs:Segment
75 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section,
78 assert(Segment.size() <= 16 && Section.size() <= 16 &&
79 "Segment or section string too long");
81 if (i < Segment.size())
82 SegmentName[i] = Segment[i];
181 StringRef &Segment, // Out.
192 return "mach-o section specifier requires a segment and section "
195 // Capture segment, remove leading and trailing whitespace.
196 Segment = Comma.first;
197 StripSpaces(Segment);
199 // Verify that the segment is present and not too long.
200 if (Segment.empty() || Segment.size() > 16)
201 return "mach-o section specifier requires a segment whose length is "