Home | History | Annotate | Download | only in xdgmime

Lines Matching full:child

58   XdgGlobHashNode *child;
161 if (glob_hash_node->child)
162 _xdg_glob_hash_node_dump (glob_hash_node->child, depth + 1);
237 XdgGlobHashNode *child;
240 child = node->child;
241 while (child && child->character == 0)
243 if (strcmp (child->mime_type, mime_type) == 0)
248 child = child->next;
253 child = _xdg_glob_hash_node_new ();
254 child->character = 0;
255 child->mime_type = strdup (mime_type);
256 child->weight = weight;
257 child->child = NULL;
258 child->next = node->child;
259 node->child = child;
271 node->child = _xdg_glob_hash_insert_ucs4 (node->child, text, mime_type, weight);
326 n = _xdg_glob_hash_node_lookup_file_name (node->child,
341 node = node->child;
448 if (node->child)
449 _xdg_glob_hash_free_nodes (node->child);