Home | History | Annotate | Download | only in MC

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];
180 StringRef &Segment, // Out.
191 return "mach-o section specifier requires a segment and section "
194 // Capture segment, remove leading and trailing whitespace.
195 Segment = Comma.first;
196 StripSpaces(Segment);
198 // Verify that the segment is present and not too long.
199 if (Segment.empty() || Segment.size() > 16)
200 return "mach-o section specifier requires a segment whose length is "