Home
last modified time | relevance | path

Searched refs:sorted_items (Results 1 – 2 of 2) sorted by relevance

/external/elfutils/src/
Dreadelf.c8772 const Ebl_Core_Item *sorted_items[nitems]; in handle_core_items() local
8774 sorted_items[i] = &items[i]; in handle_core_items()
8775 qsort (sorted_items, nitems, sizeof sorted_items[0], &compare_core_items); in handle_core_items()
8779 groups[0] = &sorted_items[0]; in handle_core_items()
8782 if (sorted_items[i]->group != sorted_items[i - 1]->group in handle_core_items()
8783 && strcmp (sorted_items[i]->group, sorted_items[i - 1]->group)) in handle_core_items()
8784 groups[ngroups++] = &sorted_items[i]; in handle_core_items()
8794 (item < &sorted_items[nitems] in handle_core_items()
/external/python/cpython2/Lib/test/
Dtest_argparse.py74 sorted_items = sorted(self.__dict__.items())
75 kwarg_str = ', '.join(['%s=%r' % tup for tup in sorted_items])