Lines Matching refs:type
139 Idx subexp_idx, int type);
143 int type);
150 Idx ex_subexp, int type);
154 int type);
157 Idx subexp_num, int type);
1177 re_token_type_t type = dfa->nodes[node].type; in check_halt_node_context() local
1179 if (type != END_OF_RE) in check_halt_node_context()
1218 if (IS_EPSILON_NODE (dfa->nodes[node].type)) in proceed_next_node()
1262 re_token_type_t type = dfa->nodes[node].type; in proceed_next_node() local
1269 if (type == OP_BACK_REF) in proceed_next_node()
1492 int type = dfa->nodes[cur_node].type; in update_regs() local
1493 if (type == OP_OPEN_SUBEXP) in update_regs()
1504 else if (type == OP_CLOSE_SUBEXP) in update_regs()
1635 DEBUG_ASSERT (!IS_EPSILON_NODE (dfa->nodes[prev_node].type)); in build_sifted_states()
1814 if (IS_EPSILON_NODE (dfa->nodes[cur_node].type)) in sub_epsilon_src_nodes()
1896 switch (dfa->nodes[node].type) in check_dst_limits_calc_pos_1()
2018 re_token_type_t type = dfa->nodes[node].type; in check_subexp_limits() local
2019 if (type == OP_OPEN_SUBEXP in check_subexp_limits()
2022 else if (type == OP_CLOSE_SUBEXP in check_subexp_limits()
2062 re_token_type_t type = dfa->nodes[node].type; in check_subexp_limits() local
2063 if (type == OP_CLOSE_SUBEXP || type == OP_OPEN_SUBEXP) in check_subexp_limits()
2099 re_token_type_t type; in sift_states_bkref() local
2102 type = dfa->nodes[node].type; in sift_states_bkref()
2106 if (type != OP_BACK_REF) in sift_states_bkref()
2392 if (dfa->nodes[node].type == OP_OPEN_SUBEXP in check_subexp_matching_top()
2534 if (node->type != OP_BACK_REF) in transit_state_bkref()
2812 Idx subexp_idx, int type) in find_subexp_node() argument
2819 if (node->type == type in find_subexp_node()
2835 Idx top_str, Idx last_node, Idx last_str, int type) in check_arrival() argument
2882 err = check_arrival_expand_ecl (dfa, &next_nodes, subexp_num, type); in check_arrival()
2906 subexp_num, type); in check_arrival()
2949 err = check_arrival_expand_ecl (dfa, &next_nodes, subexp_num, type); in check_arrival()
2956 subexp_num, type); in check_arrival()
3014 DEBUG_ASSERT (!IS_EPSILON_NODE (dfa->nodes[cur_node].type)); in check_arrival_add_next_nodes()
3078 Idx ex_subexp, int type) in check_arrival_expand_ecl() argument
3094 outside_node = find_subexp_node (dfa, eclosure, ex_subexp, type); in check_arrival_expand_ecl()
3109 ex_subexp, type); in check_arrival_expand_ecl()
3129 Idx target, Idx ex_subexp, int type) in check_arrival_expand_ecl_sub() argument
3136 if (dfa->nodes[cur_node].type == type in check_arrival_expand_ecl_sub()
3139 if (type == OP_CLOSE_SUBEXP) in check_arrival_expand_ecl_sub()
3157 ex_subexp, type); in check_arrival_expand_ecl_sub()
3174 Idx cur_str, Idx subexp_num, int type) in expand_bkref_cache() argument
3207 err2 = check_arrival_expand_ecl (dfa, &new_dests, subexp_num, type); in expand_bkref_cache()
3466 re_token_type_t type = node->type; in group_nodes_into_DFAstates() local
3470 if (type == CHARACTER) in group_nodes_into_DFAstates()
3472 else if (type == SIMPLE_BRACKET) in group_nodes_into_DFAstates()
3476 else if (type == OP_PERIOD) in group_nodes_into_DFAstates()
3490 else if (type == OP_UTF8_PERIOD) in group_nodes_into_DFAstates()
3527 if (type == CHARACTER && !node->word_char) in group_nodes_into_DFAstates()
3546 if (type == CHARACTER && node->word_char) in group_nodes_into_DFAstates()
3574 if (type == CHARACTER && !bitset_contain (dests_ch[j], node->opr.c)) in group_nodes_into_DFAstates()
3654 if (__glibc_unlikely (node->type == OP_UTF8_PERIOD)) in check_node_accept_bytes()
3706 if (node->type == OP_PERIOD) in check_node_accept_bytes()
3725 if (node->type == COMPLEX_BRACKET) in check_node_accept_bytes()
3941 switch (node->type) in check_node_accept()