Searched refs:sort_key (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/tools/auto_index/src/ |
D | auto_index.hpp | 50 std::string sort_key; // upper case version of term used for sorting. member 57 …index_entry(const std::string& k) : key(k), sort_key(k), preferred(false) { boost::to_upper(sort_… in index_entry() 58 …:string& k, const std::string& i) : key(k), sort_key(k), id(i), preferred(false) { boost::to_uppe… in index_entry() 59 …g& i, const std::string& c) : key(k), sort_key(k), id(i), category(c), preferred(false) { boost::… in index_entry() 65 … return ((a->sort_key != b->sort_key) ? (a->sort_key < b->sort_key) : (a->category < b->category)); in operator <()
|
/third_party/toybox/toys/posix/ |
D | sort.c | 76 struct sort_key struct 78 struct sort_key *next_key; // linked list argument 85 static char *get_key_data(char *str, struct sort_key *key, int flags) in get_key_data() argument 163 static struct sort_key *add_key(void) in add_key() 166 struct sort_key **pkey = (struct sort_key **)stupid_compiler; in add_key() 169 return *pkey = xzalloc(sizeof(struct sort_key)); in add_key() 249 struct sort_key *key; in compare_keys() 251 for (key=(struct sort_key *)TT.key_list; !retval && key; key = key->next_key){ in compare_keys() 321 struct sort_key *key = add_key(); in sort_main()
|
/third_party/glib/gio/ |
D | gio-tool-mount.c | 618 const gchar *sort_key; in list_mounts() local 691 sort_key = g_mount_get_sort_key (mount); in list_mounts() 692 if (sort_key != NULL) in list_mounts() 693 g_print ("%*ssort_key=%s\n", indent + 2, "", sort_key); in list_mounts() 719 const gchar *sort_key; in list_volumes() local 793 sort_key = g_volume_get_sort_key (volume); in list_volumes() 794 if (sort_key != NULL) in list_volumes() 795 g_print ("%*ssort_key=%s\n", indent + 2, "", sort_key); in list_volumes() 821 const gchar *sort_key; in list_drives() local 890 sort_key = g_drive_get_sort_key (drive); in list_drives() [all …]
|
/third_party/mbedtls/scripts/ |
D | assemble_changelog.py | 386 def sort_key(self): member in EntryFileSortKey 394 return self.sort_key() == other.sort_key() 397 return self.sort_key() < other.sort_key()
|
/third_party/python/Tools/scripts/ |
D | stable_abi.py | 219 def sort_key(item): function 225 key=sort_key): 233 key=sort_key):
|