Searched refs:G_TRAVERSE_NON_LEAFS (Results 1 – 4 of 4) sorted by relevance
/third_party/glib/glib/ |
D | gnode.c | 531 if ((flags & G_TRAVERSE_NON_LEAFS) && in g_node_traverse_pre_order() 564 if ((flags & G_TRAVERSE_NON_LEAFS) && in g_node_depth_traverse_pre_order() 611 if ((flags & G_TRAVERSE_NON_LEAFS) && in g_node_traverse_post_order() 649 if ((flags & G_TRAVERSE_NON_LEAFS) && in g_node_depth_traverse_post_order() 679 if ((flags & G_TRAVERSE_NON_LEAFS) && in g_node_traverse_in_order() 720 if ((flags & G_TRAVERSE_NON_LEAFS) && in g_node_depth_traverse_in_order() 732 else if ((flags & G_TRAVERSE_NON_LEAFS) && in g_node_depth_traverse_in_order() 756 return (flags & G_TRAVERSE_NON_LEAFS) && func (node, data); in g_node_traverse_level() 974 if (flags & G_TRAVERSE_NON_LEAFS) in g_node_count_func() 1114 if (flags & G_TRAVERSE_NON_LEAFS) in g_node_find_child() [all …]
|
D | gnode.h | 46 G_TRAVERSE_NON_LEAFS = G_TRAVERSE_NON_LEAVES enumerator
|
/third_party/glib/glib/tests/ |
D | node.c | 97 { G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, -1, -1, "ABFG" }, in traversal_test() 293 g_assert_cmpint (g_node_n_nodes (root, G_TRAVERSE_NON_LEAFS), ==, 4); in construct_test() 300 g_assert (g_node_find (root, G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, C2P ('I')) == NULL); in construct_test()
|
/third_party/glib/tests/ |
D | testglib.c | 291 g_assert (g_node_n_nodes (root, G_TRAVERSE_NON_LEAFS) == 4); in gnode_test() 296 g_assert (g_node_find (root, G_LEVEL_ORDER, G_TRAVERSE_NON_LEAFS, C2P ('I')) == NULL); in gnode_test() 337 g_node_traverse (root, G_PRE_ORDER, G_TRAVERSE_NON_LEAFS, -1, node_build_string, &tstring); in gnode_test()
|