Home | History | Annotate | Download | only in libpp

Lines Matching full:parts

3  * Split a sample filename into its constituent parts
34 parts_type parts = separate_token(event_spec, '.');
36 if (parts.size() != nr_parts) {
41 if (parts[i].empty()) {
49 result.event = parts[i++];
50 result.count = parts[i++];
51 result.unitmask = parts[i++];
52 result.tgid = parts[i++];
53 result.tid = parts[i++];
54 result.cpu = parts[i++];
94 vector<string> parts = separate_token(str, '.');
95 if (parts.size() != 3)
99 ret += parts[0] + " range:" + parts[1] + "-" + parts[2] + ")";