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