Lines Matching full:order
42 * system hieratchy in post-order, pre-order and level-order ways.
54 * post-order, pre-order and level-order.
96 * POST-ORDER:
97 * Post-order means that the directory is processed after all
98 * its children are processed. Post-order traversing of the above
121 * In post-order the callback function returns 0 on success
124 * One of the applications of post-order traversing of a
128 * PRE-ORDER:
129 * Pre-order means that the directory is processed before
130 * any of its children are processed. Pre-order traversing of
153 * In pre-order, the callback function can return 3 values:
166 * LEVEL-ORDER:
167 * This is a special case of pre-order. In this method,
169 * and then come the directory entries. Level-order traversing
192 * The rules of pre-order for the return value of callback
193 * function applies for level-order.
203 * level-order and pre-order traversing.
205 * In level-order processing, this return value stops