Lines Matching refs:split
358 Str.split(Components, "-");
490 return StringRef(Data).split('-').first; // Isolate first component
494 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
495 return Tmp.split('-').first; // Isolate second component
499 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
500 Tmp = Tmp.split('-').second; // Strip second component
501 return Tmp.split('-').first; // Isolate third component
505 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
506 Tmp = Tmp.split('-').second; // Strip second component
507 return Tmp.split('-').second; // Strip third component
511 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
512 return Tmp.split('-').second; // Strip second component