HomeSort by relevance Sort by last modified time
    Searched refs:node_B (Results 1 - 2 of 2) sorted by null

  /external/bluetooth/glib/tests/
node-test.c 90 GNode *node_B;
103 node_B = g_node_new (C2P ('B'));
104 g_node_append (root, node_B);
105 TEST (NULL, root->children == node_B);
107 g_node_append_data (node_B, C2P ('E'));
108 g_node_prepend_data (node_B, C2P ('C'));
110 g_node_insert (node_B, 1, node_D);
136 for (i = 0; i < g_node_n_children (node_B); i++)
138 node = g_node_nth_child (node_B, i);
178 g_node_reverse_children (node_B);
    [all...]
testglib.c 261 GNode *node_B;
271 node_B = g_node_new (C2P ('B'));
272 g_node_append (root, node_B);
273 g_assert (root->children == node_B);
275 g_node_append_data (node_B, C2P ('E'));
276 g_node_prepend_data (node_B, C2P ('C'));
277 g_node_insert (node_B, 1, g_node_new (C2P ('D')));
303 for (i = 0; i < g_node_n_children (node_B); i++)
305 node = g_node_nth_child (node_B, i);
345 g_node_reverse_children (node_B);
    [all...]

Completed in 229 milliseconds