Home
last modified time | relevance | path

Searched refs:sorted_args (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/tools/gn/
Dcommand_args.cc126 std::map<base::StringPiece, Value> sorted_args; in ListArgs() local
133 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()
/external/chromium_org/tools/site_compare/
Dcommand_line.py478 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])
/external/qemu/tcg/
Dtcg.c293 int *sorted_args; in tcg_context_init() local
309 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 …]
Dtcg.h643 int *sorted_args; member