Symbol: create_tree
src/system/libroot/posix/glibc/regex/regcomp.c
116
static bin_tree_t *create_tree (re_dfa_t *dfa,
src/system/libroot/posix/glibc/regex/regcomp.c
1374
op = create_tree (dfa, NULL, NULL, OP_OPEN_SUBEXP);
src/system/libroot/posix/glibc/regex/regcomp.c
1375
cls = create_tree (dfa, NULL, NULL, OP_CLOSE_SUBEXP);
src/system/libroot/posix/glibc/regex/regcomp.c
1376
tree1 = body ? create_tree (dfa, body, cls, CONCAT) : cls;
src/system/libroot/posix/glibc/regex/regcomp.c
1377
tree = create_tree (dfa, op, tree1, CONCAT);
src/system/libroot/posix/glibc/regex/regcomp.c
2144
eor = create_tree (dfa, NULL, NULL, END_OF_RE);
src/system/libroot/posix/glibc/regex/regcomp.c
2146
root = create_tree (dfa, tree, eor, CONCAT);
src/system/libroot/posix/glibc/regex/regcomp.c
2196
tree = create_tree (dfa, tree, branch, OP_ALT);
src/system/libroot/posix/glibc/regex/regcomp.c
2237
bin_tree_t *newtree = create_tree (dfa, tree, expr, CONCAT);
src/system/libroot/posix/glibc/regex/regcomp.c
2284
tree = create_tree (dfa, tree, mbc_remain, CONCAT);
src/system/libroot/posix/glibc/regex/regcomp.c
2390
tree = create_tree (dfa, tree_first, tree_last, OP_ALT);
src/system/libroot/posix/glibc/regex/regcomp.c
2525
tree = create_tree (dfa, tree, NULL, SUBEXP);
src/system/libroot/posix/glibc/regex/regcomp.c
2625
tree = create_tree (dfa, tree, elem, CONCAT);
src/system/libroot/posix/glibc/regex/regcomp.c
2648
tree = create_tree (dfa, elem, NULL,
src/system/libroot/posix/glibc/regex/regcomp.c
2660
tree = create_tree (dfa, tree, elem, CONCAT);
src/system/libroot/posix/glibc/regex/regcomp.c
2664
tree = create_tree (dfa, tree, NULL, OP_ALT);
src/system/libroot/posix/glibc/regex/regcomp.c
2670
tree = create_tree (dfa, old_tree, tree, CONCAT);
src/system/libroot/posix/glibc/regex/regcomp.c
3363
work_tree = create_tree (dfa, work_tree, mbc_tree, OP_ALT);
src/system/libroot/posix/glibc/regex/regcomp.c
3739
tree = create_tree (dfa, tree, mbc_tree, OP_ALT);