Home | History | Annotate | Download | only in MC

Lines Matching refs:Comma

186   // Find the first comma.
187 std::pair<StringRef, StringRef> Comma = Spec.split(',');
189 // If there is no comma, we fail.
190 if (Comma.second.empty())
192 "separated by a comma";
195 Segment = Comma.first;
204 Comma = Comma.second.split(',');
207 Section = Comma.first;
215 // If there is no comma after the section, we're done.
218 if (Comma.second.empty())
222 Comma = Comma.second.split(',');
225 StringRef SectionType = Comma.first;
243 // If we have no comma after the section type, there are no attributes.
244 if (Comma.second.empty()) {
254 Comma = Comma.second.split(',');
255 StringRef Attrs = Comma.first;
281 if (Comma.second.empty()) {
295 StringRef StubSizeStr = Comma.second;