Searched refs:sorted_args (Results 1 – 4 of 4) sorted by relevance
126 std::map<base::StringPiece, Value> sorted_args; in ListArgs() local133 sorted_args.insert(*i); in ListArgs()143 sorted_args.insert(*found_arg); in ListArgs()148 for (std::map<base::StringPiece, Value>::iterator i = sorted_args.begin(); in ListArgs()149 i != sorted_args.end(); ++i) { in ListArgs()159 for (std::map<base::StringPiece, Value>::iterator i = sorted_args.begin(); in ListArgs()160 i != sorted_args.end(); ++i) { in ListArgs()
478 sorted_args = self.args[:]479 sorted_args.sort(self.SortArgs())482 " ".join([arg.GetUsageString() for arg in sorted_args]), width,488 sorted_args = self.args[:]489 sorted_args.sort(self.SortArgs())491 return "\n".join([arg.GetHelpString(width) for arg in sorted_args])
293 int *sorted_args; in tcg_context_init() local309 sorted_args = g_malloc(sizeof(int) * total_args); in tcg_context_init()314 def->sorted_args = sorted_args; in tcg_context_init()316 sorted_args += n; in tcg_context_init()1276 def->sorted_args[start + i] = start + i; in sort_constraints()1281 p1 = get_constraint_priority(def, def->sorted_args[start + i]); in sort_constraints()1282 p2 = get_constraint_priority(def, def->sorted_args[start + j]); in sort_constraints()1284 tmp = def->sorted_args[start + i]; in sort_constraints()1285 def->sorted_args[start + i] = def->sorted_args[start + j]; in sort_constraints()1286 def->sorted_args[start + j] = tmp; in sort_constraints()[all …]
643 int *sorted_args; member