Lines Matching refs:sort
59 vector<string> sort;
75 popt::option(sort, "sort", 's',
76 "sort by", "sample,image,app-name,symbol,debug,vma"),
77 popt::option(options::reverse_sort, "reverse-sort", 'r',
78 "use reverse sort"),
117 if (options::xml && !sort.empty()) {
118 cerr << "warning: sort options ignored because they "
122 sort.clear();
125 if (sort.empty() || options::xml) {
126 // PP:5.14 sort default to sample
128 // implicitly sort by app-name,image so that in the
131 sort.push_back("app-name");
132 sort.push_back("image");
134 sort.push_back("sample");
137 vector<string>::const_iterator cit = sort.begin();
138 vector<string>::const_iterator end = sort.end();
226 cerr << "--sort=vma is "