Lines Matching full:comma
187 // Find the first comma.
188 std::pair<StringRef, StringRef> Comma = Spec.split(',');
190 // If there is no comma, we fail.
191 if (Comma.second.empty())
193 "separated by a comma";
196 Segment = Comma.first;
205 Comma = Comma.second.split(',');
208 Section = Comma.first;
216 // If there is no comma after the section, we're done.
219 if (Comma.second.empty())
223 Comma = Comma.second.split(',');
226 StringRef SectionType = Comma.first;
244 // If we have no comma after the section type, there are no attributes.
245 if (Comma.second.empty()) {
255 Comma = Comma.second.split(',');
256 StringRef Attrs = Comma.first;
282 if (Comma.second.empty()) {
296 StringRef StubSizeStr = Comma.second;